Interview Questions

Q:

You can use display planner to

A) add ads B) research keywords
C) display network D) All of the above
 
Answer & Explanation Answer: C) display network

Explanation:

Display Planner is a free Google Ads tool you can use to plan your Display Network ad campaigns.

Report Error

View Answer Report Error Discuss

0 1972
Q:

What is the DNS forwarder?

Answer

DNS servers often must communicate with DNS servers outside of the local network. A forwarder is an entry that is used when a DNS server receives DNS queries that it cannot resolve locally. It then forwards those requests to external DNS servers for resolution.

Report Error

View answer Workspace Report Error Discuss

0 1972
Q:

What is Shift() method in Javascript?

Answer

-The shift() method is similar as the pop() method but the difference is that Shift method works at the beginning of the array. 


-The shift() method take the first element off of the given array and returns it. The array on which is called is then altered.


For example


var myarray = ["apple ", "banana ", "mango "]; 


console.log(myarray.shift());


console.log(myarray);


we get the following console output:


apple


["banana ", "mango "];


 


When we call shift() on an empty array, it will return an undefined value.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1971
Q:

When someone clicks your ad, the actual amount you’re charged will be

A) The minimum needed to hold your ad position, under the maximum cost-per-click limit B) The minimum needed to hold your ad position or 50% of your maximum cost-per-click bid, whichever is greater
C) The minimum needed to hold your ad position but never more than 120% of your maximum cost-per-click bid, whichever is greater D) The minimum needed to hold your ad position but never less than 50% of your maximum cost-per-click bid, whichever is greater
 
Answer & Explanation Answer: A) The minimum needed to hold your ad position, under the maximum cost-per-click limit

Explanation:

When_someone_clicks_your_ad,_the_actual_amount_you’re_charged_will_be1551856891.png image

When someone clicks your ad, the actual amount you’re charged will be " The minimum needed to hold your ad position, under the maximum cost-per-click limit ".

Report Error

View Answer Report Error Discuss

1 1969
Q:

What is the Set interface ?

Answer

- The Set interface provides methods for accessing the elements of a finite mathematical set


- Sets do not allow duplicate elements


- Contains no methods other than those inherited from Collection


- It adds the restriction that duplicate elements are prohibited


- Two Set objects are equal if they contain the same elements

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1969
Q:

What major challenges and problems did you face? How did you handle them?

Answer

As a manager, the tough decisions I make involve layoffs. Before making those hard decisions, I always think particularly about what is best for my employees and the business. While I do not relish making those kinds of decisions, I do not shy away from this part of my job. Two years ago, I had to let some employees go due to the monetary climate. This was a tough decision that was ultimately necessary for the good of the organization and everyone working for the company.

Report Error

View answer Workspace Report Error Discuss

Subject: Communication

2 1967
Q:

What is abstract method?

Answer

abstract method is a method declared with abstract modifier but  with out body.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1967
Q:

How many types of classes are there in Java?

Answer

Two types of classes:


1) Top Level Class


2) Classes within Class


       i) member classes


             a) static member class


             b) non static member class


      ii) local classes


      iii) anonymous classes

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1966