Questions

Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
I will keep your secret.

A) Keeping of your secret will be done by me. B) I will be keeping the secret of you.
C) Your secret would be kept by me. D) Your secret I will be keeping.
 
Answer & Explanation Answer: C) Your secret would be kept by me.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2052
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:

The system board is also known as the

A) Mother board B) Main circuit board
C) Baseboard D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The system board is also known as the Mother board, Main circuit board, Baseboard or logic board.

Report Error

View Answer Report Error Discuss

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

4 2051
Q:

Which municipal corporation has won the first prize at the Swachhata Excellence awards 2019?

A) Arrah B) Raigarh
C) Jagdalpur D) Ahmedabad
 
Answer & Explanation Answer: B) Raigarh

Explanation:

Raigarh municipal corporation in Chhattisgarh has won the first prize at the Swachhata Excellence awards 2019.

Report Error

View Answer Report Error Discuss

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

1 2051
Q:

In economics, the cost of something is

A) the dollar amount of obtaining it B) what you give up to get it
C) often impossible to quantify, even in principle D) always measured in units of time given up to get it
 
Answer & Explanation Answer: B) what you give up to get it

Explanation:

In economics, the cost of something is what you give up to get it.

Report Error

View Answer Report Error Discuss

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

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

Mohenjo Daro is situated in

A) Gujarat B) Punjab
C) Afghanistan D) Sindh province of Pakistan
 
Answer & Explanation Answer: D) Sindh province of Pakistan

Explanation:

The ancient settlement of Mohenjo-daro is situated in Larkana District in the Sindh province of Pakistan.

Report Error

View Answer Report Error Discuss

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

2 2050
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 2050