Questions

Q:

What is the major monosaccharide found in the body?

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

Explanation:

Glucose is the major monosaccharide found in the body. It is absorbed directly into the bloodstream duringdigestion and a vital carbohydrate as it is a source of energy.

 

Report Error

View Answer Report Error Discuss

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

4 4456
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:

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 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:

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 4450
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 4449
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 4447
Q:

Clay is an example of

A) Aquiclude B) Glossy
C) Utilitarian D) None of the above
 
Answer & Explanation Answer: A) Aquiclude

Explanation:

Clay is an example of Aquiclude.

Report Error

View Answer Report Error Discuss

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

0 4447