Questions

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

Proteins differ from one another because

A) The peptide bonds linking amino acids differ from protein to protein B) Each protein contains its own unique sequence of sugar molecules
C) The number of nucleotides found in each protein varies from molecule to molecule D) The sequence of amino acids in the polypeptide chain differs from protein to protein
 
Answer & Explanation Answer: D) The sequence of amino acids in the polypeptide chain differs from protein to protein

Explanation:
Report Error

View Answer Report Error Discuss

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

0 4140
Q:

The Kinetic energy of gas molecules

A) is unaffected by temperature variations B) decreases with increase of temperature
C) increases with decrease of temperature D) increases with increase of temperature
 
Answer & Explanation Answer: D) increases with increase of temperature

Explanation:

Kinetic Energy K.E = 12mV2  or 

K.E V2, Where 'm' is the mass and 'v' is the velocity of molecules.

 

Velocity is proportional to temperature. Hence, KE is proportional to temperature and would increase with temperature.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE

18 4140
Q:

A boy sitting in a train moving with a uniform velocity drops a coin outside. A man standing outside the train will find the trajectory of the coin to be

A) a parabola B) a circle
C) a horizontal straight line D) a vertical straight line
 
Answer & Explanation Answer: A) a parabola

Explanation:

Parabola, because when the coin is dropped at a particular point, it has the same velocity as the running train. So by Newton's first law, it continues its motion horizontally with that velocity. But then, it is also pulled down by earth's gravity continuously. In this situation its horizontal motion gives way to the parabolic motion until it reaches the ground.

Report Error

View Answer Report Error Discuss

Filed Under: Physics

2 4139
Q:

Nobel Prize is established in  ?

A) 1931 B) 1911
C) 1901 D) 1951
 
Answer & Explanation Answer: C) 1901

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: CAT , Bank Exams

8 4138
Q:

Which is smallest state by area of India ?

Answer

Goa

Report Error

View answer Workspace Report Error Discuss

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

Subject matters experts (SMEs) are resources that are imperative to the succes of a project. Many times, project managers are not experts in the areas they are managing and frequently must rely upon other's expertise. In which scope - management process are SMEs first used?

A) Scope planning B) Scope definition
C) Initiation D) Scope verification
 
Answer & Explanation Answer: C) Initiation

Explanation:

Initiation is the first step in the scope management process, and expert judgment is one of the techniques routinely utilized. Answers A, B, and D are incorrect because they would come after the initiation process.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

0 4137