Project Manager Questions


Q:

The More You Have, The Less You See. What is it?

A) Light B) Darkness
C) Sight D) None
 
Answer & Explanation Answer: B) Darkness

Explanation:

The More You Have the Darkness, The Less You See i.e, visible less.

Report Error

View Answer Report Error Discuss

6 2179
Q:

Difference between Arraylist and Linked list?

Answer

ArrayList and LinkedList both implements List interface and maintains insertion order. Both are non synchronized classes.


 


But there are many differences between ArrayList and LinkedList classes that are given below.


 

ArrayList    V/s     LinkedList ::


 

1) ArrayList internally uses dynamic array to store the elements.


                   Whereas


LinkedList internally uses doubly linked list to store the elements.


 

2) Manipulation with ArrayList is slow because it internally uses array. If any element is removed from the array, all the bits are shifted in memory.


                   Whereas


Manipulation with LinkedList is faster than ArrayList because it uses doubly linked list so no bit shifting is required in memory.


 

3) ArrayList class can act as a list only because it implements List only.


                   Whereas


LinkedList class can act as a list and queue both because it implements List and Deque interfaces.


 

4) ArrayList is better for storing and accessing data.


                   Whereas


LinkedList is better for manipulating data.

Report Error

View answer Workspace Report Error Discuss

3 2165
Q:

What is the difference between creating String as new() and literal ?

Answer

When we create string with new() Operator, it’s created in heap and not added into string pool while String created using literal are created in String pool itself which exists in PermGen area of heap.



String s = new String("Test");

does not put the object in String pool , we need to call String.intern() method which is used to put them into String pool explicitly. its only when you create String object as String literal e.g. String s = "Test" Java automatically put that into String pool.

Report Error

View answer Workspace Report Error Discuss

1 2146
Q:

Which online security campaign has been launched by Google India to safeguard internet users?

A) #SecurityCheckKiya B) #InternetSafetyKiya
C) #OnlineSecurityKiya D) #SecureInternetKiya
 
Answer & Explanation Answer: A) #SecurityCheckKiya

Explanation:

Google has launched new online security campaign #SecurityCheckKiya in India to promote security awareness among general public. The purpose of the campaign is to protect young and first-time web users from account hijacking, safeguard Android devices from malicious apps and secure all their personal data if they lose their device.

Report Error

View Answer Report Error Discuss

2 2140
Q:

Explain what is posting key and what does it control ?

Answer

In order to determine the transaction type which is entered in the line item, a two digit numerical is used known as 'Posting Key'
Posting key determines:
a) Account Types
b) Types of posting. Debit or Credit
c) Field status of transaction

Report Error

View answer Workspace Report Error Discuss

4 2140
Q:

_U_R_Y_

Complete this 7 letter word _U_R_Y_

1. Girls like it
2. Boys use it
3. Parents hate it.

Answer

HURRAYS.

Report Error

View answer Workspace Report Error Discuss

17 2117
Q:

A Website address is a unique name that identifies a specific

A) Link B) PDA
C) Web browser D) Website
 
Answer & Explanation Answer: D) Website

Explanation:
Report Error

View Answer Report Error Discuss

0 2104
Q:

What areas would you like to further develop professionally?

Answer

Why they ask this and what they are looking for:


 


This question "What areas would you like to further develop professionally?" will uncover whether you are interested and knowledgeable about your own development and as such will can be a cloaked attempt to discover your weaknesses.


A common target of the question is to discover how motivated you are to extend yourself. If you are motivated to learn, then you are probably more motivated to do the job well.


 


How to answer this:


First show that you are concerned and active about your own development. You can indicate how development has worked for your in the past.


You're right, continued learning and development is important and I continue to work to improve key skills.


Do answer the question, of course, but do not show gaping holes in your skill set and especially those in key areas required in the job. A good trick is to talk about developing your skills in new areas that will be of future benefit to the company.


 


For example : I am in programming now and love the work, but one day I would like to develop into a management role.


 


Hope this helps you..!

Report Error

View answer Workspace Report Error Discuss

1 2079