Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
int main()
{
float marks;
cout<<"Enter your grade value :";
cin>>marks;
if(marks>=90)
cout<<"Your grade is 'A'";
else if(marks>=80&& marks<90)
cout<<"Your grade is 'B'";
else if(marks>=70&& marks <=80)
cout<<"Your grade is 'C'";
else if(marks>=60&& marks <70)
cout<<"Your grade is 'D'";
else
cout<<"Your grade is 'F'";
}
Answer:
The AES decryption time is 8 minutes
Explanation:
GIVEN THAT:
The 1 GByte is equal to 230 bytes and equal to 233 bits
The RSA decryption time is calculated as = 233 / (100*230 )
= 83886. 06 seconds
= 23 hours
The RSA decryption time is 23 hours
The AES decryption time is calculated as = 233 / (17 * 230 )
= 481.81 seconds
= 8 minutes .
The AES decryption time is 8 minutes
In the game of $Mindmaster$, secret codes are created by placing pegs of any of seven different colors into four slots. Colors may be repeated, and no slot may remain empty. 2401 secret codes are possible.
<u>Explanation:</u>
Mastermind is a board game that was developed by Mordecai Meirowitz, in 1971. The Code maker sets a secret code, then the Codebreaker attempts to meet the code using logic, deduction. Behind each move, the Code maker provides hints to the Codebreaker. Make the code even more indirect by using multiple pegs of the same color or by leaving one or more peg holes empty. With so many feasible code sequences, every game is confirmed to be a brain teaser.
7 colors with 4 slots and repetition of color are accepted so 7^4 is 2401.