Certification Questions

Q:

At which layer is routing implemented , enabling connections and path selection between two end systems?

Answer

The Network layer provides routing through an internetwork and logical addressing.

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

14 8718
Q:

The DoD model (also called the TCP/IP stack) has four layers. Which layer of the DoD model is equivalent to the Network layer of the OSI model?

A) Application B) Host-to-Host
C) Internet D) Network Access
 
Answer & Explanation Answer: C) Internet

Explanation:

The four layers of the DoD model are Application/process, Host-to-Host, Internet, and Network Access. The Internet layer is equivalent to the Network layer of the OSI model.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

3 8682
Q:

You want to run the new 802.1w on your switches. which of the following would enable this protocol?

A) Switch (config) # Spanning-tree mode rapid-pvst B) Switch#spanning-tree mode rapid-pvst
C) Switch (config)#spanning-tree mode 802.1w D) Switch#spanning-tree mode 802.1w
 
Answer & Explanation Answer: A) Switch (config) # Spanning-tree mode rapid-pvst

Explanation:

802.1w is the also called Rapid Spanning Tree Protocol. It is not enabled by default on Cisco switches, but it is a better STP to run since it has all the fixes that the Cisco extensions provide with 802.1d

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 8552
Q:

As a network administrator you have been requested to move a printer from your company's Marketing OU to your company's Research OU. After the move you test the printer and find that the local administrator assigned to the Marketing OU still has access and can remove print jobs from it. What can you do to change this?

A) Remove the permissions for the local administrator from the printer. B) Remove printer permissions from the local administrator.
C) Remove the Everyone group from the printer. D) Delete the printer object.
 
Answer & Explanation Answer: A) Remove the permissions for the local administrator from the printer.

Explanation:
Report Error

View Answer Report Error Discuss

12 8478
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

2 8365
Q:

Which layer is responsible for converting data packets from the Data Link layer into electrical signals?

Answer

The physical layer takes frames from the Data Link layer and encodes the 1s and 0s into a digital signal for transmission on the network medium.

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

7 8360
Q:

A user reports a PC problem to the Service Desk. A Service Desk representative determines that the PC is defective and indicates that according to the services catalogue, the PC will be replaced within three hours. Which ITIL process is responsible for having this user's PC replaced within three hours? 

A) Availability Management B) Change Management
C) Configuration Management D) Service Level Management
 
Answer & Explanation Answer: B) Change Management

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

5 8357
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

4 8292