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. |
Explain bootstrap theme? |
| Answer» | |
| 2. |
Can we use bootstrap without jQuery? |
| Answer» | |
| 3. |
Can you use bootstrap With react js? |
| Answer» | |
| 4. |
How we can create a progress bar using bootstrap? |
|
Answer» Progress bars are USED to show the progress of a particular task or the specific action to the user. Here is the example of creating a progress bar with the VERTICAL gradient:- Example<div class="progress"> <div class="progress-bar" STYLE="width: 50%;"> <span class="sr-only">50% Complete</span> </div> </div> |
|
| 5. |
What is breadcrumb in bootstrap and how we can use it? |
|
Answer» The Bootstrap breadcrumb is a NAVIGATOR that indicates the current WEB page's LOCATION to the user within the same WEBSITE or the application. When there are many PAGES on the website, then the breadcrumb increases the accessibility. |
|
| 6. |
What is input groups in Bootstrap? |
|
Answer» Its class is a container to ENHANCE an input by adding a button, icon, or text in the frontend. It extended Form Controls. In Short, USING these input GROUPS classes you can easily prepend and append text or buttons. We have listed some of the most common bootstrap interview questions and answers for experienced developers as well as for freshers. Example<div class="input-group"> <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span> <input id="email" type="text" class="form-control" name="email" PLACEHOLDER="Email"> </div> |
|
| 7. |
What is the underlying grid structure used in Bootstrap? |
|
Answer» The basic GRID structure USED in Bootstrap is:- EXAMPLE<div class="container"> <div class="row"> <div class="COL-*-*"></div> <div class="col-*-*"></div> </div> </div> |
|
| 8. |
What is grid system and list some grid classes? |
|
Answer» The Bootstrap grid System has a limit of 12 columns across the entire page. If a DEVELOPER does not want to use the 12 columns individually then, it can be merged to create a more full column. Bootstrap Grid system Classes
The grid system has the following FOUR classes- |
|
| 9. |
What is data toggle in bootstrap and how we can use it? |
| Answer» | |
| 10. |
What is bootstrap pagination and how we can use it? |
|
Answer» When your SITE contains a lot of pages, then PAGINATION comes into the PICTURE. Pagination is the handling of the unordered list on your site |
|
| 11. |
What is IMG responsive? Explain |
|
Answer» Bootstrap has INBUILT classes through images can be easily styled like making the image ROUND, CIRCULAR and effects can also be given to the pictures like thumbnails. in Bootstrap beside STYLING and giving the effects to the images, images can be made responsive too and for doing that the class .img-responsive is added to the TAG. <img alt="Night sky" class="img-responsive" /> |
|
| 12. |
What is a modal plugin? Explain |
|
Answer» The modal plugin is the SMALL window that is opened over the current PAGE or in other words on the parent window without closing it. This small WINDOWS can be CALLED a dialogue box or pop-up window. If the plugin has to be added individually, then it can be written as modal.js.And when it has to be used as a bootstrap plugin, then bootstrap.js or the minified bootstrap.min.js can be used. |
|
| 13. |
Explain the types of layouts are used in Bootstrap? |
|
Answer» There are two types of layouts available in Bootstrap:-
Both the layouts are responsive, so any of the above two containers can be CHOSEN to CREATE a responsive design website. |
|
| 14. |
List the features of Bootstrap. |
|
Answer»
Here are some of the feature of Bootstrap
|
|
| 15. |
What is the latest version of Bootstrap? |
|
Answer» The latest VERSION of Bootstrap is Bootstrap 4.0.Version 4 RELEASED on 19TH January 2018. |
|
| 16. |
What are the new features of bootstrap 4? |
| Answer» | |
| 17. |
How to use modal popup in bootstrap? |
| Answer» | |
| 18. |
What is the difference between bootstrap 3 and bootstrap 4? |
| Answer» | |
| 19. |
When we click outside of modal popup, it will close, how to resolve it? |
|
Answer» We can resolve this problem in two ways. 1. We can ADD $('#myModal').MODAL({backdrop: 'static', KEYBOARD: FALSE}) OR 2.We cam add data-backdrop="static" data-keyboard="false" in <button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false"> |
|
| 20. |
What are the difference between Bootstrap CSS and Bootstrap min CSS? |
| Answer» | |
| 21. |
What is Maxcdn bootstrap? |
| Answer» | |
| 22. |
What is accordion bootstrap? Explain |
|
Answer» The bootstrap accordion is a COMPONENT which organizes the content within the collapsible items. Bootstrap Accordion shows only one collapsed piece at the same time. For examples:-FAQ Page, MULTIPLE Choice Questions and the DATA tables. |
|
| 23. |
What is form control in bootstrap? |
|
Answer» FORM control in bootstrap automatically recieves the GLOBAL styling.All the TEXTUAL <input>, <textarea>, and <select> elements with class .form-control have a SPECIFIC width of 100%. |
|
| 24. |
What is Glyphicons used in Bootstrap? |
|
Answer» Glyphicons are the icon fonts that can be USED in the web projects. It gives us 260 glyphicons from the Glyphicons Halflings set and these Glyphicons can be used in the TEXT, buttons, toolbars, NAVIGATION, forms and many more. Glyphicons are available free of cost for the Bootstrap projects. Syntax Example<span CLASS="glyphicon glyphicon-name"></span> |
|
| 25. |
What is navbar in bootstrap and why it is used? |
|
Answer» Bootstrap Navbar is a navigation bar which is LOCATED at the top of the WEB PAGE. |
|
| 26. |
What is bootstrap carousel? Explain |
|
Answer» The Carousel plugin is like a slideshow which is CYCLING through a series of content. The content can be IMAGES or text. It has been built by CSS 3D transforms and a BIT of JavaScript."carousel.js" |
|
| 27. |
When we can use tag and ? |
|
Answer» <code> the tag is used for displaying the code inline and <pre> the tag is used if the system has to be PRESENTED as a standalone block element or if the law has multiple lines. While using the <pre> and <code> tags,unicode variants for the opening and closing tags − < and > should be used. Example<code><header></code> wrapped as an inline element. To display the code as a standalone block element use <pre> tag as: <pre> <article> <h1>The Article Heading</h1> </article> </pre> 4. What are the DIFFERENT button styles in Bootstrap? ExplainBootstrap has many PREDEFINED button styles, and each button reflects EITHER a message to the user or an action to be performed.
The different button styles are:-
Classes for buttons are as follows:-
|
|
| 28. |
Why Bootstrap is used for Mobile Web Development? Explain |
Answer»
|
|
| 29. |
What is Bootstrap framework and why it is used? |
|
Answer» BOOTSTRAP is the set of codes written in HTML, CSS, and JAVASCRIPT. Bootstrap is an open source framework. Bootstrap framework is used for developing the website and the web applications. Bootstrap is one of the most essential tools for the front end DEVELOPERS because of bootstrap help in creating complete websites in a short period. With the help of Bootstrap, developers do not have to WRITE long CSS code, and they get more TIME to design the web pages. We have covered all levels of bootstrap interview questions - basic and advanced levels. |
|