51. Which ordered board is the highest enumerated board till now?
52. Who along with Samuel Morse developed Morse code?
53. Which of the following is true about encryption in gronsfeld cipher?
54. Quickselect is an example of . . . . . . . .
55. Karger's algorithm always gives a minimum cut for a connected graph.
56. Polybius square is also known by the name of?
57. What is a chromatic index?
58. What will be the output of the following code?
#include <iostream>
#include <string>
using namespace std;
void func1(string input,string output)
{
if(input.length()==0)
{
cout<<output<<",";
return;
}
for(int i=0;i<=output.length();i++)
func1(input.substr(1),output.substr(0,i) + input[0] + output.substr(i));
}
int main()
{
char str[] = "AB";
func1(str, "");
return 0;
}
#include <iostream>
#include <string>
using namespace std;
void func1(string input,string output)
{
if(input.length()==0)
{
cout<<output<<",";
return;
}
for(int i=0;i<=output.length();i++)
func1(input.substr(1),output.substr(0,i) + input[0] + output.substr(i));
}
int main()
{
char str[] = "AB";
func1(str, "");
return 0;
}
59. An Extended hamming code is also called as . . . . . . . .
60. What will be the ciphered text if the string "HELLO" is given as input to the code of hill cipher with keyword as "DATASTRUCTURE"?
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 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