Certification Questions

Q:

In practical IPv6 application, The encapsulation of IPv6 packets inside IPv4 packets is called what?

A. tunneling
B. hashing
C. routing
D. NAT

Answer

Answer : A


Explanation:


Remember,  most network is still build on IPv4 structure and IPv4 is not going away in a hurry… one of the many techniques used to migrate to IPv6 is Tunneling.


Tunneling is a method that a network built on IPv4 structure can be configured to traffic IPv6 packet simultaneously.

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

1 5723
Q:

The standard delivery clients in a R/3 system are

A. client 000 and 001

B. client 001, 000 , training client 999

C. client 000, 001 and 002

D. client 001, 000,002 and training client 999

Answer

Answer : A

Report Error

View answer Workspace Report Error Discuss

Subject: SAP FI

10 5679
Q:

If one of the host connected to Sw-AC3 wants to send message to ip 190.0.2.5 (or any ip on a different subnet) what will be the destination MAC address ?

Answer

Answer and Explanation:


Because the destination address is on a different subnet from the switch, the packet will be forwarded to its default gateway. To verify the default gateway of this switch, use the show running-config command



From the output above, we can see that its default-gateway is 192.168.1.254. Which can be said to be a layer 3 device (router); in this case, the VLAN-R1 router. You can use the show cdp neighbor detail command verify further.



From the output above, you can confirm that the switch's default gateway is VLAN-R1 router (with the IP address of 192.168.1.254).The interface FastEthernet0/3 shows that the switch is directly connected to VLAN-R1 router through the switchport Fa0/3. To verify the MAC address associated this interface is interface, you use the show mac-address-table command:



Looking closely at the table above, you will discorver that the corresponding MAC address is 000a.b7e9.8360. Although there are some entries on port Fa0/3 with different Vlans ,but they have the same MAC address.


From the output above, you can confirm that the switch's default gateway is VLAN-R1 router (with the IP address of 192.168.1.254).The interface FastEthernet0/3 shows that the switch is directly connected to VLAN-R1 router through the switchport Fa0/3. To verify the MAC address associated this interface is interface, you use the show mac-address-table command
Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

1 5669
Q:

What metric does RIPv2 use to find the best path to a remote network?

A) Hop count B) MTU
C) Cumulative interface delay D) Load
 
Answer & Explanation Answer: A) Hop count

Explanation:

RIPv1 and RIPv2 only use the lowest hop count to determine the best path to a remote network.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 5629
Q:

What is the maximum number of triggers, can apply to a single table?

A) 8 B) 10
C) 12 D) 14
 
Answer & Explanation Answer: C) 12

Explanation:

Maximim number of triggers that can be applied to a single table is 12

Report Error

View Answer Report Error Discuss

7 5613
Q:

The function CHECK set to the parameter ABR...

A.provides the Payroll driver with data on the type of program that the schema uses.
B.ensures that Payroll is only run for the employees in a payroll area that has been released for payroll.
C.controls whether the Payroll results are updated on the database.
D.ensures that Payroll is not run for any employee.

Answer

Answer : A , B , C

Report Error

View answer Workspace Report Error Discuss

Subject: SAP HR

4 5603
Q:

Which object has to be used to avoid a change of reconciliation account in the customer's master data  ?

A) The field status of the activity B) The field status of the posting key
C) The field status group of the reconciliation account D) The field status of the customer account group d)
 
Answer & Explanation Answer: A) The field status of the activity

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: SAP FI

9 5601
Q:

What is the output after compile and run the following code ?

int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}

A) Compilation and output of "We are equal 10" B) Compilation and output of "Not equal! 10"
C) Compilation error, attempting to perform binary comparison on logical data type D) Compilation and output of "Not equal! 20"
 
Answer & Explanation Answer: B) Compilation and output of "Not equal! 10"

Explanation:

The output will be "Not equal! 10". Please note that && is logical AND operator. If first operand before (&&) is false then the other operand will not be evaluated. This illustrates that the Output +=10 calculation was never performed because processing stopped after the first operand was evaluated to be false. If you change the value of b1 to true, processing occurs as you would expect and the output would be "We are equal 20".

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Job Role: Analyst

6 5524