Questions

Q:

Sudden decrease of birth rate would cause___________.

A) increase in per capita income B) increase in investment
C) increase in savings D) increase in loan requests
 
Answer & Explanation Answer: A) increase in per capita income

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

1 2400
Q:

SEBI is evaluating whether ICO (Initial Coin Offerings) can be brought under its purview. ICO is related to ______.

 

A) Dollars B) Pounds
C) Rupees D) Cyptocurrency
 
Answer & Explanation Answer: D) Cyptocurrency

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

4 2400
Q:

The word length of a computer is measured in

A) centimeters B) millimeters
C) bytes D) bits
 
Answer & Explanation Answer: D) bits

Explanation:
Report Error

View Answer Report Error Discuss

3 2400
Q:

Plant cells perform photosynthesis, which occurs in the

A) Nucleus B) Mitochondria
C) Cytoplasm D) Chloroplasts
 
Answer & Explanation Answer: D) Chloroplasts

Explanation:

Photosynthesis takes place inside plant cells in small things called chloroplasts.

Chloroplasts contain a green substance called chlorophyll and this absorbs the light energy needed to make photosynthesis happen.

Report Error

View Answer Report Error Discuss

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

2 2399
Q:

An important function of fat in the body is to

A) Protect vital organs B) Stores energy
C) Insulate us D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2398
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 2397
Q:

What is the difference between microprocessor and micro-controller?

Answer

In microprocessor more op-codes, few bit handling instrucitons. But in Microcontroller. fewer op-codes, more bit handling Instruction, and also it is defined as a device that includes micro processor, memory, & input / output signal lines on a single chip.


the basic architectual difference is that microcontroller has an programmable memory while it is not the case with mivroprocessors.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2396
Q:

What literary period is the beat generation aligned with?

A) Postmodernism B) Naturalism
C) Modernism D) Realism
 
Answer & Explanation Answer: A) Postmodernism

Explanation:

Postmodernism is the literary period, the beat generation aligned with. Postmodernism refers to mid to late 20th century.

Report Error

View Answer Report Error Discuss

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

7 2396