Following quiz provides Multiple Choice Questions (MCQs) related to Bootstrap Framework. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.
Q 1 - Which of the following is correct about Bootstrap Grid System?
A - Rows must be placed within a .container class for proper alignment and padding.
All of the above options are correct.
Q 2 - Which of the following class indicates a dangerous or potentially negative action?
.danger − Indicates a dangerous or potentially negative action.
Q 3 - Which of the following bootstrap style of button indicates caution should be taken with this action?
.btn-warning − Indicates caution should be taken with this action.
Q 4 - Which of the following bootstrap style helps to combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components?
.btn-toolbar − This helps to combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.
Q 5 - Which of the following bootstrap styles are used to add a dropdown to a tab?
B - .nav, .nav-tabs, dropdown-.menu
To add dropdowns to tab: Start with a basic unordered list with the base class of .nav; Add the class .nav-tabs.; Now add an unordered list with a .dropdown-menu class.
Q 6 - Which of the following bootstrap style is used to add standard links to .navbar?
If you want to use the standard links that are not within the regular .navbar navigation component, then use the class .navbar-link to add proper colors for the default and inverse .navbar options.
Q 7 - Which of the following bootstrap styles can be used to create progress bars with different styles?
A - .progress-bar-success, .progress-bar-info, .progress-bar-warning, .progress-bar-danger
To create a progress bar with different styles: Add a <div> with a class of .progress. Next, inside the above <div>, add an empty <div> with a class of .progress-bar and class progress-bar-* where * could be success, info, warning, danger.
Q 8 - Which of the following is correct about bootstrap media objects?
Both of the above options are correct.
Q 9 - Which of the following is correct about dropdown Plugin?
A - You can toggle the dropdown plugin's hidden content via data attributes.
B - You can toggle the dropdown plugin's hidden content via javascript.
Both of the above options are correct.
Q 10 - Which of the following is correct about data-trigger Data attribute of Tooltip Plugin?
A - Sets the default title value if the title attribute isn't present.
B - Defines how the tooltip is triggered.
C - Defines default content value if data-content attribute isn't present
data-trigger − Defines how the tooltip is triggered: click| hover | focus | manual. You may pass multiple triggers; separate them with a space.