Questions

Q:

Who were not confirmed with the India's highest civilian honour Bharat Ratna for 2018?

A) Bhupen Hazarika B) Nanaji Deshmukh
C) Pranab Mukherjee D) Kailash Satyarthi
 
Answer & Explanation Answer: D) Kailash Satyarthi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

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

The Shiites believed that the Umayyad

A) should pray more B) should not be in power
C) got special treatment D) should rule
 
Answer & Explanation Answer: B) should not be in power

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2047
Q:

Where are the Garo Hills located?

A) Assam B) Nagaland
C) Meghalaya D) Mizoram
 
Answer & Explanation Answer: C) Meghalaya

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT

1 2047
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 2046
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 2046
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 2046
Q:

Glass is made of which material?

A) Calcium carbonate B) Sand
C) Silver Iodide D) Lime
 
Answer & Explanation Answer: B) Sand

Explanation:

Glass is made from heating of sand. To melt sand to make glass, the temperature needed is above 1800 deg celcius.

glass_is_made_of_which_material1562221721.jpg image

Report Error

View Answer Report Error Discuss

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

6 2045