Questions

Q:

A universal recipient blood group belongs to

A) O B) A
C) B D) AB
 
Answer & Explanation Answer: D) AB

Explanation:

In transfusions of packed red blood cells, individuals with type O Rh D negative blood are often called universal donors. Those with type AB Rh D positive blood are called universal recipients.

The immune system of a person with AB blood will accept blood from all possible donors, whether they have O, A, B, or AB blood. Since both A and B antigens are present in a person with AB blood, the recipient won't reject the blood. The body identifies that blood as "self" rather than "foreign."

Report Error

View Answer Report Error Discuss

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

12 2034
Q:

If velocity is constant then acceleration is what?

A) constant B) increasing
C) 0 D) infinite
 
Answer & Explanation Answer: C) 0

Explanation:

If an object moves with some velocity that means the magnitude and direction of the object changes i.e, the object moves with some acceleration. Hence, if the object moves with constant velocity, no change in direction and magnitude of speed i.e, no acceleration = 0 acceleration.

Report Error

View Answer Report Error Discuss

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

6 2034
Q:

The Supreme Court ruled that the ‘None of The Above’ (NOTA) option will not be applicable for voting in which elections?

A) Prime Minister B) Lok Sabha
C) Rajya Sabha D) MLA
 
Answer & Explanation Answer: C) Rajya Sabha

Explanation:

The ruling of ‘None of The Above’ (NOTA) option will not be applicable for voting in Rajya Sabha elections was made by a bench of Justices comprising CJI Dipak Misra and Justices AM Khanwilkar and DY Chandrachud of the Supreme Court.

Report Error

View Answer Report Error Discuss

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

3 2034
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 2034
Q:

The partition of india in 1947 was mainly due to

A) religious lines B) land disputes
C) administration D) All of the above
 
Answer & Explanation Answer: A) religious lines

Explanation:

After 200 years of long British rule, India got independence in 1947. India was then divided into two muslim majority Pakistan and Hindu majority India.

Report Error

View Answer Report Error Discuss

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

6 2034
Q:

Which sport has been included in 2022 Asian Games?

A) Kabaddi B) Cricket
C) Chess D) Carroms
 
Answer & Explanation Answer: B) Cricket

Explanation:

Cricket has been included in 2022 Asian Games. The Asian Games, also known as Asiad, is a multi-sport event held every four years among athletes from all over Asia. In 2022, Asian Games are going to be hosted by China. The first Asian Games are hels in the year 1951 in New Delhi.

Report Error

View Answer Report Error Discuss

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

4 2034
Q:

What is a device queue?

Answer

A list of processes waiting for a particular I/O device is called device queue.

Report Error

View answer Workspace Report Error Discuss

0 2034
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 2033