Questions

Q:

What smallest number should be added to 2401 so that the sum is completely divisible by 14 ?

A) 8 B) 7
C) 4 D) 5
 
Answer & Explanation Answer: B) 7

Explanation:
Report Error

View Answer Report Error Discuss

2 2048
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.

 

An achievement or something desired fail to be attained by someone

 

A) to elude B) to eschew
C) to shirk D) to devoid
 
Answer & Explanation Answer: A) to elude

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

Which is the highest peak in Andaman and Nicobar islands?

A) Mount Koya B) Mount Diavolo
C) Saddle Peak D) Mount Thuiller
 
Answer & Explanation Answer: C) Saddle Peak

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 2048
Q:

The largest expenditure component of GDP is

A) Consumption B) Net exports
C) Government spending D) Investments
 
Answer & Explanation Answer: A) Consumption

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Which IIT has announced the launch of a full-fledged bachelor's programme in Artificial Intelligence (AI) technology, first for the country?

A) IIT Kanpur B) IIT Hyderabad
C) IIT Madras D) IIT Mumbai
 
Answer & Explanation Answer: B) IIT Hyderabad

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2047