Sunday, September 24, 2023

Data structure imp notes

         Data structure notes. (Click on read more)










Drive link 🖇️.    Click

Website notes.       Click

Data structure questions 

  1. What do you understand by data structure and 
  2. Explain the types of data structure with its characteristics.
  3. What do you mean by array? Explain types of array.
  4. Write a program and algorithm for searching.
  5.  What do you understand by sorting. Explain the types of sorting to
  6. Define circular link fint and doubly link list Use appropriate example
  7. Describe Abstract data types in detail
  8. Write about Time Complexity and Big 'O'Notation.
  9. Define an array. Explain different types of arrays with example.
  10. What is linked List? Explain different types of linked lists in data structures
  11. Explain selection sort technique withexample.
  12. What is Searching? Explain Binary search algorithm with example.
  13. Define Data Structure. Explain different types of Data Structures
  14. Define Array. Explain declaration and accessing array elements
  15. Explain linear search.
  16. Define Data Structure. Explain the difference between Data Type and Data
  17. Explain Abstract data types with example.
  18. Define Array. Explain two dimensional array with example
  19. Define Linked list. Explain the basic linked list operations
  20. Describe insertion sort with a proper algorithm. What is the complexity of insertion sort in the worst case?
  21. What do you mean by linked list? Write a function to insert and delete a node in linked list

Frequently Asked Questions


Q1

What is an array answer?

An array is a data structure, which can store a fixed-size collection of elements of the same data type.

Q2

Types of arrays?

There are two types of array:

  • Two-dimensional array.
  • Multi-dimensional array
Q3

How to represent two-dimensional arrays?

Syntax: DataType ArrayName[row_size][column_size

For Example int arr[5][5];

No comments:

Post a Comment