Q. Which of the following spans full width of screen?

  • (A) .container-fluid
  • (B) .collapse-in
  • (C) .container
  • (D) .control-label
πŸ’¬ Discuss
βœ… Correct Answer: (A) .container-fluid

Q. Which of the following changes order of the grid columns?

  • (A) .col-*-push-*
  • (B) .collapse
  • (C) .col-*-pull-*
  • (D) .col-*-offset-*
πŸ’¬ Discuss
βœ… Correct Answer: (C) .col-*-pull-*

Q. Which class is a container for responsive columns?

  • (A) .row
  • (B) .show
  • (C) .small
  • (D) .sr-only
πŸ’¬ Discuss
βœ… Correct Answer: (A) .row

Q. Which of the following creates toggleable tabs?

  • (A) .table
  • (B) .table-condensed
  • (C) .tab-pane
  • (D) .table-responsive
πŸ’¬ Discuss
βœ… Correct Answer: (C) .tab-pane
Explanation: .tab-pane is used together with .tab-content to create toggleable or dynamic tabs or dynamic pills, .table adds basic styling to a table like bottom borders, padding etc.

Q. Which of the following makes a table more compact?

  • (A) .table-bordered
  • (B) .table-condensed
  • (C) .table-responsive
  • (D) .table-hover
πŸ’¬ Discuss
βœ… Correct Answer: (B) .table-condensed

Q. Which of the following class will show blue text?

  • (A) .text-muted
  • (B) .text-warning
  • (C) .text-primary
  • (D) .text-success
πŸ’¬ Discuss
βœ… Correct Answer: (C) .text-primary

Q. Which of the following will show popup-box?

  • (A) .thumbnail
  • (B) .well
  • (C) .tooltip
  • (D) .visible-*
πŸ’¬ Discuss
βœ… Correct Answer: (C) .tooltip

Q. Which of the following indicates current page’s location within the navigational hierarchy?

  • (A) .bg-warning
  • (B) .active
  • (C) .btn
  • (D) .breadcrumb
πŸ’¬ Discuss
βœ… Correct Answer: (D) .breadcrumb
Explanation: .breadcrumb is a pagination. It indicates the current page’s location within a navigational hierarchy, .btn creates a basic button i.e. gray background and rounded corners, .bg-warnong adds the yellow background color to an element.

Q. Which of the following indicates blue background color representing something important?

  • (A) .bg-primary
  • (B) .bg-danger
  • (C) .bg-info
  • (D) .bg-success
πŸ’¬ Discuss
βœ… Correct Answer: (A) .bg-primary
Explanation: .bg-primary - blue color
.bg-danger - red color
.bg-secondary - grey color
.bg-success - green color
.bg-info - light blue color

Q. Which of the following will display red alert box?

  • (A) .alert-link
  • (B) .alert-info
  • (C) .alert
  • (D) .alert-danger
πŸ’¬ Discuss
βœ… Correct Answer: (D) .alert-danger
Explanation: .alert-danger displays red alert box. It indicates a dangerous or potentially negative action, .alert simply creates an alert message, .alert-info displays a light-blue alert box which indicates some information, .alert-link used on links inside alerts to add matching colored links.