11. What will be the chromatic number of the following graph?

12. What will be the maximum number of rounds required to reach all nodes in the flooding algorithm?
13. Which structure can be modelled by using Bipartite graph?
14. Which of the following is called the "ultimate planar convex hull algorithm"?
15. What is the definition of graph according to graph theory?
16. Gronsfeld cipher is an example of . . . . . . . .
17. Who publish the bitwise operation method to solve the eight queen puzzle?
18. What is the output of the following code?
#include<stdio.h>
int sum_of_digits(int n)
{
int sm = 0;
while(n != 0)
{
sm += n%10;
n /= 10;
}
return sm;
}
int main()
{
int n = 1234;
int ans = sum_of_digits(n);
printf("%d",ans);
return 0;
}
#include<stdio.h>
int sum_of_digits(int n)
{
int sm = 0;
while(n != 0)
{
sm += n%10;
n /= 10;
}
return sm;
}
int main()
{
int n = 1234;
int ans = sum_of_digits(n);
printf("%d",ans);
return 0;
}
19. The most common hamming codes are a generalized version of?
20. Topological sort can be applied to which of the following graphs?
Read More Section(Miscellaneous on Data Structures)
Each Section contains maximum 100 MCQs question on Miscellaneous on Data Structures. To get more questions visit other sections.
- Miscellaneous on Data Structures - Section 1
- Miscellaneous on Data Structures - Section 2
- Miscellaneous on Data Structures - Section 3
- Miscellaneous on Data Structures - Section 4
- Miscellaneous on Data Structures - Section 6
- Miscellaneous on Data Structures - Section 7
- Miscellaneous on Data Structures - Section 8
- Miscellaneous on Data Structures - Section 9
- Miscellaneous on Data Structures - Section 10
- Miscellaneous on Data Structures - Section 11
- Miscellaneous on Data Structures - Section 12