Questions

Q:

What has a mouth but never smiles?

Answer

A bottle has a mouth from which we used to drink water or any juice. But it cannot smile.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

13 4142
Q:

The pair of spinal nerves in main are

A) 30 B) 31
C) 32 D) 33
 
Answer & Explanation Answer: B) 31

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

12 4140
Q:

Which is smallest state by area of India ?

Answer

Goa

Report Error

View answer Workspace Report Error Discuss

18 4139
Q:

Solids have definite shapes.This is because

A) the forces of cohesion of the molecules within are very much less in them B) the forces of cohesion are very large
C) the forces of adhesion are large D) the forces of adhesion are less
 
Answer & Explanation Answer: B) the forces of cohesion are very large

Explanation:

Cohesion refers to attraction between molecules of the same kind while adhesion refers to attraction between different kinds of molecules

Report Error

View Answer Report Error Discuss

Filed Under: Physics

3 4139
Q:

Who will be the chief guest of the opening ceremony of United Nation Vesak Day celebration to be held at Colombo, Sri Lanka between 12 May and 14 May ?

A) Bidhya Devi Bhandari B) Sheikh Hasina
C) Wijeyadasa Rajapakshe D) Narendra Modi
 
Answer & Explanation Answer: D) Narendra Modi

Explanation:

For the first time in Sri Lanka, the United Nation Vesak Day celebration will be held in Colombo and Kandy from May 12 to 14. Indian Prime Minister Narendra Modi will be the chief guest of the opening ceremony which will be held at BMICH in Colombo while Nepali President Bidhya Devi Bhandari will attend for the closing ceremony which is scheduled to be held at the Sri Dalada Maligawa premises in Kandy.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 4139
Q:

Both food and air travel through the

A) pharynx B) trachea
C) larynx D) alveolus
 
Answer & Explanation Answer: A) pharynx

Explanation:

The pharynx is a passageway shared by both food and air.

 

Both_food_and_air_travel_through_the1562568925.png image

Report Error

View Answer Report Error Discuss

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

5 4138
Q:

How would you use qsort() function to sort an array of structures?

Answer

#include "string.h"


#include "stdlib.h"


struct stud


{


       int rollno;


       int marks;


       char name[30];


};


int sort_m (struct stud *, struct stud *);


int sort_name (struct stud *, struct stud *);


int sort_marks (struct stud *, struct stud *);


 


main()


{


static struct stud ss[] = {


                                            { 15, 96, "Akshay" },


                                            { 2, 97, "Madhuri" },


                                            { 8, 85, "Aishvarya" },


                                            { 10, 80, "Sushmita" }


                                   };


int x,w;


clrscr();


w = sizeof (struct stud);


 


printf ('\nIn order of roll numbers:");


qsort (ss, 4, w, sort_rn);


for(x=0; x<4;x++)


     printf ("\n%d%s%d", ss[x].rollno, ss[x].name,ss[x].marks);


 


printf("\n\nIn order of names:");


qsort(ss, 4, sort_name);


 


for (x=0; x<4;x++)


      printf("\n%d%s%d",ss[x].rollno, ss[x].name,ss[x].marks);


printf("\n\nIn order of marks:");


qsort(ss,4,w,sort_marks);


 


for (x=0;x<4;x++)


      printf ("\n%d%s%d",ss[x].rollno,ss[x].name,ss[x].marks);


}


int sort_rn (struct stud *t1, struct stud *t2)


{


     return (t1->rollno-t2->rollno);


}


 


int sort_name (struct stud *t1, struct stud *t2)


{


     return (strcmp(t1->name,t2->name));


}


int sort_marks (struct stud *t1, struct stud *t2)


{


     return (t2->marks-t1->marks);


}


 


 


 

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4138
Q:

"World Television Day" is observed every year on ___.

A) Nov 21 B) Oct 22
C) Sep 23 D) Aug 24
 
Answer & Explanation Answer: A) Nov 21

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

8 4138