Questions

Q:

Where does the chemical reactions called Mellaird reaction takes place?

Answer

In cooking

Report Error

View answer Workspace Report Error Discuss

Subject: General Science

14 3893
Q:

Buddha means

A) the enlightened one B) the religious preacher
C) the genius D) the powerful
 
Answer & Explanation Answer: A) the enlightened one

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 3892
Q:

Moti Masjid in Red fort was constructed by

A) Humayun B) Aurangzeb
C) Akbar D) Jahangir
 
Answer & Explanation Answer: B) Aurangzeb

Explanation:

Moti Masjid was built by the Mughal emperor Aurangzeb from 1659-1660. The Moti Masjid is a white marble mosque inside the Red Fort complex in Delhi, India.

Report Error

View Answer Report Error Discuss

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

10 3891
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 3890
Q:

Which of the statements given below are correct?

A) Netherlands won the 2017 Women's Cricket World Cup.

B) Australia won the 2016–17 Men's FIH Hockey World League Final.

C) Fan Zhendong won the Tennis 2017 US Open Men's Singles.

 

A) Only B B) Only C
C) Both B and C D) A, B and C
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 3888
Q:

SI unit of Luminious intensity is

A) Lumen B) Lux
C) Candela D) Watt
 
Answer & Explanation Answer: C) Candela

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics

4 3887
Q:

The Supreme Court has reconstituted the special Investigation Team(SIT) to expedite probe into Black Money Cases and directed the government to issue the necessary notification. Who of the following is the chairman of this team?

A) Arijit Pasayat B) M.B.Shah
C) R.M.Lodha D) Vinod Rai
 
Answer & Explanation Answer: B) M.B.Shah

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 3886
Q:

What group sets hunting regulations in most states?

A) Forest management agency B) Head hunting firms agency
C) Hunting outfitters agency D) A wildlife management agency
 
Answer & Explanation Answer: D) A wildlife management agency

Explanation:

A wildlife management agency sets hunting regulations in most states.

 

hunting_regulations1531455978.jpg image

 

These agencies will have regular meetings where the public can voice their concerns and make suggestions. Hunters wishing to propose changes to the regulations should participate in these meetings or join a hunting organization that interacts with the agency.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

3 3883