Questions

Q:

Which state govt has recently banned the Popular Front of India?

A) Uttar Pradesh B) Jharkhand
C) West Bengal D) Jammu & Kashmir
 
Answer & Explanation Answer: B) Jharkhand

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2067
Q:

Which of the following cities is the venue of the 4th edition of World Summit on Accrediation (WOSA) 2018?

A) Hyderabad B) Pune
C) New Delhi D) Patna
 
Answer & Explanation Answer: C) New Delhi

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

3 2067
Q:

Which of the following is called the 'Land of the Golden Pagoda'?

A) Myanmar B) China
C) Japan D) North Korea
 
Answer & Explanation Answer: A) Myanmar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2066
Q:

Match List-I with List-II and select the correct answer using the code given below the Lists :

A) ABCD - 4 3 2 1 B) ABCD - 4 2 3 1
C) ABCD - 1 2 3 4 D) ABCD - 1 3 2 4
 
Answer & Explanation Answer: A) ABCD - 4 3 2 1

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

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

A sentence has been given in Direct/Indirect Speech. Out of the four given alternatives, select the one which best expresses the same sentence in Indirect/Direct Speech.

 

Gopal said to his friends, “Are you angry?”

 

A) Were they angry, asked Gopal. B) Gopal asked why they are angry.
C) Gopal asked them whether they are angry. D) Gopal asked his friends whether they were angry.
 
Answer & Explanation Answer: D) Gopal asked his friends whether they were angry.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066
Q:

Someone who copies everything you do

A) Copycat B) Copyroom
C) Copydog D) Copyrat
 
Answer & Explanation Answer: A) Copycat

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066