61. Running key cipher is an example of . . . . . . . .
62. All the graphs have a dominating set of vertices.
63. What will be the ciphered text corresponding to "EXAMPLE" if gronsfeld cipher is used for encryption with key as "1234"?
64. The result of the fractional knapsack is greater than or equal to 0/1 knapsack.
65. Which of the following is the time complexity of finding nth Catalan numbers using binomial coefficient?
66. What will be the plain text corresponding to ciphered text "|_ _| >" if pigpen cipher is used for encryption?
67. What is the time complexity of the following iterative method used to find the sum of the first n natural numbers?
#include<stdio.h>
int get_sum(int n)
{
int sm, i;
for(i = 1; i <= n; i++)
sm += i;
return sm;
}
int main()
{
int n = 10;
int ans = get_sum(n);
printf("%d",ans);
return 0;
}
#include<stdio.h>
int get_sum(int n)
{
int sm, i;
for(i = 1; i <= n; i++)
sm += i;
return sm;
}
int main()
{
int n = 10;
int ans = get_sum(n);
printf("%d",ans);
return 0;
}
68. How many colours are used in a bipartite graph?
69. Which among the following best represents the time complexity to find articulate points in a graph?
70. LCM is also called as . . . . . . . .
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 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
- Miscellaneous on Data Structures - Section 12