Answer:
#include //Line 1
namespace aaa //Line 2
{ const int X = 0; //Line 3
double y; //Line 4
}
using namespace std; //Line 5
int main() //Line 6
{ y = 34.50; //Line 7
cout << "X = " << X << ", y = " << y << endl; //Line 8
return 0; //Line 9
}
In Line 1, No header file is present,so it will print output as cout and endl is not defined.
we should include <iostream> header file in line 1
Lines 7 and 8 are incorrect.
X and y variables in aaa namespace are stated. So we can't use it any other namespace(std), but here y is initialized to 34.50 and x is printed in other namespace rather than stated.
True, and there are many other web browsers
Answer:
electronic agent
Explanation:
Agents in computing are autonomous systems that initiate actions without human intervention.
Answer:
e) in any circumstance.
Explanation:
It is used in exception handling in Java.Finally clause is used to execute important code such as closing stream ,closing connection to the file etc.
Finally clause is always executed no matter what for every exception handling case.
for ex:-
try{
// some code
}
finally
{
//This code will always be execute.
}
Answer:
D. select the object and drag a row or column divider on the active object.
Explanation:
Worksheets, rows, columns, and excel workbooks are collectively termed as Excel objects. All the rows are collectively termed as rows object and all the columns are collectively termed as columns object. In order to change the number of rows or columns, the row or column is selected and dragged. The selected row or column can be changed as required.