Questions

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

Choose the correctly spelt word:-

A) Intrensic B) Intrinsic
C) Entrensic D) Entrinsec
 
Answer & Explanation Answer: B) Intrinsic

Explanation:

Intrinsic is spelt correctly which means essential.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2046
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:

Which city was the venue of 'ParmanuTech 2019'?

A) Kolkata B) Pune
C) New Delhi D) Hyderabad
 
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

1 2046
Q:

What does Customer Satisfaction mean to you?

Answer

Customer Satisfaction means, dealing with the customer in a proper or positive way. Every individual mindset is  different so their cause and satisfactory leave also changed. So the main challenge of a worker of a call center is to make them understand that they are also concerned about their trouble.

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

3 2046
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 2045
Q:

Define HCMOS?

Answer

High-density n-type Complimentary Metal Oxide Silicon field effect transistor.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 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