Questions

Q:

By monitoring ad campaign performance, an advertiser may obtain the information needed to

A) determine if campaigns are meeting overall marketing and conversion goals B) create additional AdWords accounts for low-performing keywords
C) compare campaign performance to that of individual competitors D) create duplicate ad groups with identical keywords and different ad variations
 
Answer & Explanation Answer: A) determine if campaigns are meeting overall marketing and conversion goals

Explanation:

By monitoring ad campaign performance an advertiser may obtain the information needed to determine if campaigns are meeting overall marketing and conversion goals compare campaign performance to that of other advertisers create separate adwords accounts for low-performing keywords create duplicate ad groups with identical keywords and different ad variations.

Report Error

View Answer Report Error Discuss

Filed Under: Advertising and Media

4 2305
Q:

Select the synonym of
to stranded

A) to douse B) to aground
C) to swamp D) to inundate
 
Answer & Explanation Answer: B) to aground

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2305
Q:

Mina is the tribe of

A) Assam B) Rajasthan
C) Bihar D) Tripura
 
Answer & Explanation Answer: B) Rajasthan

Explanation:
Report Error

View Answer Report Error Discuss

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

19 2304
Q:

What is a Multi-homed Host?

Answer

It is a host that has a multiple network interfaces and that requires multiple IP addresses is called as a Multi-homed Host

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2304
Q:

Name the two main types of Fermentation?

Answer

Fermentation is the chemical breakdown of a substance by bacteria, yeasts, or other microorganisms, typically involving effervescence and the giving off of heat.


 


The two most common types of fermentation are


(1) alcoholic fermentation (and) 


(2) lactic acid fermentation.


 


(1) Alcoholic fermentation : the type of fermentation in which ethyl alcohol is the main end product .This is very common in yeast (unicellular fungus) and also seen in some bacteria. Yeast cells release enzymes called zymase complex which bring about the fermentation. The reactions are similar to anaerobic respiration.


 


(2) Lactic acid fermentation : The type of fermentation in which lactic acid is the end product.


It is carried out by some bacteria (e.g. lactic acid bacteria), and also by animals (muscle glycolysis in animals, under oxygen deficiency, results in the formation of lactic acid this is whay we experience in muscle cramps, or "Charley horse").

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2304
Q:

In India, planning commission was replaced by

A) UPSC B) NITI Aayog
C) National Development Council D) NMDC
 
Answer & Explanation Answer: B) NITI Aayog

Explanation:

The Planning Commission was an institution in the Government of India started by Jawaharlal Nehru, The First Prime Minister of Independent India, in the year 1950. Later, this was replaced by NITI Aayog in 2015 by now and than Prime Minister Narendra Modi to ensure implementation of the Sustainable Development Goals by fostering the involvement of State Governments of India in the economic policy-making process.

 

NITI Aayog means National Institute for Transforming India. Narendra Modi is the Chairman of NITI Aayog.

Report Error

View Answer Report Error Discuss

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

5 2304
Q:

What is CPU Scheduler?

Answer

Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process: 1.Switches from running to waiting state. 2.Switches from running to ready state. 3.Switches from waiting to ready. 4.Terminates. Scheduling under 1 and 4 is non-preemptive. All other scheduling is preemptive.

Report Error

View answer Workspace Report Error Discuss

2 2304
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2303