1.What are the steps involved in project deployment? Normally a deployment process consists of following steps − Check-in the code from all projects in progress into the SVN or source …
Interview Questions and Answers
- Interview Questions and AnswersMavenTechnical Interview Questions and Answers
- Interview Questions and AnswersLog4jTechnical Interview Questions and Answers
Log4j Interview Questions and Answers For Graduates Part-5
by Sby S41.What is the purpose of d character used in the conversionPattern of PatternLayout object? d − Used to output the date of the logging event. For example, %d{HH:mm:ss,SSS} or %d{dd …
- Interview Questions and AnswersLog4jTechnical Interview Questions and Answers
Log4j Interview Questions and Answers For Graduates Part-4
by Sby S31.What is purpose of FATAL log level? FATAL − Designates very severe error events that will presumably lead the application to abort.
- Interview Questions and AnswersLog4jTechnical Interview Questions and Answers
Log4j Interview Questions and Answers For Graduates Part-3
by Sby S21.How will you create a logger in any class? Any other named Logger object instance is obtained through the second method by passing the name of the logger. The name …
- Interview Questions and AnswersLog4jTechnical Interview Questions and Answers
Log4j Interview Questions and Answers For Graduates Part-2
by Sby S11.What is the purpose of LogManager object? LogManager − The LogManager object manages the logging framework. It is responsible for reading the initial configuration parameters from a system-wide configuration file …
- Interview Questions and AnswersLog4jTechnical Interview Questions and Answers
Log4j Interview Questions and Answers For Graduates Part-1
by Sby S1.What is log4j? log4j is a reliable, fast and flexible logging framework (APIs) written in Java, which is distributed under the Apache Software License. log4j has been ported to the …
- Interview Questions and AnswersJQueryTechnical Interview Questions and Answers
JQuery Interview Questions and Answers For Graduates Part-5
by Sby S41.How to select all elements using jQuery? $(‘*’) selects all elements available in a DOM.
- Interview Questions and AnswersJQueryTechnical Interview Questions and Answers
JQuery Interview Questions and Answers For Graduates Part-4
by Sby S31.Which built-in method sorts the elements of an array? sort() method sorts the elements of an array.
- Interview Questions and AnswersJQueryTechnical Interview Questions and Answers
JQuery Interview Questions and Answers For Graduates Part-3
by Sby S21.What is closure? Closures are created whenever a variable that is defined outside the current scope is accessed from within some inner scope.
- Interview Questions and AnswersJQueryTechnical Interview Questions and Answers
JQuery Interview Questions and Answers For Graduates Part-2
by Sby S11.Can you assign a anonymous function to a variable? Yes! An anonymous function can be assigned to a variable.