Questions

Q:

In what organelle does cellular respiration take place?

A) Cytoplasm B) Ribosomes
C) Mitochondria D) None of the above
 
Answer & Explanation Answer: C) Mitochondria

Explanation:

Cellular respiration is the multi-step process that creates energy from nutrients and food molecules. It begins in the cytoplasm of the cell, with the mitochondria functioning as the main organelle where the rest of the process continues and finishes.

During respiration, glycolysis occurs in the cytoplasm of the cell.

Report Error

View Answer Report Error Discuss

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

3 2583
Q:

The Daily Weather Map of India is prepared and printed at___________

A) Kolkata B) Mumbai
C) New Delhi D) Pune
 
Answer & Explanation Answer: D) Pune

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2582
Q:

In January 2018, ‘Electoral Bonds’ Scheme was launched. Under this scheme, the electoral bonds will be available at specified branches of _____.

 

 

A) Bank of Baroda B) State Bank of India
C) Punjab National Bank D) Bank of India
 
Answer & Explanation Answer: B) State Bank of India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

2 2582
Q:

In India, some of the Fundamental Rights can be suspended during of

A) Festivals B) Elections
C) Wars D) Floods
 
Answer & Explanation Answer: C) Wars

Explanation:

During any emergency of wars, some of the Fundamental Rights can be suspended that is what mentioned in constitution of India.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

7 2582
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2582
Q:

What is the SI unit of heat energy?

A) Joule B) Newton
C) Calorie D) Kelvin
 
Answer & Explanation Answer: A) Joule

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

4 2581
Q:

What form of Shiva is most prominent in the Brihadeshvara Temple built by the Chola dynasty?

A) Harihara B) Bhairava
C) .Rudra D) Tripurantaka
 
Answer & Explanation Answer: D) Tripurantaka

Explanation:

The most prominent form of Shiva in Brihadeshvara Temple built by Chola dynasty is Tripuntaka. Tripurantaka is a manifestation of the Hindu god Shiva. In this aspect, Shiva is depicted with four arms wielding a bow and arrow. Shiva as Tripurantaka is accredited with destroying three mythical cities of the Asuras. It is believed that the Rudraksha came from lord Shiva’s eyes, when he destroyed Tripura.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2581
Q:

Name the two main types of Fermentation?

Answer

Fermentation is the chemical breakdown of a substance by bacteria, yeasts, or other microorganisms, typically involving effervescence and the giving off of heat.


 


The two most common types of fermentation are


(1) alcoholic fermentation (and) 


(2) lactic acid fermentation.


 


(1) Alcoholic fermentation : the type of fermentation in which ethyl alcohol is the main end product .This is very common in yeast (unicellular fungus) and also seen in some bacteria. Yeast cells release enzymes called zymase complex which bring about the fermentation. The reactions are similar to anaerobic respiration.


 


(2) Lactic acid fermentation : The type of fermentation in which lactic acid is the end product.


It is carried out by some bacteria (e.g. lactic acid bacteria), and also by animals (muscle glycolysis in animals, under oxygen deficiency, results in the formation of lactic acid this is whay we experience in muscle cramps, or "Charley horse").

Report Error

View answer Workspace Report Error Discuss

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

2 2581