Ads block
Operators
By
Jeevan Sai
Java Operators Operators are used to perform operations on variables and values. In the example below, we use the + operator to add together two values: …
Read more »
Explain the concept of Interface.
By
Jeevan Sai
10 Marks
·
OPPS WITH JAVA
·
Unit 5
Java Interface An interface is a fully abstract class. It includes a group of abstract methods (methods without a body). We use the interface keyword to cr…
Read more »
Explain multiple inheritances with example.
By
Jeevan Sai
10 Marks
·
OPPS WITH JAVA
·
Unit 5
Inheritance is one of the key features of OOP that allows us to create a new class from an existing class. The new class that is created is known as subclas…
Read more »
Explain the concept of Inheritance.
Inheritance is a mechanism wherein a new class is derived from an existing class. In Java, classes may inherit or acquire the properties and methods of other c…
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
- 10 Marks (14)
- 5 Marks (20)
- OPPS WITH JAVA (34)
- QUESTION BANK (1)
- Unit 1 (13)
- Unit 2 (10)
- Unit 3 (12)
- Unit 4 (9)
- Unit 5 (6)
Search This Blog
Powered by Blogger.
Blog Archive
- August 2021 (1)
- June 2021 (55)
*Java Constructor* class Main { private String name; Main() { name = "Programiz"; } public static void main(String[...