Questions

Q:

An electric iron of 750 W is used for S hours per day. Then the energy consumed in one day by the iron is:

A) 6 units B) 600 units
C) 0.6 units D) 60 units
 
Answer & Explanation Answer: A) 6 units

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: CAT , Bank Exams , AIEEE

1 2052
Q:

Choose the correctly spelt word:-

A) Gragarious B) Gragerious
C) Gregarious D) Grigareous
 
Answer & Explanation Answer: C) Gregarious

Explanation:

Gregarious is spelt correctly which means sociable.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2052
Q:

When does DNA replication happen?

A) S - phase B) M - Phase
C) Prophase D) Anaphase
 
Answer & Explanation Answer: A) S - phase

Explanation:

DNA is replicated during the S-Phase in the interphase of a cell.

Report Error

View Answer Report Error Discuss

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

3 2051
Q:

Select the correct statement about immune system?

A) The causative agent in acquired immune deficiency syndrome (AIDS) is a virus that recognizes CD4 proteins B) The most common form of immunodeficiency is graft­versus­host (GVH) disease
C) Severe combined immunodeficiency (SCID) disease is an acquired condition D) Hodgkin's disease is a hereditary immunodeficiency found in children
 
Answer & Explanation Answer: A) The causative agent in acquired immune deficiency syndrome (AIDS) is a virus that recognizes CD4 proteins

Explanation:

Among the given options, the correct statement about immunodeficiency is "The causative agent in acquired immune deficiency syndrome (AIDS) is a virus that recognizes CD4 proteins".

Report Error

View Answer Report Error Discuss

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

3 2051
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2051
Q:

Define HCMOS?

Answer

High-density n-type Complimentary Metal Oxide Silicon field effect transistor.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2051
Q:

Dakshayani, which is in news recently, is a/an

A) Plant B) Animal
C) River D) Train
 
Answer & Explanation Answer: B) Animal

Explanation:

Dakshayani, which is in news recently, is an Animal (She - elephant).

Report Error

View Answer Report Error Discuss

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

1 2051
Q:

Which network partnered with Google for expanding WiFi footprint?

A) JIO B) BSNL
C) IDEA D) AIRTEL
 
Answer & Explanation Answer: B) BSNL

Explanation:

BSNL network partnered with Google for expanding WiFi footprint.

Report Error

View Answer Report Error Discuss

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

4 2051