Skip to content

Instantly share code, notes, and snippets.

@nazmul629
Last active September 7, 2019 13:50
Show Gist options
  • Save nazmul629/8931cd454e543a11ad3fbab0453f706b to your computer and use it in GitHub Desktop.
Save nazmul629/8931cd454e543a11ad3fbab0453f706b to your computer and use it in GitHub Desktop.
Java Course Design .

Learning Java Programming Language

  1. Introduction of Java

    • First Project
      • Project> package> Class
    • Escape sequence
      • \t \b, \n, "
    • Comment
    • Phases
      • edit(.java)>Compile(.class)>load>verify>Excute
    • Variable & Data Type
    • Format specifier
      • %b,%d,%c,%f
  2. Input-Output

  3. Operator

    • Arithmetic Operator
      • (+, -, /, *, % )
        • Area of Triangle
    • Assinment Oparator
      • a == b ;
    • Relational Oparator
      • (<.>,==,!=,>=,<=)
    • Logical Operator
      • (&&, ||, !)
    • Coditional Operator
      • tarnary Oparator
    • Bitwise Oparator
      • (&, |, ^,>>,<<,~)
  4. Math

    • max(), min(), pow(), abs() PI,
  5. Control Statement >>(if,else)

    • Positive /negitive / Zero
    • Even /Odd
    • Vowel / Consonant
    • maximum/ Minimum
    • Leap Year
    • Pass/ Fail
  6. Switch

  7. Loop (for, while, do while)

    • Print 1 to 10 all Number;
    • print sum of all number 1 to 10;
    • print sum of the even number m to n;
    • print sum of the even numbers m to n;
    • 1+2+3+.........+n
    • 1+3+5+.........+n
    • 1.5+2.5+3.5+......+n
    • i^2+2^2+3^2.....+n^2
    • 123*.........*n
    • 135*.........*n
    • 1.52.53.5*......*n
    • i^22^23^2.....*n^2
  8. Series

  9. Pattern

  10. Array

  11. Function

  12. Structere

  13. Pointer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment