Hello friends, here is a list of complete topics which we will learn one by one. These topics are very important to learn if you want to be a good pr…
Read moreWipro PJP PRP Sample Coding Questions and Solutions 1.Silver number program import java.util.*; import java.io.*; public class Main …
Read moreOnline-Banking-System: Java, J2EE based website for the online banking system Demo contents: Home Page | Footer Registration Form | Login Wrong …
Read moreJava is a powerful, general-purpose programming environment and one of the most widely used programming languages in the world. From its inception, d…
Read more1. Create a class called GeneralBank that acts as a base class for all banks. This class has getSavingsInterestRate and getFixedDepositIntere…
Read moreWrite a program to create a class named shape. It should contain 2 methods, draw() and erase() that print “Drawing Shape” and “Erasing Shape” resp…
Read moreCreate a base class Fruit with name, taste, and size as its attributes. Create a method called eat() which describes the name of the fruit and it…
Read moreCreate a class named ‘Animal’ which includes methods like eat() and sleep(). Create a child class of Animal named ‘Bird’ and override the parent c…
Read moreJava program Encapsulation and Abstraction to Create a class Author with the information Create a class Author with the following information. Me…
Read moreDesign a class that can be used by a health care professional to keep track of a patient’s vital statistics. The following are the details. Name o…
Read moreCreate a new class called Calculator with the following methods: 1. A static method called powerInt(int num1,int num2) This method should re…
Read moreCreate a class Box that uses a parameterized constructor to initialize the dimensions of a box. The dimensions of the Box are width, height, depth…
Read morePolymorphism in java : 1. It means one name many forms so we can say that in this type of programming same function is used to perform different …
Read moreInheritance in java 1. The process of getting the property of one class into another class is called Inheritance. 2. In other words we can say t…
Read moreAbstraction in Java : 1. Abstraction means Data hiding, in another word we can say that in this type of programming essential data is shown to th…
Read moreEncapsulation in java : The process of combining many elements into a single entity is called Encapsulation. Or In the field of the programming…
Read moreObject : The object is having states and behaviors in which state means what does it has and behavior means what does it do. for example, a pen h…
Read moreCopyright (c) 2022 SUNAGAR All Right Reseved