Questions

Q:

Highest Civilian Honour received by Sania Mirza is _________.

A) Padma Shri B) Padma Bhushan
C) Padma Vibhushan D) Bharat Ratna
 
Answer & Explanation Answer: B) Padma Bhushan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

0 2048
Q:

Rajendra I was the son of?

A) Bindusara I B) Devabhuti I
C) Skanda Gupta I D) Rajaraja I
 
Answer & Explanation Answer: D) Rajaraja I

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2048
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 2048
Q:

Groundwater is found underground in the zone of

A) Penetration B) Aeration
C) Saturation D) Both B & C
 
Answer & Explanation Answer: D) Both B & C

Explanation:

Groundwater is all the water that has penetrated the earth's surface and is found in one of two soil layers. The one nearest the surface is the "zone of aeration", where gaps between soil are filled with both air and water. Below this layer is the "zone of saturation", where the gaps are filled with water.

Report Error

View Answer Report Error Discuss

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

2 2047
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 2047
Q:

Every SOP must have the signature of the ____ within your chain of command before it is a legal document.

Answer

SOP means Standard Operating Procedure.


A standard operating procedure is a set of step-by-step instructions compiled by an organization to help workers carry out complex routine operations. SOPs aim to achieve efficiency, quality output and uniformity of performance, while reducing miscommunication and failure to comply with industry regulations.


 


Every SOP must have the signature of the approving authority within your chain of command before it is a legal document.

Report Error

View answer Workspace Report Error Discuss

6 2047
Q:

Magnesium (Mg) + Oxygen (O2) = ?

A) Mg2O B) MgO4
C) O2Mg D) MgO
 
Answer & Explanation Answer: D) MgO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

4 2047
Q:

A sentence/a part of the sentence is underlined. Four alternatives are given to the underlined part which will improve the sentence. Choose the correctalternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to "No improvement".

Owing to his respiratory problems the doctor has told him to refrain from smoking.

A) to not refrain from B) to refrain to
C) to refrain not from D) No improvement
 
Answer & Explanation Answer: D) No improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2047