Posts

Showing posts from September, 2025

Level 3 Tasks-(Java)

Image
  🔴 Level 3 – (Logic & Real-Life Simulation)

Level 2 Tasks-(Java)

Image
  🟡 Level 2 – (Arrays & Strings)

Level 1 Tasks-(Java)

Image
  🟢 Level 1 – (Basics: Conditions & Loops)

Venkatesh-Java File concept

Image
JAVA FILE CONCEPT

My Travel Bucket

Travel Bucket  

Super Hero

My Super Hero  

For & While loop Venkatesh

For & While Loop Challenges

Java if-else Venkatesh

  Java Challenges with if-else

core java Venkatesh

  CORE  JAVA  CHALLENGES 1) Write a program to multiply two numbers and display the result. Code : import java.util.Scanner; class venkat1{     public static void main(String[] args)      {         System.out.println("Question No : 1\n\"Write a program to multiply two numbers and display the result.\"");         System.out.println("\t\t[Multiply two numbers]");         Scanner sc=new Scanner(System.in);         System.out.print("\nEnter first number a value :");         int a=sc.nextInt();         System.out.print("\nEnter secound Number b value :");         int b=sc.nextInt();         int result = a * b; // Multiply two numbers /          System.out.println("\nResult = " + result);     } } Output: Question No : 1 "Write a program to multiply two numbers a...

B.sc cs

Venkatesh