Commonly Asked BOOTSTRAP Interview Questions and Answers for Experienced and Freshers

By Sahil Bansal | Views: 4097

Dear readers, these BOOTSTRAP Interview Questions have been outlined specially to get you familiar with the nature of questions you'll experience during your interview for the subject of BOOTSTRAP. As per my experience, great interviewers barely plan to ask any specific question during your interview, normally questions start with some essential concept of the subject, and afterward, they proceed based on advance discussion and what you reply.

   

Q.1.) What is Twitter Bootstrap?
A.1.) Bootstrap is a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. It uses HTML, CSS, and Javascript.

Q.2.) Why use Bootstrap?
A.2.) Bootstrap can be used as −

  • Mobile-first approach − Since Bootstrap 3, the framework consists of Mobile-first styles throughout the entire library instead of in separate files.
  • Browser Support − It is supported by all popular browsers.

popular browser

  • Easy to get started − With just the knowledge of HTML and CSS anyone can get started with Bootstrap. Also, the Bootstrap official site has good documentation.
  • Responsive design − Bootstrap's responsive CSS adjusts to Desktops, Tablets, and Mobiles.
  • Provides a clean and uniform solution for building an interface for developers.
  • It contains beautiful and functional built-in components which are easy to customize.
  • It also provides web-based customization.

And best of all it is open-source.

Q.3.) What does the Bootstrap package include?
A.3.) Bootstrap package includes −

  • Scaffolding − Bootstrap provides a basic structure with Grid System, link styles, background. This is covered in detail in the section Bootstrap Basic Structure
  • CSS − Bootstrap comes with features of global CSS settings, fundamental HTML elements styled and enhanced with extensible classes, and an advanced grid system. This is covered in detail in the section Bootstrap with CSS.
  • Components − Bootstrap contains over a dozen reusable components built to provide iconography, dropdowns, navigation, alerts, popovers, and much more. This is covered in detail in the section Layout Components.
  • JavaScript Plugins − Bootstrap contains over a dozen custom jQuery plugins. You can easily include them all, or one by one. This is covered in detail in the section Bootstrap Plugins.
  • Customize − You can customize Bootstrap's components, fewer variables, and jQuery plugins to get your very own version.

Q.4.) What are the Contextual classes of the table in Bootstrap?
A.4.) The Contextual classes allow you to change the background color of your table rows or individual cells.

ClassDescription

.active

Applies the hover color to a particular row or cell

.successIndicates a successful or positive action
.warningIndicates a warning that might need attention
.dangerIndicates a dangerous or potentially negative action

 

Q.5.) What is Bootstrap Grid System?
A.5.) Bootstrap includes a responsive, mobile-first fluid grid system that appropriately scales up to 12 columns as the device or viewport size increases. It includes predefined classes for easy layout options, as well as powerful mixins for generating more semantic layouts.

Q.6.) What are Bootstrap media queries?
A.6.) Media Queries in Bootstrap allow you to move, show and hide content based on viewport size.

Q.7.) What are Offset columns?
A.7.) Offsets are a useful feature for more specialized layouts. They can be used to push columns over for more spacing, for example. The .col-xs = * classes don't support offsets, but they are easily replicated by using an empty cell.

Q.8.) How can you order columns in Bootstrap?
A.8.) You can easily change the order of built-in grid columns with .col-md-push-* and .col-md-pull-* modifier classes where * range from 1 to 11.

Q.9.) How do you make images responsive?
A.9.) Bootstrap 3 allows to make the images responsive by adding a class .img-responsive to the <img> tag. This class applies max-width: 100%; and height: auto; to the image so that it scales nicely to the parent element.

Q.10.) Explain the typography and links in Bootstrap?
A.10.) Bootstrap sets a basic global display (background), typography, and link styles −
Basic Global display − Sets background-color: #fff; on the <body> element.
Typography − Uses the @font-family-base, @font-size-base, and @line-height-base attributes as the typographic base
Link styles − Sets the global link color via attribute @link-color and applies link underlines only on: hover.

Q.11.) What is Normalize in Bootstrap?
A.11.) Bootstrap uses Normalize to establish cross-browser consistency.
Normalize.css is a modern, HTML5-ready alternative to CSS resets. It is a small CSS file that provides better cross-browser consistency in the default styling of HTML elements.

Q.12.) What is Lead Body Copy?
A.12.) To add some emphasis to a paragraph, add class = "lead". This will give you a larger font size, lighter weight, and a taller line-height.

Q.13.) Explain types of lists supported by Bootstrap?
A.13.) Bootstrap supports ordered lists, unordered lists, and definition lists.

Ordered lists − An ordered list is a list that falls in some sort of sequential order and is prefaced by numbers.
Unordered lists − An unordered list is a list that doesn't have any particular order and is traditionally styled with bullets. If you do not want the bullets to appear then you can remove the styling by using the class .list-unstyled. You can also place all list items on a single line using the class .list-inline.
Definition lists − In this type of list, each list item can consist of both the <dt> and the <dd> elements. <dt> stands for definition term, and like a dictionary, this is the term (or phrase) that is being defined. Subsequently, the <dd> is the definition of the <dt>.
You can make terms and descriptions in <dl> line up side-by-side using class dl-horizontal.

Q.14.) What are glyphicons?
A.14.) Glyphicons are icon fonts which you can use in your web projects. Glyphicons Halflings are not free and require licensing, however, their creator has made them available for Bootstrap projects free of cost.

Q.15.) How do you use Glyphicons?
A.15.) To use the icons, simply use the following code just about anywhere in your code. Leave a space between the icon and text for proper padding.

<span class = "glyphicon glyphicon-search"></span>

Q.16.) What is a Modal Plugin?
A.16.) A modal is a child window that is layered over its parent window. Typically, the purpose is to display content from a separate source that can have some interaction without leaving the parent window. Child windows can provide information, interaction, or more.

Q.17.) How do you use the Dropdown plugin?
A.17.) You can toggle the dropdown plugin's hidden content −

  • Via data attributes − Add data-toggle = "dropdown" to a link or button to toggle a dropdown as shown below −

<div class = "dropdown">
   <a data-toggle = "dropdown" href = "#">Dropdown trigger</a>
   <ul class = "dropdown-menu" role = "menu" aria-labelledby = "dLabel">
    ...
   </ul>
</div>

  • If you need to keep links intact (which is useful if the browser is not enabling JavaScript), use the data-target attribute instead of href="#"

<div class = "dropdown">
   <a id = "dLabel" role = "button" data-toggle = "dropdown" data-target = "#" href = "/page.html">
      Dropdown 
      <span class = "caret"></span>
   </a>

   <ul class = "dropdown-menu" role = "menu" aria-labelledby = "dLabel">
      ...
   </ul>
</div>

  • Via JavaScript − To call the dropdown toggle via JavaScript, use the following method −

$('.dropdown-toggle').dropdown()

Q.18.) What is Bootstrap carousel?
A.18.) The Bootstrap carousel is a flexible, responsive way to add a slider to your site. In addition to being responsive, the content is flexible enough to allow images, iframes, videos, or just about any type of content that you might want.

Q.19.) What is a button group?
A.19.) Button groups allow multiple buttons to be stacked together on a single line. This is useful when you want to place items like alignment buttons together.

Q.20.) Which class is used for the basic button group?
A.20.) .btn-group class is used for a basic button group. Wrap a series of buttons with class .btn in .btn-group.

Q.21.) Which class is used to draw a toolbar of buttons?
A.21.) .btn-toolbar helps to combine sets of <div class = "btn-group"> into a <div class = "btn-toolbar"> for more complex components.

Q.22.) Which classes can be applied to the button group instead of resizing each button?
A.22.) .btn-group-lg, .btn-group-sm, .btn-group-xs classes can be applied to button group instead of resizing each button.

Q.23.) Which class makes a set of buttons appear vertically stacked rather than horizontally?
A.23.) .btn-group-vertical class makes a set of buttons appear vertically stacked rather than horizontally.

Q.24.) What are input groups?
A.24.) Input groups are extended Form Controls. Using input groups you can easily prepend and append text or buttons to the text-based inputs.
By adding prepended and appended content to an input field, you can add common elements to the user's input. For example, you can add the dollar symbol, the @ for a Twitter username, or anything else that might be common for your application interface.
To prepend or append elements to a .form-control −

  • Wrap it in a <div> with class .input-group
  • As a next step, within that same <div> , place your extra content inside a <span> with class .input-group-addon.
  • Now place this <span> either before or after the <input> element.

Q.25.) How will you create a tabbed navigation menu?
A.25.) To create a tabbed navigation menu −

  • Start with a basic unordered list with the base class of .nav.
  • Add class .nav-tabs.

Q.26.) How will you create a pills navigation menu?
A.26.) To create a pills navigation menu −

  • Start with a basic unordered list with the base class of .nav.
  • Add class .nav-pills.

Q.27.) How will you create a vertical pills navigation menu?
A.27.) You can stack the pills vertically using the class .nav-stacked along with the classes: .nav, .nav-pills.

Q.28.) What is the bootstrap navbar?
A.28.) The navbar is one of the prominent features of Bootstrap sites. Navbars are responsive 'meta' components that serve as navigation headers for your application or site. Navbars collapse in mobile views and become horizontal as the available viewport width increases. At its core, the navbar includes styling for site names and basic navigation.

Q.29.) How to create a navbar in bootstrap?
A.29.) To create a default navbar −

  • Add the classes .navbar, .navbar-default to the <nav> tag.
  • Add role = "navigation" to the above element, to help with accessibility.
  • Add a header class .navbar-header to the <div> element. Include an <a> element with class navbar-brand. This will give the text a slightly larger size.
  • To add links to the navbar, simply add an unordered list with the classes of .nav, .navbar-nav.

Q.30.) What is a bootstrap breadcrumb?
A.30.) Breadcrumbs are a great way to show hierarchy-based information for a site. In the case of blogs, breadcrumbs can show the dates of publishing, categories, or tags. They indicate the current page's location within a navigational hierarchy.
A breadcrumb in Bootstrap is simply an unordered list with a class of .breadcrumb. The separator is automatically added by CSS (bootstrap.min.css).

Q.31.) Which class is used for basic pagination?
A.31.) .pagination class is used to add the pagination on a page.

Q.32.) How will you customize links of pagination?
A.32.) You can customize links by using .disabled for unclickable links and .active to indicate the current page.

Q.33.) What are bootstrap labels?
A.33.) Bootstrap labels are great for offering counts, tips, or other markups for pages. Use class .label to display labels.

Q.34.) What are bootstrap badges?
A.34.) Badges are similar to labels; the primary difference is that the corners are more rounded. Badges are mainly used to highlight new or unread items. To use badges just add <span class = "badge"> to links, Bootstrap navs, and more.

Q.35.) What is Bootstrap Jumbotron?
A.35.) As the name suggests this component can optionally increase the size of headings and add a lot of margin for landing page content. To use the Jumbotron −

  • Create a container <div> with the class of .jumbotron.
  • In addition to a larger <h1>, the font-weight is reduced to 200px.

Q.36.) What is the Bootstrap page header?
A.36.) The page header is a nice little feature to add appropriate spacing around the headings on a page. This is particularly helpful on a web page where you may have several post titles and need a way to add distinction to each of them. To use a page header, wrap your heading in a <div> with a class of .page-header.

Q.37.) How to create thumbnails using Bootstrap?
A.37.) To create thumbnails using Bootstrap −

  • Add a <a> tag with the class of .thumbnail around an image.
  • This adds four pixels of padding and a gray border.
  • On hover, an animated glow outlines the image.

Q.38.) How to customize thumbnails using Bootstrap?
A.38.) It's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails. Follow the steps below −

  • Change the <a> tag that has a class of .thumbnail to a <div>.
  • Inside of that <div>, you can add anything you need. As this is a <div>, we can use the default span-based naming convention for sizing.
  • If you want to group multiple images, place them in an unordered list, and each list item will be floated to the left.

Q.39.) What are bootstrap alerts?
A.39.) Bootstrap Alerts provide a way to style messages to the user. They provide contextual feedback messages for typical user actions.
You can add an optional close icon to alert.

Q.40.) How will you create a bootstrap alert?
A.40.) You can add a basic alert by creating a wrapper <div> and adding a class of .alert and one of the four contextual classes (e.g., .alert-success, .alert-info, .alert-warning, .alert-danger).

Q.41.) How will you create a Bootstrap Dismissal Alert?
A.41.) To build a dismissal alert −

  • Add a basic alert by creating a wrapper <div> and adding a class of .alert and one of the four contextual classes (e.g., .alert-success, .alert-info, .alert-warning, .alert-danger).
  • Also add optional .alert-dismissable to the above <div> class.
  • Add a close button.
  • Use the <button> element with the data-dismiss = "alert" data attribute.

Q.42.) How will you create a progress bar using bootstrap?
A.42.) 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.
  • Add a style attribute with the width expressed as a percentage. Say, for example, style = "60%"; indicates that the progress bar was at 60%.

Q.43.) How will you create an alternate progress bar using bootstrap?
A.43.) 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.
  • Add a style attribute with the width expressed as a percentage. Say, for example, style = "60%"; indicates that the progress bar was at 60%.

Q.44.) How will you create a striped progress bar using bootstrap?
A.44.) To create a striped progress bar −

  • Add a <div> with a class of .progress and .progress-striped.
  • 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.
  • Add a style attribute with the width expressed as a percentage. Say, for example, style = "60%"; indicates that the progress bar was at 60%.

Q.45.) How will you create an animated progress bar using bootstrap?
A.45.) To create an animated progress bar −

  • Add a <div> with a class of .progress and .progress-striped. Also add class .active to .progress-striped.
  • Next, inside the above <div>, add an empty <div> with a class of .progress-bar.
  • Add a style attribute with the width expressed as a percentage. Say, for example, style = "60%"; indicates that the progress bar was at 60%.

Q.46.) How will you create a stacked progress bar using bootstrap?
A.46.) You can even stack multiple progress bars. Place the multiple progress bars into the same .progress to stack them.

Q.47.) What are bootstrap media objects?
A.47.) These are abstract object styles for building various types of components (like blog comments, Tweets, etc.) that feature a left-aligned or right-aligned image alongside the textual content. The goal of the media object is to make the code for developing these blocks of information drastically shorter.
The goal of media objects (light markup, easy extendability) is achieved by applying classes to some of the simple markups.

Q.48.) What is the purpose of .media class in bootstrap?
A.48.) This class allows floating a media object (images, video, and audio) to the left or right of a content block.

Q.49.) What is the purpose of the .media-list class in bootstrap?
A.49.) If you are preparing a list where the items will be part of an unordered list, use a class. useful for comment threads or article lists.

Q.50.) What are bootstrap panels?
A.50.) Panel components are used when you want to put your DOM component in a box. To get a basic panel, just add class .panel to the <div> element. Also, add class .panel-default to this element.

Q.51.) How will you create a bootstrap panel with a heading?
A.51.) Here are two ways to add panel heading −

  • Use the .panel-heading class to easily add a heading container to your panel.
  • Use any <h1>-<h6> with a .panel-title class to add a pre-styled heading.

Q.52.) How will you create a bootstrap panel with a footer?
A.52.) You can add footers to panels, by wrapping buttons or secondary text in a <div> containing class .panel-footer.

Q.53.) What contextual classes are available to style the panels?
A.53.) Use contextual state classes such as, panel-primary, panel-success, panel-info, panel-warning, panel-danger, to make a panel more meaningful to a particular context.

Q.54.) Can you put a table within the bootstrap panel?
A.54.) Yes! To get a non-bordered table within a panel, use the class .table within the panel. Suppose there is a <div> containing .panel-body, we add an extra border to the top of the table for separation. If there is no <div> containing .panel-body, then the component moves from panel header to table without interruption.

Q.55.) Can you put a list group within the bootstrap panel?
A.55.) Yes! You can include list groups within any panel. Create a panel by adding class .panel to the <div> element. Also, add class .panel-default to this element. Now within this panel include your list groups.

Q.56.) What is bootstrap well?
A.56.) A well is a container in <div> that causes the content to appear sunken or an inset effect on the page. To create a well, simply wrap the content that you would like to appear in the well with a <div> containing the class of .well.

Q.57.) What is the Scrollspy plugin
A.57.) The Scrollspy (auto-updating nav) plugin allows you to target sections of the page based on the scroll position. In its basic implementation, as you scroll, you can add .active classes to the navbar based on the scroll position.

Q.58.) What is the affix plugin?
A.58.) The affix plugin allows a <div> to become affixed to a location on the page. You can also toggle its pinning on and off using this plugin. A common example of this is social icons. They will start in a location, but as the page hits a certain mark, the <div> will be locked in place and will stop scrolling with the rest of the page.

Q.59.) Show a basic grid structure in Bootstrap.
A.59.) Following is basic structure of Bootstrap grid −

<div class = "container">
   <div class = "row">
      <div class = "col-*-*"></div>
      <div class = "col-*-*"></div>      
   </div>

   <div class = "row">...</div>
</div>
<div class = "container">....

Q.60.) What is a transition plugin?
A.60.) The transition plugin provides simple transition effects such as Sliding or fading in modals.

Also Read:

Commonly Asked AngularJS Interview Questions and Answers for Experienced and Freshers

Top 30 Android MCQ Questions and Answers with Explanation

Practice our complete set of quantitative and English

Thank you for your feedback!