Posts

Core java

Image
                                                                                    CORE JAVA 

level-1

Image
Easy Basics: Conditions & Loops in Java – Animation & Gaming                                                  Easy (Basics: Conditions & L  )   1. Bus Ticket Counter Story:                                                                                                             A conductor issues tokens to passengers. Each passenger must get a number in sequence. Why: Helps students learn loops. Logic: Input: number of passengers. Use for loop to print numbers 1 to n . Extension: use if inside loop to print only even tokens....

looping

Image
                              LOOPING CONCEPT 1.Print numbers from 1 to 10.      Program:      public class loop1 {     public static void main(String[] args)     {         for (int i = 1; i <= 10; i++) {             System.out.print(i);         }         System.out.println();     } } Output:

if-else statement.....

Image
                                                                CORE JAVA   1. Write a program to check if a number is positive or negative.      Program:      import java.util.Scanner;      public class q1 {     public static void main(String[] args) {         Scanner scanner = new Scanner(System.in);         System.out.print("Enter a number: ");         double g= scanner.nextDouble();          if (g> 0) {             System.out.println("The g is positive.");         } else if (g < 0) {             System.out.println("The g is negative."); ...

Gopi

Image
                                                                                CORE JAVA 

Animation

Image
Delta Village by Delta Gopi – Exploring the Art & Story of Animation 🎮 Animation and Gaming Animation   is the process of creating the illusion of movement by displaying a sequence of images or frames. These images can be drawn, computer-generated, or real-life photographs (as in stop-motion). When shown quickly—typically 24 to 60 frames per second—our brains perceive them as smooth motion. 🧩 Types of Animation 1. Traditional Animation (2D) Hand-drawn frame by frame. Classic Disney films like The Lion King or Aladdin . 2. 2D Digital Animation Created using software like Adobe Animate or Toon Boom. Used in cartoons, explainer videos, and mobile games. 3. 3D Animation Uses models and rigs in 3D space. Seen in movies like Toy Story , Frozen , and video games. Software: Blender, Maya, Cinema 4D. 4. Stop Motion Physical objects moved slightly between each frame. Examples: Wallace & Gromit , Coraline . 5. Motion Graphics Anim...