Free Juniper JN0-105 Exam Actual Questions

The questions for JN0-105 were last updated On Nov 16, 2024

Question No. 1

What are two physical interface properties? (Choose two.)

Show Answer Hide Answer
Correct Answer: A, D

Two physical interface properties in Junos OS include the MAC address (A) and the Maximum Transmission Unit (MTU) size (D). The MAC address is a hardware identifier for the network interface, while the MTU size determines the largest packet size that the interface can transmit without needing to fragment the packet.


Question No. 2

Which type of device uses the destination IP address to forward packets?

Show Answer Hide Answer
Correct Answer: A

A Layer 3 router forwards packets based on the destination IP address. It operates at the network layer of the OSI model and uses routing tables to determine the best path for packet delivery. Unlike Layer 2 switches, which forward packets based on MAC addresses, routers handle logical addressing, making them crucial for inter-network communication.


Junos OS Documentation on Routing Fundamentals.

Question No. 3

You have configured some interfaces on a Junos device; however, you have not yet committed the configuration.

What happens if you issue the rollback 0 command in this scenario?

Show Answer Hide Answer
Correct Answer: D

Issuing the rollback 0 command in Junos OS will discard any uncommitted changes and revert to the last committed configuration. This command effectively cancels any configuration changes that have been made but not yet committed, ensuring that the device returns to its previous stable state.


'rollback 0 ...................................(rolls back the changes just made )' from Useful Juniper Commands.txt.

Juniper official documentation: Rolling Back a Configuration.

Question No. 4

Which command modifier would you use to see all possible completions for a specific command?

Show Answer Hide Answer
Correct Answer: C

In Junos OS, the ? command modifier is used to display all possible completions for a specific command. This helps users understand the available options and syntax for a command they are trying to use.


'Use the ? command modifier to display all possible completions for a specific command.'

Question No. 5

You are asked to convert the number 7 from decimal to binary.

Which number is correct in this scenario?

Show Answer Hide Answer
Correct Answer: C

To convert the decimal number 7 to binary, the correct representation is 00000111 (C). In binary, 7 is represented as 1+2+4 (2^0 + 2^1 + 2^2), which corresponds to the last three digits being 1 in the binary format, with leading zeros added for clarity.