Certification Questions

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

9 11166
Q:

 The main objective of Availability Management is?

A) To monitor and report availability of services and components B) To guarantee availability levels for services and components
C) To ensure that all targets in Service Level Agreements (SLAs) are met D) To ensure that service availability matches or exceeds the agreed needs of the business
 
Answer & Explanation Answer: D) To ensure that service availability matches or exceeds the agreed needs of the business

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

2 10913
Q:

The SQL keyword(s) ________ is used with wildcards.

A) LIKE only B) IN only
C) NOT IN only D) IN and NOT IN
 
Answer & Explanation Answer: A) LIKE only

Explanation:
Report Error

View Answer Report Error Discuss

35 10739
Q:

The spell check module of a word-processing software package contains a number of errors. The Development department has corrected these errors in a new version. Which process is responsible for ensuring this updated version is tested?

A) Configuration Management B) Incident Management
C) Problem Management D) Release Management
 
Answer & Explanation Answer: D) Release Management

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 10621
Q:

How should a router that is being used in a Frame Relay  network be configured to keep split horizon issues from preventing routing updates

A) Configure a seperate subinterface for each PVC with a unique DLCI and subnet assigned to the subinterface B) Combine multiple Frame Relay circuits as a point-to-point line to support multicast and broadcast traffic
C) Configure many subinterfaces in the same subnet D) Configure a single subinterface to establish multiple PVC connections to multiple remote router interfaces.
 
Answer & Explanation Answer: A) Configure a seperate subinterface for each PVC with a unique DLCI and subnet assigned to the subinterface

Explanation:

If you have a serial port configured with multiple DLCIs connected to multiple remote sites, split horizon rules stop route updates received on an interface from being sent out the same interface. By creating subinterfaces for each PVC, you can avoid the split horizon issues when using Frame Relay.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

22 10605
Q:

Which of the following describes the creation of private networks across the Internet, enabling privacy and tunneling of non-TCP/IP protocols?

A) HDLC B) Cable
C) VPN D) IPSec
 
Answer & Explanation Answer: C) VPN

Explanation:

A VPN allows or describes the creation of private networks across the Internet, enabling privacy and tunneling of non-TCP/IP protocols. A VPN can be set up across any type of link.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

22 10496
Q:

Which of the following is the most appropriate approach to carrying out Service Operations?

A) The internal IT view is most important as Service Operations has to monitor and manage the infrastructure B) Service Operations should maintain a balance between an internal IT view and an external business view
C) IT Operations does not take an internal or external view as they execute processes defined by Service Design D) The external business view is most important as Service Operations is the place where value is realized and the customer obtains the benefit of the services
 
Answer & Explanation Answer: B) Service Operations should maintain a balance between an internal IT view and an external business view

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

1 10315
Q:

Which OSI layer defines the standards for cabling and connectors?

A) Layer 1 B) Layer 4
C) Layer 7 D) Layer 3
 
Answer & Explanation Answer: A) Layer 1

Explanation:

OSI layer 1 defines the standards for cabling and connectors.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA
Job Role: Network Engineer

31 10258