Miscellaneous On Data Structures - Study Mode

[#921] In which data structure would you implement a Suffix Array?
Correct Answer

(A) Array

[#922] What data structure is best suited for implementing a frequency counter for a large dataset?
Correct Answer

(D) Hash Map

[#923] Trifid cipher encrypts the plain text by using bifid cipher twice.
Correct Answer

(B) false

[#924] What will be the plain text corresponding to cipher text "BPKYFS" if playfair cipher is used with keyword as "SECRET" (assuming j is combined with i)?
Correct Answer

(C) DOLLAR

[#925] What is the time complexity of the program to reverse stack when linked list is used for its implementation?
Correct Answer

(A) O(n)