InterviewSolution
Saved Bookmarks
| 1. |
Reduce the following big-O natations:O [ n! + n^50 ] =(a) O [ n! + n^50 ](b) O [ n! ].(c) O [ n^50].(d) None of the MentionedThis question was posed to me in unit test.My enquiry is from Symmetric Cipher Models and Elementary Number Theory topic in section Classical Encryption Techniques of Cryptograph & Network Security |
|
Answer» CORRECT OPTION is (B) O [ N! ]. EXPLANATION: O [ n! + n^50 ] = O [ n! ]. |
|