Questions

Q:

Forests occupy about _____of India's total surface?

A) 19 per cent B) 26 per cent
C) 28 per cent D) 30 percent
 
Answer & Explanation Answer: A) 19 per cent

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

5 4458
Q:

First Indian woman, to win The silver medal in Rio Olympics 2016 ?

A) Sakshi Malik B) P V Sindhu
C) Dipa Karmakar D) Saina Nehwal
 
Answer & Explanation Answer: B) P V Sindhu

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

6 4454
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 4453
Q:

The only Communist Government of Europe which had kept itself free from the influence of Soviet Union is ______

A) Czechoslovakia B) Greece
C) Romania D) Yugoslavia
 
Answer & Explanation Answer: D) Yugoslavia

Explanation:

The Communist Government of Yugoslavia had kept itself free from the Soviet Union almost from the beginning . Yugoslavia was one of the founders of the Non-Aligned Movement. It was a fedaration of 6 republics. In four of these republics, the rule of the communist parties came to an end in 1990. By 1992,Yugoslavia broke up into five independent states-the new states of yugoslavia comprising Serbia and Montenegro, Croatia, Macedonia, Slovenia and Bosnia-Herzegovina.

Report Error

View Answer Report Error Discuss

Filed Under: World History

7 4453
Q:

How many Teaspoons in a Tablespoon?

A) 4 B) 5
C) 2 D) 3
 
Answer & Explanation Answer: D) 3

Explanation:

Tablespoon > Teaspoon

In US & UK, 1 Tablespoon = 3 Teaspoons.

Report Error

View Answer Report Error Discuss

7 4452
Q:

The outer membrane that covers the lungs

A) Dura mater B) pleura
C) Pia mater D) Myelin sheath
 
Answer & Explanation Answer: B) pleura

Explanation:

The pleura is the membrane that covers the lungs, according to InnerBody. The pleura consists of two layers, with the parietal pleura forming the membrane's outer layer and the visceral pleura forming the membrane's inner layer.

 

Report Error

View Answer Report Error Discuss

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

5 4452
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 4451
Q:

Lobar Pneumonia refers to a lung infection in which it affects

A) large part of the lobe or lung B) small segment of the lung
C) both lungs D) None of the above
 
Answer & Explanation Answer: A) large part of the lobe or lung

Explanation:

Pneumonia is a lung infection which is usually caused by a bacteria or virus or fungi in one segment or the whole lung or both lungs. Lobar Pneumonia refers to a lung infection in which it affects the large segment of the lung or lobe.

Lobar_Pneumonia_refers_to_a_lung_infection_in_which_it_affects1552046755.png image

Report Error

View Answer Report Error Discuss

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

1 4450