Skip to main content

Posts

Showing posts from October, 2018
project manager Round interview Please put some light on this questions and give answer .. 1.scenario:suppose one user using user application by opening in 10 different taps in window.how you will restrict to not do 2.how you will fing how many user using your application? 3.If client ask you to change some module  what you will do? 4.how will you deploy ur project? 5.Diffent phases in delivering project during developement and maintance 6.What are the challenges/difficulties facing in your project..?
What does it mean by auto configuration by spring boot ? Spring boot automatically configure bean if its corresponding library in classpath, for example if JdbcTemplate is in classpath then spring boot will configure JdbcTemplate and will create a bean that can be injected directly where its required. What is starter dependency in spring boot ? Starter dependency is aggregation of common dependency that are available during build for example if we are creating a web project that exposes REST API then we require spring web , spring mvc, tomcat, jackson etc.but spring boot provides web starter that has all in single dependency.If we add all dependency individually then we need to maintain all compatible version of library but using spring boot starter we get complete package that maintains all compatible version. What is the benefit of spring boot Command line interface (CLI) ? When we write code in spring boot CLI and use any Object or type then spring boot CLI detects start

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