Questions

Q:

The limbic system structure that regulates hunger is called the

A) Hypothalamus B) Cerebellum
C) Pituitary gland D) Cerebrum
 
Answer & Explanation Answer: A) Hypothalamus

Explanation:

the_limbic_system_structure_that_regulates_hunger_is_called_the1545974338.png image

 

The hypothalamus which is near the pituitary gland is a small region located at the base of the brain. The hypothalamus plays a crucial role in many important functions including releasing hormones, regulating body temperature, regulates hunger etc...

Report Error

View Answer Report Error Discuss

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

3 2892
Q:

Muscles get tired when there is shortfall of ___________.

A) Lactic acid B) Na+ ions
C) ATP D) Sulphates
 
Answer & Explanation Answer: C) ATP

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

4 2892
Q:

Iveco, Part of the Fiat group, holds 15 per cent stake in an Indian automobile company. The  company in the question is 

A) AShok Leyland B) Hindustan Motors
C) Tata Motors D) Eitcher
 
Answer & Explanation Answer: A) AShok Leyland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

7 2892
Q:

Who of the following is not a recepient of 2011 Nobel Peace prize

A) Hu Jintao B) Leymah Gbowee
C) Ellen Johnson Sirleaf D) Tawakkol Karman
 
Answer & Explanation Answer: A) Hu Jintao

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

0 2892
Q:

In 1921,during which one of the following tours, Gandhiji shaved his head and began wearing loincloth in order to identity with the poor?

A) Ahmadabad B) Champaran
C) Chauri Chaura D) South India
 
Answer & Explanation Answer: D) South India

Explanation:

On 22nd September 1921, Gandhi made a momentous decision to change his attire. From the elaborate Gujarati attire, he decided on a simple dhoti and shawl. This epoch-making decision was taken by Gandhiji in Madurai after he decided that he has to work for and with the with the poor people of India and how can he identify with them if he wears different clothes from them.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

6 2891
Q:

In the below puzzle, a word starts and ends with the same letter. Can you figure out what the word is?

_otato_

Answer

rotator

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

18 2891
Q:

Monitoring and Controlling Process Group

What are the Project Management Processes included in Monitoring and Controlling Process Group?

Answer


    • Monitor and Control Project Work

    • Integrated Change Control

    • Scope Verification

    • Scope Control

    • Schedule Control

    • Cost Control

    • Perform Quality Control

    • Manage Project Team

    • Performance Reporting

    • Manage Stakeholders

    • Risk Monitoring and Control

    • Contract Administration


Report Error

View answer Workspace Report Error Discuss

0 2890
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,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=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2890