Saravanan

Saravanan @saravanan_477814b61087a66

Joined:
Dec 4, 2024

Saravanan
articles - 13 total

Matrix Addition,Matrix Multipliction

1.Matrix Addition: public static void main(String[] args) { int[][] a= {{1,2,3} ...

Learn More 5 0Mar 4

Linear search and Binary search programs

Linear Search: int[] ar = {10,45,67,100} int key = 67; for(int...

Learn More 5 0Feb 24

While loop examples

(1) int count = 0; while(count<5) { ...

Learn More 1 0Feb 6

Control flow statement: while loop.

loops: -Loops can execute a block of code as long as a specified condition is...

Learn More 2 0Jan 29

Examples for condition statement,if,if else,else if

```package program_basics; public class Condition_statement { public static void main(String[]...

Learn More 1 0Jan 29

Day-5 Example for Encapsulation

public class Friend1 { String name; long mobileNo; private int atmPin; public Friend1(String...

Learn More 1 0Dec 18 '24

Day-4 Task-2

Task: Create a class Called PlayGround Create non-static variables as below. int score, balls,...

Learn More 2 0Dec 18 '24

Day - 4 Task-1

class Employee { public static void main(String[] args) { Employee emp=new...

Learn More 2 0Dec 17 '24

Day-3 simple return model

class Bmw { public static void main(String args[]) { Bmw car = new...

Learn More 0 0Dec 10 '24

Day-3 What is Datatype?

A post by Saravanan

Learn More 0 0Dec 10 '24

Day-3 What is mean by Method overloading?

A post by Saravanan

Learn More 0 0Dec 10 '24

Day 2 Task-1 Theatre.java

out put:

Learn More 0 0Dec 10 '24

Day - 1 Definition of Object and Class

(1) what is object? An object is a fundamental concept in object-oriented programming(oops) -It...

Learn More 0 0Dec 4 '24