Answer: a. 50%
Explanation: In Bootstrap, the .img-circle class shapes an image to a circle.
Answer: a. .media
Explanation: Bootstrap provides an easy way to align media objects (like images or videos) to the left or to the right of some content. The .media class allows to float media object to the left or right of a content block.
Answer: e. All of the above
Explanation: A progress bars can be used for showing the progress of a task or action to the users.
The contextual classes that can be used with progress bars are:
Answer: a. True
Explanation: In Bootstraps, to create a basic list group, use an <ul> element with class .list-group, and <li> elements with class .list-group-item.
Example:
<ul class="list-group">
<li class="list-group-item">First </li>
<li class="list-group-item">Second </li>
</ul>
Answer: b. .nav, .nav-pills, .nav-stacked
Explanation: Pills are created with <ul class="nav nav-pills">. Also mark the current page with <li class="active">. It can also be displayed vertically after adding the .nav-stacked class.
Answer: a. True
Explanation: Bootstrap provides the Scrollspy plugin that is used to automatically update links in a navigation list based on scroll position.
Answer: e. All of the above
Explanation: In Bootstrap, a panel provides the bordered box with some padding around its content. To color the panel, use contextual classes (.panel-default, .panel-primary, .panel-success, .panel-info, .panel-warning, or .panel-danger).