Questions

Q:

The scientific name of human being is?

A) Homo Nigrum B) Melongena Sapiens
C) Homo Sapiens D) Tigris Solanum
 
Answer & Explanation Answer: B) Melongena Sapiens

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 2065
Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case no improvement isneeded, select "no improvement".

As he tried harder, his steps slowed, his senses (was activated).

A) is activated B) were activated
C) were activate D) no improvement
 
Answer & Explanation Answer: B) were activated

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2064
Q:

New MD & CEO of Corporation Bank?

A) Jai Kumar Garg B) Anil Kumar Chaudhary
C) Jaya Pradha D) VR Lalithambika
 
Answer & Explanation Answer: A) Jai Kumar Garg

Explanation:

New_MD_and_CEO_of_corporation_bank1537938679.jpg image

The new MD & CEO of Corporation Bank was Jai Kumar Garg. Before this, he was Executive Director at UCO Bank.

Report Error

View Answer Report Error Discuss

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

2 2064
Q:

Types of budget?

Answer

Types of Budget ::


 


1) General Budget
2) Performance Budget
3) Zero Based Budget
4) Outcome Budget
5) Gender Budget

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2064
Q:

What is a job queue?

Answer

When a process enters the system it is placed in the job queue.

Report Error

View answer Workspace Report Error Discuss

0 2064
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 2063
Q:

Who gave the title 'Nightingale of India' to Sarojini Naidu ?

A) Jawaharlal Nehru B) Rabindranath Tagore
C) Rajendra Prasad D) Mahatma Gandhi
 
Answer & Explanation Answer: D) Mahatma Gandhi

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2063
Q:

Who has become the first-ever bowler in T20I history to pick 4 wickets in 4 balls?

A) Jasprit Bumrah B) Rashid Khan
C) Hasan Ali D) Trent Boult
 
Answer & Explanation Answer: B) Rashid Khan

Explanation:

Rashid Khan a bowler from Afghanistan, has become the first-ever bowler in T20I history to pick 4 wickets in 4 balls.

Report Error

View Answer Report Error Discuss

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

4 2063