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.
I believe that the answer to that question would be a jpg image. is that correct?
C, air.
The gasoline and air are mixed together in precise portions and then this mixture combusts in the engine.
Answer:
In C++ we can assign a character to the variable by using the below statement.
ch='X';
Explanation:
The complete program for assigning a character to the variable is given as
#include<iostream>
#include <conio.h>
using namespace std;
main()
{
char ch;
ch= 'X';
cout<<"output of variable Ch ="<<ch;
getch();
}
In above program Char is the data type used for character type variables. ch= 'X' stores X in ch. Then output will shown through cout.
Answer:
Is there more to the question? But I have had this question already and the answer is B)