Project Manager Questions


Q:

Dynamic Search Ads would be most helpful for

A) Campaigns that need to reduce exposure on competitive keywords. B) Websites with hundreds or thousands of products, services, or listings that frequently change.
C) A local restaurant with a dynamically changing menu that offers fresh new entrees every few months. D) Moving an ads position dynamically in whatever direction a users eyes are looking.
 
Answer & Explanation Answer: B) Websites with hundreds or thousands of products, services, or listings that frequently change.

Explanation:

Dynamic Search Ads are the simplest way to find the customers searching on Google for indubitably what you offer. This is an ideal way for with a well-developed website or with a large inventory. Businesses with websites that contain a lot of content or well-structured URLs will see the best results from using Dynamic Search Ads. 

 

Even well managed Adwords account with many keywords can miss relevant searches, experiance delays in getting ads added for new products or it may be out of Sync with what the website originally have.

 

How to Target : 

You can target 

        • All the web pages  (or)

 

        • Specific webpages containing certain keywords.

 

Benefits of Dynamic Search Ads :

        • Save time. No more mapping keywords, bids, and ad text to each product on your website. Plus, Dynamic Search Ads may help you advertise to new markets faster than other alternatives.
        • Frequent, automatic updates to your ads. When you make changes to pages in our index, we'll crawl your website again to help ensure that your ads are as up to date as possible.
        • Show relevant, dynamically generated headlines with your ads. When a customer's search is relevant to your product or service, AdWords will dynamically generate an ad with a clear headline for the most relevant page on your site.
Report Error

View Answer Report Error Discuss

6 4926
Q:

What Does BIOS Stand For

A) Backup Input Output System B) Battery Integrated Operating Setup
C) Basic Input Output System D) Better Integrated Operating System
 
Answer & Explanation Answer: C) Basic Input Output System

Explanation:

BIOS in computers stands for Basic Input Output System.

 

BIOS is a set of computer instructions in firmware which control input and output operations.

Report Error

View Answer Report Error Discuss

25 4779
Q:

what will be the output of the following code?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
    {
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A) 15 0 2 B) 15 0 0
C) 15 20 0 D) 15 0 20
 
Answer & Explanation Answer: D) 15 0 20

Explanation:
Report Error

View Answer Report Error Discuss

3 4777
Q:

Give an example for the use of volatile keyword in c++ ?

Answer

Most of the times compilers will do optimization to the code to speed up the program. For example in the below code,


int k = 15;
while( k == 15)


{
// Do something
}


compiler may think that value of 'k' is not getting changed in the program and replace it with 'while(true)', which will result in an infinite loop. In actual scenario, the value of 'k' may be getting updated from outside of the program.


Volatile keyword is used to tell compiler that the variable declared using 'volatile' may be used from outside the current scope, so that compiler won't apply any optimization. This matters only in case of multi-threaded applications.


In the above example if variable 'k' was declared using volatile, compiler will not optimize it. In shot, value of the volatile variables will be read from the memory location directly.

Report Error

View answer Workspace Report Error Discuss

5 4743
Q:

abcdefghijklmnopqrstuvwxyz Riddle

What sentence contains all abcdefghijklmnopqrstuvwxyz?

Answer

The Quick Brown Fox Jumped Over The Lazy Dog  is the sentence which contains all 26 alphabets i.e, from a to z.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer , Project Manager

13 4646
Q:

Values that are used to end loops are referred to as _____ values.

A) stop B) sentinel
C) end D) finish
 
Answer & Explanation Answer: B) sentinel

Explanation:
Report Error

View Answer Report Error Discuss

4 4571
Q:

A watch which gains uniformly is 2 minutes low at noon on Tuesday and is 4 min 48 sec fast at 2 p.m. on the following Tuesday. When was it correct ?

A) 12 p.m. on Wednesday B) 2 p.m. on Thursday
C) 3 p.m. on Thursday D) 2 p.m. on Wednesday
 
Answer & Explanation Answer: B) 2 p.m. on Thursday

Explanation:

Time from 12 p.m. on Tuesday to 2 p.m. on the following Tuesday = 7 days 2 hours.
= 170 hours.
The watch gains = (2 + 4 x 4/5) min
= 34/5 min. in 170 hrs.
Now, 34/5 min are gained in 170 hrs.
Then, 2 min are gained in (170 x 5/34 x 2) hrs.
Watch is correct after 2 days 2 hrs after 12 p.m. on Tuesday, i.e., it will be correct at 2 p.m. on Thursday.

Report Error

View Answer Report Error Discuss

Filed Under: Clocks
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO , Network Engineer , Project Manager

9 4546
Q:

Can any object be stored in a View state in .NET ?

Answer

View state is a repository in an ASP.NET page that can store values that need to be retained during postback.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Analyst , IT Trainer , Project Manager

2 4446