Questions

Q:

When is Cost Per Thousand Impressions (CPM) bidding not available?

Answer

If your campaign is opted in to the Search Network.

Report Error

View answer Workspace Report Error Discuss

0 2053
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 2053
Q:

What are the blocking and non-blocking assignments in Verilog and which is preferred in Sequential Circutis?

Answer

A blocking assignment is one in which the statements are executed sequentially, i.e., first statement is executed and variable is assigned  a value then second is executed and so on. A non blocking assignment is  one in which statements occurs conturrently, only non blocking assignments should be used in sequential circuit.


 


e.g.


initial


begin


a=b; //blocking


c<=a; //nonblocking


d=c; // blocking


end


 


In this example firstly the value of b is assigned to a and this value is assigned to c only after execution of first statement. the second and the third statements are executed simultaneously, i.e. value a ais assigned to c and previous value if c is assigned to d.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2053
Q:

An electric iron of 750 W is used for S hours per day. Then the energy consumed in one day by the iron is:

A) 6 units B) 600 units
C) 0.6 units D) 60 units
 
Answer & Explanation Answer: A) 6 units

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: CAT , Bank Exams , AIEEE

1 2052
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
I will keep your secret.

A) Keeping of your secret will be done by me. B) I will be keeping the secret of you.
C) Your secret would be kept by me. D) Your secret I will be keeping.
 
Answer & Explanation Answer: C) Your secret would be kept by me.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2052
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 2051
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 2051
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 2051