The Solar System was discoverd by
View Answer Report Error Discuss
Who invented Radar ?
Robert Watson Watt
View answer Workspace Report Error Discuss
What is an Oracle index?
An index is an optional structure associated with a table to have direct access to rows, which can be created to increase the performance of data retrieval. Index can be created on one or more columns of a table.
In India, population density is defined as the number of persons
Which one of the following is the highest gravity dam
The Dowry Prohibition (Amendment) Act came into force from __________
The Dowry Prohibition (Amendment) Act came into force from october2, 1985. This made the original Act more stringent and effective.
'Asian Drama ', by Gunnar Karl Myrdal, is a book on which of the following subjects
Point out the error, if any, in the while loop.
main()
{
int i = 1;
while ()
printf ( "%d", i++);
if (i >10)
break ;
}
The condition in the while loop is a must.