Questions

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 2049
Q:

Who is the author of "India 2020: A Vision for the New Millennium"?

A) APJ Abdul Kalam B) Shashi Tharoor
C) Narendra Modi D) Arun Shourie
 
Answer & Explanation Answer: A) APJ Abdul Kalam

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 2049
Q:

India & which country recently launched initiative to combat Marine Pollution?

A) Sweden B) Japan
C) Australia D) Norway
 
Answer & Explanation Answer: D) Norway

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

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

In the following question, a word has been written in four different ways out of which only one is correctly spelt. Select the correctly spelt word.

A) Fluorescent B) Floresecent
C) Floroscent D) Flowrascent
 
Answer & Explanation Answer: A) Fluorescent

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT

0 2048
Q:

REM sleep is also known as paradoxical sleep because

A) Measures of the brain activity closely resemble waking consciousness, but the person is incapable of moving. B) The person can have night terrors during this stage but will not remember them in the morning. (E) Th e person's vital signs are very slow, but the person can get up and walk around
C) Measures of the brain activity closely resemble waking consciousness, but the person is in the deepest stage of sleep. D) The person's heart rate is slower than when awake, but the person can sleepwalk or sleep talk.
 
Answer & Explanation Answer: A) Measures of the brain activity closely resemble waking consciousness, but the person is incapable of moving.

Explanation:

REM sleep i.e, Rapid Eye Movement sleep is also known as paradoxical sleep because the measures of the brain activity closely resemble waking consciousness, but the person is incapable of moving as the brain is in fully active mode that time.

Report Error

View Answer Report Error Discuss

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

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

Who has become first Indian player in ODI history to score three consecutive 100s as captain?

A) Virat Kohli B) Rohit Sharma
C) MS Dhoni D) Shikar Dhawan
 
Answer & Explanation Answer: A) Virat Kohli

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2047