21. Vigenere cipher is harder to crack than autokey cipher.
22. How many spanning trees does a complete bipartite graph contain?
23. What is the time complexity of matrix multiplied recursively by Strassen's Method?
24. For which symbol there is no standard representation in Morse Code?
25. What will be the output of the following code?
int cnt=0;
void my_recursive_function(int n)
{
if(n == 0)
return;
cnt++;
my_recursive_function(n/10);
}
int main()
{
my_recursive_function(123456789);
printf("%d",cnt);
return 0;
}
int cnt=0;
void my_recursive_function(int n)
{
if(n == 0)
return;
cnt++;
my_recursive_function(n/10);
}
int main()
{
my_recursive_function(123456789);
printf("%d",cnt);
return 0;
}
26. What is the domination number for 8-queen's problem?
27. Manhattan distance is an alternative way to define a distance between two points.
28. Consider the following iterative code snippet to find the largest element:
int get_max_element(int *arr,int n)
{
int i, max_element = arr[0];
for(i = 1; i < n; i++)
if(________)
max_element = arr[i];
return max_element;
}
Which of the following lines should be inserted to complete the above code?
int get_max_element(int *arr,int n)
{
int i, max_element = arr[0];
for(i = 1; i < n; i++)
if(________)
max_element = arr[i];
return max_element;
}
Which of the following lines should be inserted to complete the above code?29. Which type of exception is raised by computer hardware when a code tries to access a block of memory that is not stored in physical memory?
30. . . . . . . . . is a matching with the largest number of edges.
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 5
- 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