Questions

Q:

Who gave the slogan 'Back to the Vedas (Vedo ki aur lauto)'?

A) Guru Nanank Dev Ji B) Dayanand Saraswati
C) Swami Vivekananda D) Raja Ram Mohan Roy
 
Answer & Explanation Answer: B) Dayanand Saraswati

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 3938
Q:

Rank these compounds by boiling point- Pentane, Propane and Hexane.

A) Pentane > Propane > Hexane B) Propane > Pentane > Hexane
C) Hexane > Pentane > Propane D) Propane > Hexane > Pentane
 
Answer & Explanation Answer: C) Hexane > Pentane > Propane

Explanation:

The boiling point of the compounds depend on the number of carbons in them. Hexane has 6, Pentane has 5 and Propane has 3 carbons. As Hexane is with 6 carbons it has highest boiling point and next Pentane with 5 and lowest Propane with 3. 

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 3937
Q:

Whose trademark is the operating system unix?

A) Ashton Tate B) Microsoft
C) INTEL D) BELL Laboratories
 
Answer & Explanation Answer: D) BELL Laboratories

Explanation:

BELL Laboratories trademark is the operating system unix.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 3935
Q:

 A distributed database is which of the following?

A) A single logical database that is spread to multiple locations and is interconnected by a network B) A loose collection of file that is spread to multiple locations and is interconnected by a network
C) A single logical database that is limited to one location. D) A loose collection of file that is limited to one location.
 
Answer & Explanation Answer: A) A single logical database that is spread to multiple locations and is interconnected by a network

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

1 3934
Q:

Which of the following is not true about listening?

A) It involves conscious psychological action. B) Attention and meaning given to sounds turns hearing in to listening.
C) It is a passive, constant process. D) It is an active and selective process.
 
Answer & Explanation Answer: C) It is a passive, constant process.

Explanation:
Report Error

View Answer Report Error Discuss

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

2 3934
Q:

Which of the following is not a monosaccharide? 

A) Fructose B) Glucose
C) Galactose D) Sucrose
 
Answer & Explanation Answer: D) Sucrose

Explanation:

Sucrose is not a monosaccharide.

 

Monosaccharides are simple carbohydrates molecules that cannot be broken down into smaller molecules of other carbohydrates.

 

Glucose, galactose and fructose are examples of Monosaccharides.

Report Error

View Answer Report Error Discuss

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

1 3933
Q:

Bhatnagar Prize is given in the field of

A) Peace B) Music and dance
C) Science and Technology D) Fine arts
 
Answer & Explanation Answer: C) Science and Technology

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

2 3933
Q:

How would you check whether the contents of two structure variables are same or not?

Answer

struct emp


{


     char n[20];


      int age;


};


main()


{


    struct emp e1 = {"Dravid", 23};


   struct emp e2;


   scanf ("%s %d",e2.n, & e2.age);


   if( structcmp (e1,e2) ==0)


        printf ("The structures are equal");


   else


         printf ("The structures are unequal");


}


structcmp ( struct emp x, struct emp y)


{


     if (strcmp (x.n,y.n) ==0)


           if (x.age == y.age)


            return (0);


            return (1);


}


In short, if you nee to compare two structures, you'll have to write your own function to do so which carries out the comparison field by field.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3932