Questions

Q:

The 'IC' chip, used in computers, is made of

A) Iron Oxide B) Silicon
C) Chomium D) Silica
 
Answer & Explanation Answer: B) Silicon

Explanation:
Report Error

View Answer Report Error Discuss

7 2179
Q:

The mechanism of water reabsorption by the renal tubules is

A) solvent drag B) osmosis
C) active transport D) cotransport with sodium ions
 
Answer & Explanation Answer: B) osmosis

Explanation:

Water reabsorption by the renal tubules is harmonally controlled and it is a osmosis mechanism.

Report Error

View Answer Report Error Discuss

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

0 2179
Q:

The light of distant stars is affected by

A) Interstellar Dust B) The Earth's Atmosphere
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2178
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 2178
Q:

What is fragmentation?

Answer

Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request.

Report Error

View answer Workspace Report Error Discuss

1 2178
Q:

Which organelles are unique to plant cells?

A) Central vacuole B) Chlorophyll
C) Cell wall 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

3 2178
Q:

Which among the following is/are female hormones?
(i) Estrogen
(ii) Progesterone
(iii) Testosterone

A) (i) and (iii) B) (i) and (ii)
C) (ii) and (iii) D) Only (iii)
 
Answer & Explanation Answer: B) (i) and (ii)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

5 2177
Q:

Minutes Hand Clock Puzzle?

A) 12 B) 24
C) 44 D) 60
 
Answer & Explanation Answer: B) 24

Explanation:

Exactly 24 times.

Report Error

View Answer Report Error Discuss

Filed Under: Clock puzzles
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk

23 2177