Answer:
int k;
double d;
char s[10];
cin >> k >> d >> s;
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s;
Explanation
First Step (declare K, d, s) so they can store a integer
int k;
double d;
char s[10];
Second Step (read in an integer, a real number and a small word)
cin >> k >> d >> s;
Third Step ( print them out )
cout << s << " " << d << " " << k << "\n" << k << " " << d << " " << s;
Answer:
First-line i.e, "They go below the main program in the source code file" is the correct answer.
Explanation:
A method is a set of instruction, that can be used in a program whenever we need, it can be divided into two parts user define and built-in. In user define method three-point are very important, that are method definition, declaration, and calling.
-
These types of methods should be declared and defined above the main method, and it calls inside the method.
-
It also known as a mini-program because it is used to perform a specific task.
-
Both users define and built-in is a collection of the commands.
Answer:
First one would be work ethic.
Second one would be communication.
Third one would be adaptability.
Fourth one would be creativity.
(These are all guesses tho, so i'm not 100% sure !!)
Explanation: