21.What are HTML Helpers in ASP.Net MVC? HTML Helpers are like controls in traditional web forms. But HTML helpers are more lightweight compared to web controls as it does not …
Interview Questions and Answers For Freshers
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-2
by Sby S11.What are Actions in ASP.Net MVC? Actions are the methods in Controller class which is responsible for returning the view or json data. Action will mainly have return type : …
- Interview Questions and AnswersMVCTechnical Interview Questions and Answers
MVC Interview Questions and Answers For Graduates Part-1
by Sby S1.Breifly explain us what is ASP.Net MVC? ASP.Net MVC is a pattern which is used to split the application’s implementation logic into three components i.e. models, views, and controllers.
- Interview Questions and AnswersMavenTechnical Interview Questions and Answers
Maven Interview Questions and Answers For Freshers Part-1
by Sby S1.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 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 AnswersJDCBTechnical Interview Questions and Answers
JDBC Interview Questions and Answers For Freshers Part-5
by Sby S41.How will you insert multiple rows into a database in a single transaction? Follow steps as below //turn off the implicit commit Connection.setAutoCommit(false); //..your insert/update/delete goes here Connection.Commit(); //a new …