Welcome to SSR Software Testing Training
Java Concepts
- Introduction of Java
- Variables and Methods
- Class structure
- Method structure
- Identify Variables and Methods
- Method types: 1.non return type without parameter 2.non return type with parameter 3.return type without parameter 4.return type with parameter
- Symbols in java
- Data types
- Create java project:New folder structure with main folder
- Create packages in src:Sub folders
- Create java class file in packages without any option : 1.Structural file
- Create classes in java file
- Create methods in java classes
- Create variables in java classes
- Create java class file with main() method in package to run program:2. Run file
- Use of main() method
- Using class variables and methods with class name by using static keyword
- Create an object by using constructor
- Select variables and methods with object to use
- Run main() method as Java Application
- Use of class variables and methods
- Details of variable types :1.class variables 2.local variables 3.arguments(parameters)
- Access modifiers :1.private 2.default 3.public 4. protected
- Different format of java files
- Creating an object by using 1.class and class 2.interface and class 3. abstract class and class 4.parent class and child class
- Constructor with parameter
- Exception Handling with try ,catch and throw and throws
OOPs concept of Java
- Inheritance: use of extends keyword and other related keyword super and this
- Interface: use of implements keyword in classes
- Abstract classes: use of abstract keyword within class
- Polymorphism: 1.Overloading 2.Overriding
- Encapsulations
Collections in Java
- Static memory allocation programs: 1.Variable 2. Arrays
- Dynamic memory allocation programs-Collections:1.List 2.Set
- Type of collections:1. Homogeneous 2. Heterogeneous:
- Mostly used methods in collections 1.add(), 2.size() 3.get() 4.iterator() 6.hasNext() 7.next()
- List classes
- Set classes
Back