Certification Questions

Q:

How many-shares of market value RS.25 each can be purchased for Rs.12750, brokerage being 2% ?

A) Rs.450 B) Rs.500
C) Rs.550 D) Rs.600
 
Answer & Explanation Answer: B) Rs.500

Explanation:

CP. of each share= Rs.(25 + 2% of 25) = Rs.25.50. 

Number of shares= 1275025.50= 500

Report Error

View Answer Report Error Discuss

11 9635
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

7 9611
Q:

Which entity owns ITIL now?

Answer

ITIL (Information Technology Infrastructure Library) is owned by Axelos since, 2013.

Report Error

View answer Workspace Report Error Discuss

11 9449
Q:

You need to subnet a network that has 5 subnets, each wit at least 16 hosts. Which classful subnet mask would you use?

A) 255.255.255.192 B) 255.255.255.224
C) 255.255.255.240 D) 255.255.255.248
 
Answer & Explanation Answer: B) 255.255.255.224

Explanation:

You need 5 subnets, each with at least 16 hosts. The mask 255.255.255.240 provides 16 subnets with 14 hosts - this will not work. The mask 255.255.255.224 provides 8 subnets, each with 30 hosts. This is the best answer.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

2 9400
Q:

Which purchasing document(s) allow(s) only time-dependent Conditions?

A. Contract
B. Purchaseorder
C. Scheduling agreement
D. RFQ/Quotation

Answer

Answer : A


 


Explanation: Conditions in the purchase order are always  time-independent.Conditions in contracts, however, are always  time-dependent.For RFQs and scheduling agreements, you can control the time dependency with the document type.

Report Error

View answer Workspace Report Error Discuss

Subject: SAP MM

18 9265
Q:

Which ITIL process has the objective of helping to monitor the IT services by maintaining a logical model of the IT infrastructure and IT services?

A) Capacity Management B) Change Management
C) Configuration Management D) Financial Management for IT services
 
Answer & Explanation Answer: C) Configuration Management

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

3 9120
Q:

The project manager develops a process improvement plan to encourage continuous process improvement during the life of the project. Which of the following is a valid tool or technique to assist the project manager to assure the success of the process improvement plan?

A) Change control system B) Process analysis
C) Benchmarking D) Configuration management system
 
Answer & Explanation Answer: B) Process analysis

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

3 8941
Q:

How can an organization determine the effectiveness of the Service Level Management process?

A) By checking contracts with suppliers B) By measuring customer satisfaction
C) By defining service levels D) By reporting on all incidents
 
Answer & Explanation Answer: B) By measuring customer satisfaction

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 8803