Questions

Q:

Cuscuta is an example of

A) Predation B) Ectoparasitism
C) Brood parasitism D) Endoparasitism
 
Answer & Explanation Answer: B) Ectoparasitism

Explanation:

Cuscuta is an example of Ectoparasitism.

Report Error

View Answer Report Error Discuss

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

2 2148
Q:

In July 2017, RBI Capped how much Customer liability if they report unauthorised transactions within seven working days?

A) Rs 50,000 B) Rs 25,000
C) Rs 10,000 D) Rs 20,000
 
Answer & Explanation Answer: B) Rs 25,000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

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

Which high court has ruled against negative marking in competitive examinations?

A) Madras High Court B) Bombay High Court
C) Hyderabad High Court D) Delhi High Court
 
Answer & Explanation Answer: A) Madras High Court

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2147
Q:

Who raised the slogan “Swaraj is my birthright and I shall have it”?

A) Mahatma Gandhi B) Subhash Chandra Bose
C) Bal Gangadhar Tilak D) Lala Lajpat Rai
 
Answer & Explanation Answer: C) Bal Gangadhar Tilak

Explanation:
Report Error

View Answer Report Error Discuss

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

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

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best expresses the same sentence in Indirect/Direct speech.

My father says, "Prices are shooting up alarmingly."

A) My father says that prices shoot up alarmingly. B) My father says that the price was shooting up alarmingly.
C) My father says that prices shot up alarmingly. D) My father said that the prices were shooting up alarmingly.
 
Answer & Explanation Answer: D) My father said that the prices were shooting up alarmingly.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2147
Q:

Air pollution level is considered to be moderate if Air Quality index between

A) 0 to 50 B) 51 to 100
C) 101 to 150 D) 151 to 200
 
Answer & Explanation Answer: D) 151 to 200

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

3 2147