InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
What Is Bootstrap Page Header? |
|
Answer» 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. 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. |
|
| 2. |
What Is Bootstrap Jumbotron? |
|
Answer» As the name SUGGEST this component can optionally increase the size of headings and add a lot of margin for landing PAGE content. To use the Jumbotron: As the name suggest this component can optionally increase the size of headings and add a lot of margin for landing page content. To use the Jumbotron: |
|
| 3. |
What Are Bootstrap Badges? |
|
Answer» 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. 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. |
|
| 4. |
What Are Bootstrap Labels? |
|
Answer» BOOTSTRAP LABELS are GREAT for offering counts, tips, or other markup for pages. USE CLASS .label to display labels. Bootstrap labels are great for offering counts, tips, or other markup for pages. Use class .label to display labels. |
|
| 5. |
How Will You Customize Links Of Pagination? |
|
Answer» You can CUSTOMIZE LINKS by USING .disabled for unclickable links and .active to indicate the CURRENT page. You can customize links by using .disabled for unclickable links and .active to indicate the current page. |
|
| 6. |
Which Class Is Used For Basic Pagination? |
|
Answer» .PAGINATION CLASS is USED to ADD the pagination on a PAGE. .pagination class is used to add the pagination on a page. |
|
| 7. |
What Is Bootstrap Breadcrumb? |
|
Answer» 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. 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. |
|
| 8. |
How To Create A Navbar In Bootstrap? |
|
Answer» To CREATE a default navbar:
To create a default navbar: |
|
| 9. |
What Is Affix Plugin? |
|
Answer» The affix plugin allows a to become affixed to a LOCATION on the page. You can also toggle it's pinning on and off using this plugin. A common example of this are social icons. They will start in a location, but as the page hits a certain mark, the will be LOCKED in PLACE and will STOP scrolling with the REST of the page. The affix plugin allows a to become affixed to a location on the page. You can also toggle it's pinning on and off using this plugin. A common example of this are social icons. They will start in a location, but as the page hits a certain mark, the will be locked in place and will stop scrolling with the rest of the page. |
|
| 10. |
What Is Scrollspy Plugin? |
|
Answer» 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. 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. |
|
| 11. |
What Is Bootstrap Well? |
|
Answer» A WELL is a container in 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 containing the class of .well. A well is a container in 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 containing the class of .well. |
|
| 12. |
Can You Put A Listgroup Within Bootstrap Panel? |
|
Answer» Yes You can include LIST groups within any panel. CREATE a panel by ADDING CLASS .panel to the element. ALSO add class .panel-default to this element. Now within this panel include your list groups. Yes You can include list groups within any panel. Create a panel by adding class .panel to the element. Also add class .panel-default to this element. Now within this panel include your list groups. |
|
| 13. |
Can You Put A Table Within Bootstrap Panel? |
|
Answer» 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. 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. |
|
| 14. |
What Contextual Classes Are Available To Style The Panels? |
|
Answer» 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. 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. |
|
| 15. |
How Will You Create A Bootstrap Panel With Footer? |
|
Answer» You can add footers to panels, by wrapping BUTTONS or SECONDARY TEXT in a <DIV> containing CLASS .panel-footer. You can add footers to panels, by wrapping buttons or secondary text in a <div> containing class .panel-footer. |
|
| 16. |
Explain The Typography And Links In Bootstrap? |
|
Answer» Bootstrap sets a basic GLOBAL DISPLAY (background), typography, and link styles: Bootstrap sets a basic global display (background), typography, and link styles: |
|
| 17. |
How Do You Make Images Responsive? |
|
Answer» 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. 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. |
|
| 18. |
How Can You Order Columns In Bootstrap? |
|
Answer» 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. 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. |
|
| 19. |
What Are Offset Columns? |
|
Answer» 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. 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. |
|
| 20. |
What Are Bootstrap Media Queries? |
|
Answer» Media QUERIES in Bootstrap ALLOW you to MOVE, show and hide content based on viewport size. Media Queries in Bootstrap allow you to move, show and hide content based on viewport size. |
|
| 21. |
What Is Bootstrap Grid System? |
|
Answer» 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. 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. |
|
| 22. |
What Does Bootstrap Package Includes? |
|
Answer» Bootstrap package includes:
Bootstrap package includes: |
|
| 23. |
What Is Twitter Bootstrap? |
|
Answer» Bootstrap is a sleek, INTUITIVE, and powerful mobile first front-end framework for faster and EASIER web DEVELOPMENT. It uses HTML, CSS and JAVASCRIPT. Bootstrap is a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development. It uses HTML, CSS and Javascript. |
|
| 24. |
Which Classes Can Be Applied To Button Group Instead Of Resizing Each Button? |
|
Answer» .btn-GROUP-lg, .btn-group-sm, .btn-group-xs classes can be APPLIED to BUTTON group instead of RESIZING each button. .btn-group-lg, .btn-group-sm, .btn-group-xs classes can be applied to button group instead of resizing each button. |
|
| 25. |
Which Class Is Used To Draw A Toolbar Of Buttons? |
|
Answer» .btn-toolbar HELPS to combine SETS of <div class = "btn-group"> into a <div class = "btn-toolbar"> for more COMPLEX COMPONENTS. .btn-toolbar helps to combine sets of <div class = "btn-group"> into a <div class = "btn-toolbar"> for more complex components. |
|
| 26. |
Which Class Is Used For Basic Button Group? |
|
Answer» .btn-group class is USED for a BASIC BUTTON group. Wrap a series of BUTTONS with class .btn in .btn-group. .btn-group class is used for a basic button group. Wrap a series of buttons with class .btn in .btn-group. |
|
| 27. |
What Is Button Group? |
|
Answer» 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 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 |
|
| 28. |
What Is Bootstrap Carousel? |
|
Answer» 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. 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. |
|
| 29. |
What Is A Modal Plugin? |
|
Answer» 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. 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. |
|
| 30. |
What Is A Transition Plugin? |
|
Answer» The transition PLUGIN PROVIDES simple transition EFFECTS such as SLIDING or fading in MODALS. The transition plugin provides simple transition effects such as Sliding or fading in modals. |
|
| 31. |
What Are Glyphicons? |
|
Answer» 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. 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. |
|
| 32. |
Explain Types Of Lists Supported By Bootstrap? |
|
Answer» 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. 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. |
|
| 33. |
What Is Lead Body Copy? |
|
Answer» To add some emphasis to a paragraph, add class = "lead". This will give you larger font size, LIGHTER WEIGHT, and a taller LINE HEIGHT. To add some emphasis to a paragraph, add class = "lead". This will give you larger font size, lighter weight, and a taller line height. |
|
| 34. |
What Is Normalize In Bootstrap? |
|
Answer» 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. 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. |
|
| 35. |
Describe Bootstrap Panel? |
|
Answer» Whenever there is a NEED of putting the contents in a bordered box with some padding around, panel components are used. They can be created with the .panel class and content inside the panel has a .panel-body class. For CREATING a BASIC panel, add class .panel to the <div> element and add class .panel-default to this element. Whenever there is a need of putting the contents in a bordered box with some padding around, panel components are used. They can be created with the .panel class and content inside the panel has a .panel-body class. For creating a basic panel, add class .panel to the <div> element and add class .panel-default to this element. |
|
| 36. |
How Would You Define Bootstrap Pagination? |
|
Answer» Whenever a WEB site has lots of pages, we need to do pagination to each page. In Bootstrap, we can CREATE a BASIC pagination by adding the .pagination CLASS to an <ul> element. Whenever a web site has lots of pages, we need to do pagination to each page. In Bootstrap, we can create a basic pagination by adding the .pagination class to an <ul> element. |
|
| 37. |
Would You Tell Me Something About Glyphicons And How Are They Written In Our Code? |
|
Answer» Glyphicons are symbols and ICON fonts which are created for providing simplicity and easy orientation in your WEB projects. Glyphicons Halflings are normally not available for free use and they require licensing but their creator has made them cost free for Bootstrap projects. Bootstrap includes more than 250 GLYPHS from the Glyphicon Halflings set. To use the icons, we need to WRITE <span class = "glyphicon glyphicon-search"></span> code anywhere in our PROGRAM. Glyphicons are symbols and icon fonts which are created for providing simplicity and easy orientation in your web projects. Glyphicons Halflings are normally not available for free use and they require licensing but their creator has made them cost free for Bootstrap projects. Bootstrap includes more than 250 glyphs from the Glyphicon Halflings set. To use the icons, we need to write <span class = "glyphicon glyphicon-search"></span> code anywhere in our program. |
|
| 38. |
What Do You Understand By A List Group In Bootstrap And Its Use? |
|
Answer» LIST group is a powerful and FLEXIBLE component to display simple and complex elements together with custom contents. A simple list group is CREATED using class .list-group to address the list with usage of <ul> element, and class .list-group-item to address individual item with usage of <LI> elements. List group is a powerful and flexible component to display simple and complex elements together with custom contents. A simple list group is created using class .list-group to address the list with usage of <ul> element, and class .list-group-item to address individual item with usage of <li> elements. |
|
| 39. |
Would You Differentiate Between Fluid Layout & Responsive Layout? |
|
Answer» Yes, sure. The MAIN difference is that Fluid Layout are built using widths percentages and they are BASED on proportionally laying out the website so ELEMENTS take up the same percent of space on different screen sizes. RESPONSIVE Layout is built on a fluid grid and here CSS Media QUERIES are used to present different layouts based on different screen sizes. Yes, sure. The main difference is that Fluid Layout are built using widths percentages and they are based on proportionally laying out the website so elements take up the same percent of space on different screen sizes. Responsive Layout is built on a fluid grid and here CSS Media Queries are used to present different layouts based on different screen sizes. |
|
| 40. |
Could You Explain Me About Responsive Layout? |
|
Answer» RESPONSIVE layout's design AUTOMATIC adjusts to the browser size but when resizing, the number of COLUMNS changes according to the space available. Responsive layout's design automatic adjusts to the browser size but when resizing, the number of columns changes according to the space available. |
|
| 41. |
Tell Me About Different Layouts Available In Bootstrap? |
|
Answer» Two layouts are available in Bootstrap-
Two layouts are available in Bootstrap- |
|
| 42. |
Which Components Are There In Bootstrap? |
|
Answer» Main components of Bootstrap are- REUSABLE Components : It contains plenty of reusable layout components CSS : It contains lots of CSS files jQuery & JavaScript Plugins: It COMPRISES MANY jQuery and JavaScript plugins Scaffolding : It comes with a basic structure with link styles, grid SYSTEM and background Customization: You have a freedom to CUSTOMIZE components as per your wish Main components of Bootstrap are- Reusable Components : It contains plenty of reusable layout components CSS : It contains lots of CSS files jQuery & JavaScript Plugins: It comprises many jQuery and JavaScript plugins Scaffolding : It comes with a basic structure with link styles, grid system and background Customization: You have a freedom to customize components as per your wish |
|
| 43. |
Who Developed The Bootstrap? |
|
Answer» MARK OTTO and JACOB THORNTON at TWITTER Mark Otto and Jacob Thornton at Twitter |
|
| 44. |
Why Would You Use Bootstrap? Tell Me About Its Benefits? |
|
Answer» The major benefits of using Bootstrap are-
The major benefits of using Bootstrap are- |
|
| 45. |
What Do You Understand By Bootstrap? |
|
Answer» Bootstrap, originally named Twitter Blueprint, was developed by Mark Otto and Jacob Thornton at Twitter, is free and OPEN SOURCE front end Javascript web framework for designing the rich, sleek, intuitive web applications with minimal effort. This framework is more useful for building mobile based web applications. It USES HTML, Javascript and CSS based DESIGN TEMPLATES and other interface components. It also has optional JavaScript extensions. Bootstrap, originally named Twitter Blueprint, was developed by Mark Otto and Jacob Thornton at Twitter, is free and open source front end Javascript web framework for designing the rich, sleek, intuitive web applications with minimal effort. This framework is more useful for building mobile based web applications. It uses HTML, Javascript and CSS based design templates and other interface components. It also has optional JavaScript extensions. |
|