viva questions for data structures with c++
Data Structures with C++ Viva Questions 1) What is data, data type and data object? 2) Define data structure 3) Define ADT 4) Explain in brief types of data structures 5) Define algorithm. Characteristics of algorithm 6) Define pseudocode and flowchart 7) What is time complexity and space complexity? 8) Deffine 1-D, 2-D and n-D array 9) List out the advantages and disadvantages of arrays 10) Define stack and explain in brief each of its operation 11) Stack ADT 12) Creating a stack int Stack[100]; int top = −1; 13) Syn...