Questions

Q:

Dr. Babasaheb Ambedkar International Airport is located in which place?

A) Chennai B) Mumbai
C) New Delhi D) Nagpur
 
Answer & Explanation Answer: D) Nagpur

Explanation:

Dr. Babasaheb Ambedkar International Airport is located in Nagpur of Maharashtra state in India.

Report Error

View Answer Report Error Discuss

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

2 2334
Q:

Which of the following cells produce antibodies?

A) Plasma cells B) Monocytes
C) Mast cells D) Neutrophils
 
Answer & Explanation Answer: A) Plasma cells

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2334
Q:

The continents of Africa and Europe, at their closest point are seperated from each other by the strait of 

A) Messina B) Bonifacio
C) Gibraltar D) Otranto
 
Answer & Explanation Answer: C) Gibraltar

Explanation:

Strait of Messina seperates Italy and Sicily , while Strait of Bonifacio is located between Corsica  and Sardinia and Strait of Otranto  is found between Italy and Albania.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 2334
Q:

Write a c program to print multiplication table

Answer

 #include<stdio.h>
int main(){
  int r,i,j,k;
  printf("Enter the number range: ");
  scanf("%d",&r);
  for(i=1;i<=r;i++){
      for(j=1;j<=10;j++)
           printf("%d*%d=%d ",i,j,i*j);
      printf("\n");
  }
  return 0;
}

Sample Output:
Enter the number range: 5

1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9 1*10=10
2*1=2 2*2=4 2*3=6 2*4=8 2*5=10 2*6=12 2*7=14 2*8=16 2*9=18 2*10=20
3*1=3 3*2=6 3*3=9 3*4=12 3*5=15 3*6=18 3*7=21 3*8=24 3*9=27 3*10=30
4*1=4 4*2=8 4*3=12 4*4=16 4*5=20 4*6=24 4*7=28 4*8=32 4*9=36 4*10=40
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 5*6=30 5*7=35 5*8=40 5*9=45 5*10=50

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2334
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

We acted on a __________ impulse.

A) momentary B) momentous
C) memorable D) meritorious
 
Answer & Explanation Answer: A) momentary

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2334
Q:

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

saved by the bell

A) when time is in your favour B) saved at the last moment
C) the bell rings at the most opportune time D) prayers are answered when the church bell rings
 
Answer & Explanation Answer: B) saved at the last moment

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

0 2334
Q:

Bacteria divide by

A) Binary Fusion B) Cytokinesis
C) Binary Fission D) Both B & C
 
Answer & Explanation Answer: C) Binary Fission

Explanation:

Most bacteria divide by binary fission, a form of cell division in which DNA replication and segregation occur simultaneously. This process involves active partitioning of the single bacterial chromosome and positioning of the site of septation.

 

Bacteria reproduce by binary fission. In this process the bacterium, which is a single cell, divides into two identical daughter cells.

 

Binary fission begins when the DNA of the bacterium divides into two replicates. The bacterial cell then elongates and splits into two daughter cells each with identical DNA to the parent cell. Each daughter cell is a clone of the parent cell.

Report Error

View Answer Report Error Discuss

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

2 2333
Q:

Give a circuit to divide frequency of clock cycle by two?

Answer

You can divide the frequency of a clock by just implementing T Flip flop.


Give clock as clock input and tie the T input to logic 1.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2333