Prepare
Practice
Interview
Aptitude
Reasoning
English
GD
Placement papers
HR
Current affairs
Engineering
MCA
MBA
Online test
Login
Can we have parameterized constructors in Java?
Java and Advanced Java
>>
Java FAQ
Next Page »
Can we have parameterized constructors in Java?
Yes, we can have.
This is also called as constructor overloading.
Example:
Class clsEmp
{
int age;
clsEmp()
{
age = 21;
}
clsEmp(int a)
{
age = a;
}
}
Next Page »
JSP Interview Questions and Answers - Freshers & Experienced!
JSP interview questions with answers for freshers and experienced, JSP interview FAQ - In this series, we have covered all about JSP and answered the questions that might be asked during an interview.
What is JSP?
What is JSP? - JavaServerPages is server side component in a web application, used to dynamically generate HTML / XML documents...
Categories of JSP tags - Directives, Scripting elements, Actions
"Categories of JSP tags - Directives: The directive tags are used for simple java programming calls like importing packages, specifying the error handling pages or to handle session in a JSP page...
Post your comment
Related Content
Java - Part 1
Java - Part 2
Java - Part 3
Java - Part 4
Java - Part 5
Java - Part 6
Java - Part 7
Java for freshers
Basic Java
Advanced Java
Java FAQ
JSP - Part 1
JSP - Part 2
EJB - Part 1
EJB Architecture
EJB - Part 2
J2EE - Part 1
J2EE - Part 2
Servlets - Part 1
Servlets - Part 2
Struts - Part 1
Struts - Part 2
Struts and Ajax
Hibernate - Part 1
Hibernate - Part 2
Spring - Part 1
Spring - Part 2
Java Server Faces
Java Web Services
Follow us
CareerRide on YOUTUBE
CareerRide on INSTAGRAM
MCQs
English
Tutorials
Download
▲