Questions

Q:

One of the following sites from where the famous Bullseal of Indus Valley Civilization was found

A) Harappa B) Chanhudaro
C) Lothal D) Mohenjodaro
 
Answer & Explanation Answer: A) Harappa

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 6741
Q:

Light year is a unit of

A) time B) speed of light
C) distance D) mass
 
Answer & Explanation Answer: C) distance

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

10 6738
Q:

The word Tirthankara is related to which religion?

 

A) Buddhism B) Christianity
C) Jainism D) Hinduism
 
Answer & Explanation Answer: C) Jainism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Culture
Exam Prep: Bank Exams

7 6738
Q:

Water is a compound because it?

A) it contains two different elements joined by chemical bond B) it contains hydrogen & oxygen
C) it exists as solid, liquid or gas D) it cannot be split up into simpler substances by chemicals means
 
Answer & Explanation Answer: A) it contains two different elements joined by chemical bond

Explanation:

We know that All compounds are molecules, but not all molecules are compounds.

Water is a molecule because it is made from atoms that have been chemically combined. It is also a compound because the atoms that make water are not all the same - some are oxygen and some are hydrogen.

 

Hence, Water is a molecule and a compound.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

7 6737
Q:

I am the first on Earth, the second in Heaven. I appear two times in a week you can only see me once in a year. Although I am in the middle of the sea, l am not found in month, but l am in February, June, September, October, November & December.

Who am I?

Answer

The letter 'E'.


As of the above given data,


It is in the 1st place in Earth, 2nd in Heaven and in the middle of the Sea.


It appears once in a Year and twice in a Week.


It is present in February, June, September, October, November & December.


But not in the Month.


 


Hence, it is the letter 'E'.

Report Error

View answer Workspace Report Error Discuss

18 6737
Q:

Kurukshetra , the sence of the epic battle between Kauravas and pandavas, is situated in 

A) Gujarat B) Punjab
C) Uttar Pradesh D) Haryana
 
Answer & Explanation Answer: D) Haryana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

97 6732
Q:

What do the functions atoi(), itoa() and gcvt () do? Show how would you use them in a program.

Answer

atoi()         Converts a string to an integer.


itoa()         Convert an integer to a string


gcvt()        Converts a floating-point number to a string


 


#include "stdlib.h"


main()


{


      char s[] = "12345";


      char buffer [15], string[20];


      int i;


      


      i = atoi (s);


      printf("\n%d",i);


 


       gcvt (20.141672, 4, buffer);


       printf ("\n%s", buffer);


 


       itoa(15, string,2);


        printf ("\n%s", string);


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6725
Q:

What does RSI stand for?

Answer

 


Repetitive Strain Injury

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

17 6724