Posts

BASIC JAVA PROGRAMS

 BASIC JAVA PROGRAMS ✅ 1.  Check if a Number is Even or Odd Problem : Read a number and check whether it is even or odd. import java.util.Scanner; public class EvenOddCheck { public static void main (String[] args) { Scanner sc = new Scanner (System.in); System.out.print( "Enter a number: " ); int num = sc.nextInt(); if (num % 2 == 0 ) System.out.println(num + " is Even." ); else System.out.println(num + " is Odd." ); } } ✅ 2.  Find the Largest of Three Numbers Problem : Take three numbers as input and find the largest among them. import java.util.Scanner; public class LargestOfThree { public static void main (String[] args) { Scanner sc = new Scanner (System.in); System.out.print( "Enter three numbers: " ); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); if (a ...

PBCST304 OBJECT ORIENTED PROGRAMMING(2024 SCHEME)

Image
PBCST304 OBJECT ORIENTED PROGRAMMING (2024 SCHEME) 🌈 SYLLABUS 🕮TEXTBOOK  Introduction to Java Programming, Comprehensive Version Y Daniel Liang Pearson 10/e, 2014 MODULE 1    Introduction;  oop concepts                                    Operators in java Hands on : Basic Java Programs Hands on: Java program using operators Hands on : Basic String programs   Basic string and array questions in java. MODULE 2     Polymorphism and Inheritance MODULE 3    Packages and Interfaces                               Exception Handling                               Design Pattern                      ...

CST446 DATA COMPRESSION TECHNIQUES(2019 scheme)

CST446 DATA COMPRESSION TECHNIQUES (2019 scheme) 🌈 SYLLABUS 🕮TEXTBOOK : 1. David Solomon, Data compression: the complete reference, 4/e, Springer, January 2007                               2. Khalid Sayood, Introduction to data compression, Morgan Kaufmann Publishers,2003. 📖MODULES NOTES MODULE 1 :  Modelling and type of compression MODULE 2 :  Basic compression methods                               RLE compression & Decompression                               Arithmetic Coding MODULE 3 :  Text and image compression                               JPEG Compression           ...