In the following question, out of the four alternatives, select the word similar in meaning to the word given.
Connoisseur
View Answer Report Error Discuss
In the following question, the sentence given with blank to be filled with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.
Ignoring someone in pain is an ______ act
In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.
A strong blast of wind.
Through specialization and international trade, a nation
The frictional force exerted by fluids is also called ________.
Which country has launched the longest bullet train line covering a distance of 2252 kilometers in January, 2017?
What would be the output of the following program, if the array beigns at address 65486?
main()
{
int arr[] = {12,14,15,23,45};
printf ("%u %u", arr, &arr);
}
65486 65486
View answer Workspace Report Error Discuss
Which error are you likely to get when you run the following program?
struct emp
char name[20];
float sal;
};
struct emp e[10];
int i;
for ( i = 0 ; i <= 9; i++)
scanf ( "%s %f" , e[i].name, &e[i].sal );
Floating point formats not linked