Questions

Q:

Free-floating anxiety refers to anxiety that is

A) unrelated to any realistic, known source B) related to a specific event
C) related to a realistic source D) related to a specific object
 
Answer & Explanation Answer: A) unrelated to any realistic, known source

Explanation:

Free floating anxiety is also known as Generalised Anxiety Disorder in which the individual may be unable to identify specific triggers for the anxiety.

Report Error

View Answer Report Error Discuss

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

0 2047
Q:

In 1617 the British East India Company was given permission by __________ to trade in India.

A) Babur B) Akbar
C) Aurangzeb D) Jahangir
 
Answer & Explanation Answer: D) Jahangir

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2046
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 2046
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 2045
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 2045
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 2045
Q:

The FDA protects the U.S public from

A) drugs smuggled across the border B) paying too much for medicine
C) harmful prescription and OTC medications D) medications that can form addictions
 
Answer & Explanation Answer: A) drugs smuggled across the border

Explanation:

The Food and Drug Administration is responsible for protecting the public health by ensuring the safety, efficacy, and security of human and veterinary drugs, biological products, and medical devices; and by ensuring the safety of our nation's food supply, cosmetics, and products that emit radiation.

Report Error

View Answer Report Error Discuss

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

0 2045
Q:

Demand side market failures occur when

A) supply curves do not reflect the full cost of producing a good or services B) demand curves do not reflect consumer’s full willingness to pay for goods or services
C) government imposes tax on a good or a service D) a good or service is not produced because no one demands it
 
Answer & Explanation Answer: B) demand curves do not reflect consumer’s full willingness to pay for goods or services

Explanation:

Market failure arises because it is not possible for the market to correctly weight cost and benefits in a situation in which some of the cost is completely unaccounted.

Demand-side market failures happen when demand curves do not reflect consumer’s full willingness to pay for goods or services.

Supply-side market failures occur when supply curves do not reflect the full cost of producing a good or services.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2045