To topic selection

Topic: Beginner Programming

Talks & Podcasts

OOP in JAVA

  • Interview question's and answer's
  • 2024-06-4

OOP in Java stands for Object-Oriented Programming. It's a programming paradigm that revolves around the concept of "objects," which can contain data, in the form of fields (attributes or properties), and code, in the form of procedures (methods or functions).

3. if-else in JAVA

  • MODULE 1: Introduction to Programming
  • 2024-05-21

The Java if statement is used to test the condition. It checks boolean condition: true or false. There are various types of if statement in Java.

2. Operators in JAVA

  • MODULE 1: Introduction to Programming
  • 2024-05-20

Java provides many types of operators which can be used according to the need. They are classified based on the functionality they provide. In this article, we will learn about Java Operators and learn all their types.

1. Beginner: Data Types + Reading Input

  • MODULE 1: Introduction to Programming
  • 2024-05-19

A data type is an attribute associated with a piece of data that tells a computer system how to interpret its value. Understanding data types ensures that data is collected in the preferred format and the value of each property is as expected.