Questions

Q:

Pick up the most effective word from the given words to fill in the blanks to make the sentence meaningfully complete.

According to the weather _______ it is going to be cloudy today.

A) Announcement B) Indication
C) Prediction D) Forecast
 
Answer & Explanation Answer: D) Forecast

Explanation:

Weather is always forecasted.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2046
Q:

Select the word with the correct spelling.

A) adendum B) atlantise
C) inovate D) abseiled
 
Answer & Explanation Answer: D) abseiled

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , GRE

0 2045
Q:

Which of the following is not a storage device?

A) Hard drive B) Printer
C) RAM D) None of the above
 
Answer & Explanation Answer: B) Printer

Explanation:

A storage device refers to a computing hardware used to store information permanently or temporarily. The device can be external or internal to a computer, server, and other computing systems.

 

There are two types of storage devices used with computers: a primary storage device, such as RAM, and a secondary storage device, like a hard drive. Secondary storage can be removable, internal, or external.

 

Here printer is not the storage device, it is an outut.

Report Error

View Answer Report Error Discuss

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

1 2045
Q:

The EPA studies pollution and other

A) population hazards B) environmental health hazards
C) traffic hazards D) All of the above
 
Answer & Explanation Answer: B) environmental health hazards

Explanation:

The EPA stands for Environment Protection Agency in U.S which studies pollution and other environmental health hazards.

Report Error

View Answer Report Error Discuss

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

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

All India Radio was founded in

A) 1935 B) 1931
C) 1930 D) 1927
 
Answer & Explanation Answer: C) 1930

Explanation:

All India Radio founded in 1930.

With over 420 radio stations in about 23 languages & 179 dialects.

AIR is one of the largest radio broadcasters in world.

It also has 99.19% population coverage & 18 FM channels.

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 2044
Q:

The Jal Amrutha scheme launched by which state?

A) Haryana B) Himachal Pradesh
C) Karnataka D) Telangana
 
Answer & Explanation Answer: C) Karnataka

Explanation:

The Jal Amrutha scheme launched by the state of Karnataka.

Report Error

View Answer Report Error Discuss

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

0 2044
Q:

What form of Shiva is most prominent in the Brihadeshvara Temple built by the Chola dynasty?

A) Harihara B) Bhairava
C) .Rudra D) Tripurantaka
 
Answer & Explanation Answer: D) Tripurantaka

Explanation:

The most prominent form of Shiva in Brihadeshvara Temple built by Chola dynasty is Tripuntaka. Tripurantaka is a manifestation of the Hindu god Shiva. In this aspect, Shiva is depicted with four arms wielding a bow and arrow. Shiva as Tripurantaka is accredited with destroying three mythical cities of the Asuras. It is believed that the Rudraksha came from lord Shiva’s eyes, when he destroyed Tripura.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2044