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

Which of the following is not a computer programming language?

A) NULL B) BASIC
C) PYTHON D) JAVA
 
Answer & Explanation Answer: A) NULL

Explanation:

A computer programming language is nothing but a language which is understand by the computer.

Examples of programming languages are Basic, C, Java, Python, ...

Report Error

View Answer Report Error Discuss

1 2407
Q:

Electric charges that are different attract each other.

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

Explanation:

Same charges will repel each other and the charges that are different will attract each other.


Electric_charges_that_are_different_attract_each_other._1545283189.png image

Report Error

View Answer Workspace Report Error Discuss

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

1 2406
Q:

Farsightedness is more properly called

A) Myopia B) Retinal detachment
C) Hyperopia D) Diabetes mellitus
 
Answer & Explanation Answer: C) Hyperopia

Explanation:

Farsightedness is more properly called Hyperopia.

Report Error

View Answer Report Error Discuss

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

0 2406
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

Run out of steam

A) Lose impetus or enthusiasm.   B) To keep going even after losing all energy.
C) Have no more funds to proceed any further D) Build interest as you go along
 
Answer & Explanation Answer: A) Lose impetus or enthusiasm.  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2405
Q:

Which occurs during transcription?

A) Proteins are produced B) Ribosomes produces
C) DNA information is copied to RNA D) All of the above
 
Answer & Explanation Answer: C) DNA information is copied to RNA

Explanation:

Transcription is the process of copying the genetic material or information that is the DNA to messenger RNA (mRNA.

 

transcription_translation1531736868.jpg image

Report Error

View Answer Report Error Discuss

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

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

The Bantu were experts in this form of metallurgy

A) Copper B) Gold
C) Iron D) Steel
 
Answer & Explanation Answer: C) Iron

Explanation:

The Bantu were comprised of more than 500 ethnic groups of Africa for migrations. The Bantu were experts in the form of iron metallurgy. 

Report Error

View Answer Report Error Discuss

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

5 2404