Questions

Q:

Which is an example of an expressed power congress holds?

A) declaring war B) maintaining an army
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2000
Q:

Who is the founder and also first Chairman of the ISRO, it was established in 1969?

A) Vikram Sarabhai B) A P J Abdul Kalam
C) Homi J Bhabha D) Satish Dhawan
 
Answer & Explanation Answer: A) Vikram Sarabhai

Explanation:

The founder and also first Chairman of the ISRO is Vikram Sarabhai.

Report Error

View Answer Report Error Discuss

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

0 2000
Q:

What "line" divides the northern and southern US states?

Answer

Mason–Dixon line

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2000
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 1999
Q:

Which organization is an interest group?

A) The National Rifle Association B) The National Right to Life organization
C) The National Organization for Women D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

An interest group is an organization whose members share common concerns and try to influence government policies affecting those concerns. Interest groups are also known as lobbies.

Report Error

View Answer Report Error Discuss

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

2 1998
Q:

Who got Tansen Samman award 2018?

A) Manju Mehta B) Biren Singh
C) Divya Patidar Joshi D) None of the above
 
Answer & Explanation Answer: A) Manju Mehta

Explanation:

Tansen Samman award 2018 was given Manju Mehta recently.

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank PO

1 1998
Q:

what are the various flags used in 8085?

Answer

Sign flag, Zero flag, Auxillary flag, Parity flag, Carry flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1998
Q:

Which country is partner country at International Gita Festival 2018 along with India?

A) Spain B) Malaysia
C) Mauritius D) None of the above
 
Answer & Explanation Answer: C) Mauritius

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

2 1998