- Bootstrap Tutorial
- Bootstrap - Home
- Bootstrap - Overview
- Bootstrap - Environment Setup
- Bootstrap with CSS
- Bootstrap - Grid System
- Bootstrap - CSS Overview
- Bootstrap - Typography
- Bootstrap - Code
- Bootstrap - Tables
- Bootstrap - Forms
- Bootstrap - Buttons
- Bootstrap - Images
- Bootstrap - Helper Classes
- Bootstrap - Responsive utilities
- Bootstrap Layout Components
- Bootstrap - Glyphicons
- Bootstrap - Dropdowns
- Bootstrap - Button Groups
- Bootstrap - Button Dropdowns
- Bootstrap - Input Groups
- Bootstrap - Navigation Elements
- Bootstrap - Navbar
- Bootstrap - Breadcrumb
- Bootstrap - Pagination
- Bootstrap - Labels
- Bootstrap - Badges
- Bootstrap - Jumbotron
- Bootstrap - Page Header
- Bootstrap - Thumbnails
- Bootstrap - Alerts
- Bootstrap - Progress Bars
- Bootstrap - Media Object
- Bootstrap - List Group
- Bootstrap - Panels
- Bootstrap - Wells
- Bootstrap Plugins
- Bootstrap - Plugins Overview
- Bootstrap - Transition Plugin
- Bootstrap - Modal Plugin
- Bootstrap - Dropdown Plugin
- Bootstrap - Scrollspy Plugin
- Bootstrap - Tab Plugin
- Bootstrap - Tooltip Plugin
- Bootstrap - Popover Plugin
- Bootstrap - Alert Plugin
- Bootstrap - Button Plugin
- Bootstrap - Collapse Plugin
- Bootstrap - Carousel Plugin
- Bootstrap - Affix Plugin
- Bootstrap Demos
- Bootstrap - Grid Demo
- Bootstrap - Table Demo
- Bootstrap - Form Demo
- Bootstrap - Buttons Demo
- Bootstrap - Images Demo
- Bootstrap - Responsive Demo
- Bootstrap - Navigation Demo
- Bootstrap - Blog Demo
- Bootstrap - Material Design Demo
- Bootstrap - Slider Demo
- Bootstrap - Time line Demo
- Bootstrap - Alert Demo
- Bootstrap - Admin Interface Demo
- Bootstrap - Ajax Demo
- Bootstrap - Tabbed slider Demo
- Bootstrap - Caption Demo
- Bootstrap - Map Demo
- Bootstrap - Calendar Demo
- Bootstrap - Social Icons Demo
- Bootstrap - Icons Demo
- Bootstrap - featured Demo
- Bootstrap Useful Resources
- Bootstrap - Questions and Answers
- Bootstrap - Quick Guide
- Bootstrap - Useful Resources
- Bootstrap - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bootstrap - Online Quiz
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 Responsive Images?
Answer : C
Explanation
Both of the above options are correct.
Q 2 - Which of the following is the default layout of a bootstrap form?
Answer : A
Explanation
Vertical or Basic Form: The basic form structure which comes with Bootstrap.
Q 3 - Which of the following class is required to be added to form tag to make it horizontal?
Answer : B
Explanation
To create a form that uses the horizontal layout, Add a class of .form-horizontal to the parent
Q 4 - Which of the following bootstrap style of image gives the image rounded corners?
Answer : A
Explanation
.img-rounded − adds border-radius:6px to give the image rounded corners.
Q 5 - Which of the following bootstrap style is used to add button to .navbar?
Answer : A
Explanation
You can add buttons using class .navbar-.btn to <button> elements not residing in a <form> to vertically center them in the .navbar. ..navbar-.btn can be used on <a> and <input> elements.
Q 6 - Which of the following bootstrap style is to be used if you want to create an inverted .navbar with a black background and with white text?
Answer : B
Explanation
To create an inverted .navbar with a black background and with white text, simply add the .navbar-inverse class to the ..navbar class.
Q 7 - Which of the following bootstrap styles can be used to create a default progress bar?
Answer : A
Explanation
To create a basic progress bar: Add a <div> with a class of .progress. Next, inside the above <div>, add an empty <div> with a class of .progress-bar.
Q 8 - Which of the following is correct about bootstrap media objects?
Answer : C
Explanation
Both of the above options are correct.
Q 9 - Which of the following is correct about data-animation Data attribute of Tooltip Plugin?
A - Applies a CSS fade transition to the tooltip.
C - Specifies how to position the tooltip (i.e., top|bottom|left|right|auto).
Answer : A
Explanation
data-animation − Applies a CSS fade transition to the tooltip.
Q 10 - Which of the following is correct about data-html Data attribute of Popover Plugin?
A - Applies a CSS fade transition to the popover.
C - Specifies how to position the popover (i.e., top|bottom|left|right|auto).
Answer : B
Explanation
data-html − Inserts HTML into the popover. If false, jQuery's text method will be used to insert content into the dom. Use text if you're worried about XSS attacks.