Questions

Q:

What is at the end of a rainbow?

Answer

The logical answer for a puzzle is that the letter 'W'.


 


A rainbow is a spectrum of light that appears in the sky when sunlight is refracted through raindrops or other drops of moisture in the Earth's atmosphere. They have inspired much popular folklore, including the belief that a leprechaun can be found with a pot of gold at the end of a rainbow.

Report Error

View answer Workspace Report Error Discuss

3 4236
Q:

The NADPH required for the calvin cycle comes from

A) Reactions initiated in photosystem 1 B) Citric acid cycle
C) Reactions initiated in photosystem 2 D) Glycolysis
 
Answer & Explanation Answer: C) Reactions initiated in photosystem 2

Explanation:

ATP and NADPH produced by the light reactions are used in the Calvin cycle to reduce carbon dioxide to sugar. The Calvin cycle is similar to the Krebs cycle in that the starting material is regenerated by the end of the cycle.

Report Error

View Answer Report Error Discuss

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

5 4236
Q:

Which Bank has become the first bank in India to launch DigiPOS, a Point of Sale (POS) machine ?

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

Explanation:
Report Error

View Answer Report Error Discuss

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

4 4232
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 4232
Q:

I have four fingers and a thumb, but not alive.

Who am I?

Answer

A glove. It has 5 fingers as we have but not alive.

Report Error

View answer Workspace Report Error Discuss

Subject: Logic Puzzles Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

2 4231
Q:

The command center of fluid intake is located in the

A) Hypothalamus B) Adrenal glands
C) Kidneys D) None of the above
 
Answer & Explanation Answer: A) Hypothalamus

Explanation:

The command center of fluid intake is located in the Hypothalamus.

Report Error

View Answer Report Error Discuss

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

3 4231
Q:

What is CPC  ?

A) Central Person scheme B) Central Pay commission
C) Central Paid determination D) Central Pay scheme
 
Answer & Explanation Answer: B) Central Pay commission

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

6 4228
Q:

A cavern is an underground chamber formed by

A) Erosion B) Runoff
C) Deposition D) Evaporation
 
Answer & Explanation Answer: A) Erosion

Explanation:

Caverns are openings in the ground. Some famous caverns in the United States are Mammoth Cave, Carlsbad Caverns, Wind Cave, and Luray Caverns.

 

When rainwater trickles down through the soil, it carries carbon dioxide from the air with it. This turns acidic as it moves through the soil, joining with carbon from decaying plants. This acidic rainwater then eats away at, or erodes, the rock under the ground, forming a cave or cavern. For this process to occur, the rock must be the right type; limestone, dolomite, and gypsum are common.

Report Error

View Answer Report Error Discuss

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

3 4228