<span>The answer is : Increasing the key length of DES would protect it against brute force attacks. </span>Brute force is when the attacker tries every key knowing that one will eventually work. <span>Key length increase proportionally increases the key space, having a keyspace l</span>arge enough that it takes too much time and money to accomplish a brute force attack.
Negativ numbers no matter how big, will always be less than zero. The correct Answer is A) 45,15,0,-11,-37
Answer:
#include <iostream>
using namespace std;
int main()
{
int i = 45;
for ( i = 45; i <=165; i = i + 6)
cout << i << endl;
}
Explanation:
I corrected your code and highlighted the mistakes. Even though you wrote the correct algorithm, your code did not compile because of the typos you made.
Remember, C++ is a case-sensitive language. That means, "For" is not same as "for".
Generally, variables and keywords are written in lower case. Of course, there are exceptions, such as constant variables are all written in uppercase letter and class names start with an uppercase letter.