Which protocol is used to encrypt management sessions with network devices?

  • SNMP
  • HTTPS
  • Telnet
  • ICMP
HTTPS (Hypertext Transfer Protocol Secure) is the protocol used to encrypt management sessions with network devices, ensuring secure communication for managing devices.

A network administrator notices that their AS is receiving suboptimal BGP routes. What BGP attribute should they adjust to influence incoming traffic paths?

  • Local Preference
  • AS Path
  • MED (Multi-Exit Discriminator)
  • Weight
The Local Preference attribute in BGP is adjusted to influence incoming traffic paths. It is used within the same AS to set preferences for routes.

In a network with multiple switches, how does the Spanning Tree Protocol (STP) determine the root bridge?

  • Highest MAC address
  • Highest bridge priority
  • Lowest MAC address
  • Lowest bridge priority
The Spanning Tree Protocol (STP) determines the root bridge based on the lowest bridge priority. If priorities are the same, it uses the lowest MAC address as a tiebreaker.

In a multi-homed network environment, what BGP strategy could be employed to avoid being a transit AS for other networks?

  • Weight
  • Local Preference
  • AS Path Prepending
  • Route Reflectors
AS Path Prepending is a BGP strategy in a multi-homed network to avoid being a transit AS for other networks. It adds the AS number multiple times to make the path less favorable.

How does EIGRP handle load balancing over unequal cost paths?

  • Achieves load balancing by always selecting the path with the lowest reported distance.
  • Employs a round-robin approach for load balancing over unequal cost paths.
  • Supports load balancing only on paths with equal costs, and unequal-cost paths are ignored.
  • Utilizes equal-cost load balancing by default, and unequal-cost load balancing can be achieved using the "variance" command.
EIGRP can perform equal-cost load balancing by default and allows unequal-cost load balancing through the use of the "variance" command.

Explain how to create a responsive image gallery using Bootstrap's card components.

  • Apply the card class to each image, use the card-deck or card-columns class for the container, and set image sizes with the img-fluid class for responsiveness.
  • Utilize the image-gallery class for the container and apply responsive-card class to each card element.
  • Use gallery-card class for each image and apply responsive-gallery class for the container.
  • Apply img-responsive class for each image, and use gallery-container for the overall responsiveness.
To create a responsive image gallery with Bootstrap's card components, apply the card class to each image, use card-deck or card-columns for the container, and set image sizes with the img-fluid class for responsiveness. This ensures a visually appealing and adaptable image gallery.

What is the jQuery method used for programmatically opening a Bootstrap dropdown?

  • dropdown('open')
  • toggle('open')
  • dropdown('show')
  • show('dropdown')
The correct jQuery method for programmatically opening a Bootstrap dropdown is dropdown('show'). This method triggers the display of the dropdown, ensuring a consistent and controlled user interface.

For performance optimization, customizing Bootstrap to include only __________ components can reduce file size.

  • Grid
  • Essential
  • Core
  • Necessary
Customizing Bootstrap to include only the essential components can reduce the file size significantly. By excluding unnecessary components, you reduce the payload sent to the client, leading to faster load times and improved performance. This is particularly important for projects where minimizing file size is a priority.

Bootstrap’s navbar height can be changed by modifying the ___ variable.

  • navbar-height
  • nav-height
  • height-navbar
  • navbar-custom-height
The variable navbar-height can be modified to change the height of Bootstrap's navbar. Adjusting this variable allows for customization of the navbar's appearance, including its height.

What role does Bootstrap's modal component play in enhancing user experience on e-commerce sites?

  • Modals are primarily used for displaying images in a carousel.
  • Modals help in organizing navigation menus.
  • Modals allow for the presentation of additional content without navigating away from the page.
  • Modals are used exclusively for form submissions.
Bootstrap's modal component enhances user experience on e-commerce sites by allowing the presentation of additional content without requiring users to navigate away from the current page. This facilitates the display of detailed product information, improving overall usability.