Skip to main content

Posts

Showing posts from October 16, 2018

Spring Boot

1) What is Spring Boot? Spring Boot is a Spring module which provides RAD (Rapid Application Development) feature to Spring framework. It is used to create stand alone spring based application that you can just run because it needs very little spring configuration. For more information  click here. 2) What are the advantages of Spring Boot? o     Create stand-alone Spring applications that can be started using java -jar. o     Embed Tomcat, Jetty or Undertow directly. You don't need to deploy WAR files. o     It provides opinionated 'starter' POMs to simplify your Maven configuration. o     It automatically configure Spring whenever possible. For more information  click here. 3) What are the features of Spring Boot? o     Web Development o     SpringApplication o     Application events and listeners o     Admin features For more information  click here. 4) How to create Spring Boot application using Maven? There are multiple approaches t

J Unit Interview Question.

Ques tion 1. What Is Testing? Answer : Testing is the process of checking the functionality of the application whether it is working as per requirements. Question 2. What Is Unit Testing? Answer : Unit testing is the testing of single entity (class or method). Unit testing is very essential to every software company to give a quality product to their customers. Question 3. What Is Manual Testing? Answer : Executing the test cases manually without any tool support is known as manual testing. Question 4. What Is Automated Testing? Answer : Taking tool support and executing the test cases by using automation tool is known as automation testing. Question 5. What Are The Disadvantages Of Manual Testing? Answer : Following are the disadvantages of manual testing − Time consuming and tedious − Since test cases are executed by human resources so it is very slow and tedious. Huge investment in human resources − As test cases need to be executed manua