
Syllabus overview of Java with Bluej
1. Working in Java
2. Writing a first code in java with BlueJ
3. Data types and variable creation in Java
4. Input in Java
5. Conversion of Data types
6. If statement in Java
7. Switch case in java
8. Loops and its types
9. Pattern and Series with Loops
10. Classes and objects
11. Functions with its types with Nested Functions
12. Arrays with its types
13. Math class functions
14. String operations
15. Constructors and its types
16. Interaction with multiple classes and objects
17. Inheritance
18. Interfaces
19. Independent Project Designing Module
Working in Java
Writing a first code in java
Data types and Variables
Input in Java
Conversion of Data types
If statement in Java
Switch case in java
Loops and its types
Pattern and Series with Loops
Classes and objects
Functions with its types with Nested Functions
Arrays with its types
Math class functions
String operations
Constructors and its types
Interaction with multiple classes and objects
Inheritance
Interfaces
import java.util.Scanner;
public class GetSet
{
public int maths;
public int phy;
public int chem;
public void setter()
{
Scanner sc=new Scanner(System.in);
System.out.println("enter a val for maths,chem and phy");
maths=sc.nextInt();
phy=sc.nextInt();
chem=sc.nextInt();
}
public void display()
{
System.out.println("phy marks-"+phy);
System.out.println("maths marks-"+maths);
System.out.println("chem marks-"+chem);
}
public int getMaths()
{
return maths;
}
public int getChem()
{
return chem;
}
public int getPhy()
{
return phy;
}
}
------------------------------------------------------------------------------
public class Cal extends GetSet
{
public int tot;
public float per;
public int getTot()
{
tot=phy+chem+maths;
return tot;
}
public float getPer()
{
per=(float)(tot*3)/100;
return per;
}
}
------------------------------------------------------------------------------------
class Final extends Cal
{
public static void main()
{
Final obj=new Final();
obj.setter();
obj.display();
System.out.println("Total-"+obj.getTot());
System.out.println("per-"+(float)obj.getPer());
}
}
-------------------------------------------------------------------------------------------------
This is an amazing course for beginner's.
You will be able to design an independent projects after this course in Java.
1. Working in Java - Under this head you will be getting a short description about working of java .
2. Writing a first code in java with BlueJ - In second phase your programming skills will be taken under consideration.
3. Data types and variable creation in Java - Data type and var creation will be implemented using BlueJ
4. Input in Java- Input the val into the variables will be implemented in BlueJ
5. Conversion of Data types- Data Conversion of both the types will be explained with a practical session.
6. If statement in Java - All possible Conditions will be taken during sessions.
7. Switch case in java - Switching on int and char will be explained.
8. Loops and its types - Loops of all different types will be explained.
9. Pattern and Series with Loops - Nested loops with patterns will be explained.
10. Code Execution- Code with Examples and practical sessions.
11. Functions with its types with Nested Functions - Function + Nested Function + Function Overloading.
12. Arrays with its types - 1D and 2D Arrays.
13. Math class functions - Math functions with all examples.
14. String operations - String and its functions.
15. Constructors and its types - Constructor with all its types.
16. Interaction with multiple programmes.
17. Inheritance
18. Interfaces - Creation of Interfaces and use in java.
19. Independent Project Designing Module