Answer:Discloses actual/potential dangers
Help create an environment supporting ethical conduct
Explanation: The clauses that are presented by the Code of Ethics for software engineering which are upheld by a whistle blower are termed as 1.03, 1.04 and 6.08.These describe about the below mentioned terms:-
- 1.03-it gives permission to software by receiving assurance that it meets the requirement, protected , good qualities and other such testable factors.
- 1.04- Disclosing to the correct and reliable person regarding any potential danger towards the user.
- 6.08- reporting errors and malicious activities, detecting it ,correcting those errors etc so that software conduct can work smoothly.
Answer:
Option(d) is the correct answer to the given question .
Explanation:
There are various type of algorithm is used for the purpose of the key scheduling such as AES .in the AES algorithm we used same key for encryption and decryption of text .The main objective of the AES algorithm it is used by Various round of the similar plain text encryption to reinforce the cipher text.
- The Option (a) is wrong because In the key scheduling the creating keys are not being used one after just another in the various communication cycles.
- The Option (b) is wrong because In the key scheduling we do not used the the random key for the encryption process .
- The Option (c) is wrong because we will never arbitrarily subdivided into groups of public and private key.
The central processing unit (CPU), also called a processor, is located inside the computer case on the motherboard. Hope it helps (:
<u> C++ Program to Print Pascal's Triangle</u>
#include<iostream>
//header file
using namespace std;
//driver function
int main()
{
int r;/*declaring r for Number of rows*/
cout << "Enter the number of rows : ";
cin >> r;
cout << endl;
for (int a = 0; a < r; a++)
{
int value = 1;
for (int b = 1; b < (r - a); b++)
/*Printing the indentation space*/
{
cout << " ";
}
for (int c = 0; c <= a; c++)
/*Finding value of binomial coefficient*/
{
cout << " " << value;
value = value * (a - c) / (c + 1);
}
cout << endl << endl;
}
cout << endl;
return 0;
}
<u>Output</u>
<u>Enter the number of rows : 5</u>
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1