Sangamithra K

Sangamithra K @sangamithra_k_78d83d6fb9d

Joined:
Mar 30, 2025

Sangamithra K
articles - 22 total

DAY 40: Array in Looping JAVA

In Java, an array is a data structure that stores a fixed-size, sequential collection of elements of...

Learn More 0 0May 8

Day 38: Find power, Common divisors, LCM in Looping Practices

Example 1 find power: package demo_programs; public class Find_power { private boolean...

Learn More 1 0May 6

Day 37: Looping Practice& find divisors of count

package demo_programs; public class Looping3 { public static void main(String[] args) { ...

Learn More 1 0May 5

Day 35 & 36: Looping Demo of Factorial and LCM

What is factorial in Java programming? In Java programming, a factorial is the mathematical...

Learn More 0 0May 4

Day 34 :While Loop Practice programmings

workout 1 package demo_programs; public class example_6 { public static void main(String[]...

Learn More 0 0May 1

Day:33 Switch case and looping programming

In Java, == and equals() are both used for comparison, but they operate differently. The == operator...

Learn More 0 0Apr 30

Day : 32 "Byte by Byte: The Programmer’s Journey"

Java programs are typically structured into classes, which are blueprints for objects. Objects are...

Learn More 1 0Apr 29

DAY :31 This , Super class in JAVA.

What is this keyword in Java? In Java, this is a reference variable that refers to the current...

Learn More 0 0Apr 23

Day 28 and 30: java in Dynamic binding and Enum...Basic of Programming

What is Dynamic binding? Dynamic binding, also known as late binding, in Java refers to the...

Learn More 0 0Apr 21

DAY : 27 Abstract and Interface in Java – Simplified

Abstraction 1.Abstraction in Java is a fundamental concept in object-oriented programming (OOP) that...

Learn More 0 0Apr 17

DAY : 26 Protected keyword and abstraction

Protected keyword In Java, the protected keyword acts as an access modifier for class members...

Learn More 3 0Apr 16

DAY 25: Mastering Constructors & the this Keyword

constructor In Java, a constructor is a special method that initializes objects when they are...

Learn More 3 0Apr 15

DAY : 24 TYPES OF INHERITANCE.

What is inheritance Child object behave a parent object Keyword - Extends Inheritance in Java...

Learn More 2 0Apr 14

DAY 22 & 23: Understanding of Encapsulation and Inheritance.

Encapsulation in getters and setters methods Encapsulation is achieved by declaring class attributes...

Learn More 1 1Apr 13

DAY 20 & 21: Explanation of IDEs in Eclipse and Inheritance

What is IDEs Eclipse IDE is a free and open-source, Java-based integrated development environment...

Learn More 0 0Apr 11

DAY : 19 How to use Encapsulation in java

Encapsulation Encapsulation is a Data protection In Java, encapsulation is a core object-oriented...

Learn More 0 0Apr 10

Day : 18 Return Data types and programmes

Return Data Types The return type must be specified before the method's signature when declaring the...

Learn More 1 0Apr 8

Day 17: Arguments and Parameters

Arguments 1.These are the values that are passed to the function when it's called. 2.They are the...

Learn More 2 0Apr 7

DAY : 16 Explanation of variables

Difference between Local variable and Global Variable Variables are classified into Global variables...

Learn More 1 0Apr 7

Day 15 : Local variables and Global variables

Variable A Variable will be Remembered only in between the opening and closing braces where it is...

Learn More 4 2Apr 6

DAY-14 -Static method and Non static method..

Static method What is a static method in Java? Static methods are methods that are associated with...

Learn More -2 0Apr 5

DATA TYPES IN JAVA

DATA TYPES A variable in Java must be a specified data type: *Primitive datatype ...

Learn More 3 0Apr 3