Questions

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:

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

Is Nitrogen an Inert gas?

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Nitrogen is found as a diatomic molecule (N2) in nature. There is a triple bond between the two nitrogen atoms.


 


The triple bond is pretty strong. Therefore, it needs a lot of energy to break those bonds and participate in a reaction. So nitrogen is commonly referred to as and used as an inert gas (high abundance & low cost.) However, it’s not truly inert like most noble gases. Nitrogen does react if the conditions are met. But those conditions are not exactly mild, but are not as extreme as for noble gases.


 


It forms nitric oxide and nitrogen dioxide with oxygen, ammonia with hydrogen, and nitrogen sulfide with sulfur.

Report Error

View Answer Workspace Report Error Discuss

Subject: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

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

Which Bank has topped the list of the country’s top 50 brands, according to WPP’s BrandZ Top 50 report 2017 ?

A) ICICI Bank B) SBI Bank
C) Kotak Mahindra Bank D) HDFC Bank
 
Answer & Explanation Answer: D) HDFC Bank

Explanation:

HDFC Bank retains No. 1 rank in BrandZ India Top 50 for third year running BRANDZ TOP 50 REPORT. The BrandZ Top 50 Most Valuable Indian Brands ranking shows locally grown Indian brands increased 32% in value over three years. Airtel came in at No. 2 followed by State Bank of India at No. 3. The highest ranked new entrant on the list is Reliance Jio, at No.11.

The BrandZ Top 50 Most Valuable Indian Brands report showed that the total value of India’s top brands has risen by 30% over the last three years. The top 50 brands are now worth $90.5 billion.

Report Error

View Answer Report Error Discuss

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

8 4138
Q:

How do you detect a sequence of "1101" arriving serially from a signal line?

Answer

A SIPO and AND gate circuit can detect this sequence.The output of SIPO is connected to a four input AND gate ,the third SIPO output should be connected through a NOT gate.When the 1101 sequence is loaded in to the SIPO the AND output goes HIGH otherwise keeps LOW.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 4137
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 4137