Searching for "World"

Q:

Which is the Largest lake of the world ?

Answer

Caspian Sea (371,000 sq km)

Report Error

View answer Workspace Report Error Discuss

Q:

The uranium fuel used worldwide is mainly in the form of 

A) U3O8 B) UO2
C) UF6 D) U metal
 
Answer & Explanation Answer: B) UO2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

Q:

During World War II, when did Germany attack France?

A) 1940 B) 1941
C) 1942 D) 1943
 
Answer & Explanation Answer: A) 1940

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

Germany signed the Armistice Treaty on ____ and World War I ended

A) January 19, 1918 B) May 30, 1918
C) November 11, 1918 D) February 15, 1918
 
Answer & Explanation Answer: C) November 11, 1918

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

The world famous Ajanta caves are situated in

A) Orissa B) Karnataka
C) Maharashtra D) Madhya Pradesh
 
Answer & Explanation Answer: C) Maharashtra

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

Q:

Which day is observed as World Food Day?

A) September 10 B) August 16
C) November 4 D) October 16
 
Answer & Explanation Answer: D) October 16

Explanation:
Report Error

View Answer Report Error Discuss

Q:

What is the correct JavaScript syntax to write “Hello World”?

A) System.out.println( B) println (
C) document.write( D) response.write(
 
Answer & Explanation Answer: C) document.write(

Explanation:

document.write() is a JavaScript command that literally writes out whatever you place between the opening and closing parentheses.

 

 

What_is_the_correct_JavaScript_syntax_to_write_“Hello_World”1556279922.jpg image 

Report Error

View Answer Report Error Discuss

Filed Under: Web Technology

Q:

What will be output of following c code?

void main()
{
struct india
{
char c;
float d;
};
struct world
{
int a[3];
char b;
struct india orissa;
};
struct world st ={{1,2,3},'P','q',1.4};
clrscr();
printf("%dt%ct%ct%f",st.a[1],st.b,st.orissa.c,st.orissa.d);
getch();
}

Answer

Output: 2 p q 1.400000

Report Error

View answer Workspace Report Error Discuss

Subject: Programming