Questions

Q:

Mohenjo Daro is situated in

A) Gujarat B) Punjab
C) Afghanistan D) Sindh province of Pakistan
 
Answer & Explanation Answer: D) Sindh province of Pakistan

Explanation:

The ancient settlement of Mohenjo-daro is situated in Larkana District in the Sindh province of Pakistan.

Report Error

View Answer Report Error Discuss

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

2 2050
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 2050
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 2050
Q:

In economics, the cost of something is

A) the dollar amount of obtaining it B) what you give up to get it
C) often impossible to quantify, even in principle D) always measured in units of time given up to get it
 
Answer & Explanation Answer: B) what you give up to get it

Explanation:

In economics, the cost of something is what you give up to get it.

Report Error

View Answer Report Error Discuss

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

4 2049
Q:

According to World Economic Forum Global Gender Gap Report 2017, Indian has closed ______ percentage of its gender gap.

A) 39 B) 67
C) 53 D) 91
 
Answer & Explanation Answer: B) 67

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams , CAT

2 2049
Q:

Which network partnered with Google for expanding WiFi footprint?

A) JIO B) BSNL
C) IDEA D) AIRTEL
 
Answer & Explanation Answer: B) BSNL

Explanation:

BSNL network partnered with Google for expanding WiFi footprint.

Report Error

View Answer Report Error Discuss

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

4 2049
Q:

Select the synonym of
parlance

A) definitive B) lingo
C) canonical D) classic
 
Answer & Explanation Answer: B) lingo

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2049
Q:

What base is found on RNA but not on DNA?

A) Uracil B) Thymine
C) Adenine D) None of the above
 
Answer & Explanation Answer: A) Uracil

Explanation:

Uracil is present in RNA and binds to adenine whereas thymine is present in DNA and binds to adenine.

Report Error

View Answer Report Error Discuss

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

5 2048