• March 25, 2025

How to run Servlet program (JAVA, TomCat)

To run the servlet program you have to follow the steps: 1.Install java 2.Install tomcat 3.create your own folder in the tomcat folder 4.create html file 5.create java file 6.compile java …

What is Final Keyword in Java IT Gurukpo

Ms. Ritu Kumawat explained about Final Keyword which is used to prevent the inheritance, overriding to make the value of variable as constant.www.gurukpo.com, www.biyanicolleges.org

Encapsulation and Polymorphism in Java, BCA, MCA Lecture by Ms. Ritu Kumawat.

Encapsulation: Encapsulation means binding data Members and methods into a single unit with data Security. Encapsulation is used for Security purpose. Polymorphism: polymorphism means one thing performs different actions depending on …

Inheritance in java Lecture by Ritu Kumawat (Inheritance in java)

when one class acquires the properties of another class then this concept is called inheritance. This is used for reuse the existing functionality. For Example: children acquire the properties of their …

Final Keyword in Java Lecture by Ritu Kumawat

Final keyword can be used: 1.With class name 2.With method name 3.With variable name Uses of final Keyword: 1. To prevent Inheritance: If we want to prevent a class from being …

Method Overloading in java lecture by Ritu Kumawat, Biyani group of colleges

When two or more functions have same name but different parameter list then this concept is called method overloading.Number,type and order of parameters can be different.Return type of method can be …

Session and Sessin tracking methods, Lecture by Ritu Kumawat,Biyani group of Colleges.

It is part of lecture presented by Ritu Kumawat Asst. professor ,Biyani Group of Colleges on behalf of GuruKpo.This lecture is about Session and Session Tracking Methods. Session is conversation between …

Method Overriding in Java, Tutorials on Java override (BCA, MCA, M.ScIT)

Java is a difficult language but we make it easy to understand. Now learn overriding in Java method through this video and give your valuable response to http://www.gurukpo.com

Types of Inheritance, BCA, MCA, MSc(it)

The Video all about the concept of Inheritance in C++. Inheritance is the process of creating new class called derived classes from existing classes. The existing class is called base class. …