Question:- What is the difference between performance testing and monkey testing?
Answer:- Performance testing checks the speed, scalability, and/or stability characteristics of a system. Performance is identified with achieving response time, throughput, and resource-utilization levels that meet the performance objectives for a project or a product. Monkey testing is a technique in software testing where the user tests the application by providing random inputs, checking the behavior of the application (or trying to crash the application).
Question:- What is exploratory testing?
Answer:- Exploratory testing is an approach to software testing, wherein testers learn simultaneously about the test design and test execution. In other words, it is a hands-on approach where testers are involved more in the test execution part than in planning.
Question:- What is meant by system testing?
Answer:- System testing is a black-box testing technique, used on a complete integrated system, where it will test the system compliance as per the requirement.
Question:- What are the benefits of test reports?
Answer:- Test reports will help us find the current status of a project and its quality. This can help stakeholders and customers take necessary actions. The complete documentation of test reports will help analyze different phases of the project.
Question:- What is meant by latent defect?
Answer:- A latent defect is a hidden defect in an application/software, which cannot be identified by a user. However, this will not cause any failure to the application because the conditions will never be met.
Question:- Explain what is Bootstrap?
Answer:- Bootstrap is a HTML, CSS, and JS framework for building the rich web applications with minimal effort. This framework emphasis more on building mobile web applications.
Question:- Explain why to choose Bootstrap for building the websites?
Answer:- There are few reason why we choose Bootstrap for building websites • Mobile Support: For mobile devices it provides full support in one single file rather than in separate file. It supports the responsive design including adjusting the CSS based on the different types of device, size of the screen etc. It reduces extra effort for developers. • Easy to learn: Writing application in bootstrap is easy if you know CSS and HTML • Browser Support: It supports all the popular browsers like Firefox, Opera, Safari, IE etc.
Question:- What are the key components of Bootstrap?
Answer:- The key components of Bootstrap are • CSS : It comes with plenty of CSS files • Scaffolding : It provides a basic structure with Grid system , link styles and background • Layout Components : List of layout components • JavaScript Plugins: It contains many jQuery and JavaScript plugins • Customize: To get your own version of framework you can customize your components
Question:- Explain what are class loaders in Bootstrap?
Answer:- Class loader is a part of JRE (Java Runtime Environment) which loads Java classes into Java virtual environment. Class loaders also does the process of converting a named class into its equivalent binary form.
Question:- What are the types of layout available in Bootstrap?
Answer:- In Bootstrap there are two types of Layout available • Fluid Layout: Fluid layout is used when you want to create a app that is 100% wide and use up all the width of the screen • Fixed Layout: For a standard screen you will use fixed layout (940 px) option
Question:- Explain what is Bootstrap Grid System?
Answer:- For creating page layout through a series of rows and columns that house your content Bootstrap Grid Sytem is used.
Question:- What are offset columns in Bootstrap?
Answer:- For more specialized layouts offsets are a useful feature. For more spacing they can be used by pushing column over. For example, .col-xs=* classes do not support offset but they are easily replicated using an empty cell
Question:- What is column ordering in Bootstrap?
Answer:- Column ordering is one of the feature available in bootstrap and you can easily write columns in an order and show them in another one. With .col-md-push-* and .col-md-pull-* the order of the column can be easily changed.
Question:- What function you can use to wrap a page content?
Answer:- To wrap a page content you can use .container and using that you can also center the content.
