ADVANCED TOPICS IN COMPILER DESIGN
CODE GENERATION FOR OBJECT ORIENTED LANGUAGES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
The length of the key used to encrypt the data is 1024 bits.
|
|
The sequence of random numbers generated will repeat every 1024 numbers.
|
|
The sequence of random numbers generated by all instances of the application will be the same because pseudorandom number generators are deterministic ____
|
|
Increasing the seed value of 1024 to 2048 would make the application’s data significantly more resistant to hacking.
|
Detailed explanation-1: -The main application of pseudorandom number generator (PRNGs) is for posterior inference, including prediction and posterior predictive checks. They can also be used for pure data simulation, which is like a posterior predictive check with no conditioning.
Detailed explanation-2: -Cipher algorithms and cryptographic hashes can be used as very high-quality pseudorandom number generators.
Detailed explanation-3: -Pseudorandom numbers are generated by deterministic algorithms. They are “random” in the sense that, on average, they pass statistical tests regarding their distribution and correlation. They differ from true random numbers in that they are generated by an algorithm, rather than a truly random process.
Detailed explanation-4: -Explanation: Pseudo random number generators cannot be used for data encryption as the random numbers generated by them are predictable. For data encryption the numbers should be absolutely unpredictable.