Java Programming Syllabus

Java Quick Tutorial for Selenium

Java Language Syllabus, Java Programming Environment, Java Syntax Rules, Java Language Fundamentals, and Java Object-Oriented Programming. Java Language Syllabus Java is a General-purpose programming language, to be used for writing software in the widest variety of application domains. Java Programming language was developed by James Gosling with his team (Java Team, also known as Green … Read more

Operators in Java

Java Operators

Operators in Java, Operator Precedence in Java, Arithmetic Operators, Relational Operators, Assignment Operators, and Logical Operators. Java Operators Operators are used to perform Arithmetic, Comparison, and Logical Operations. Operators are used to perform operations on variables and values. Example: public class JavaOperators { public static void main(String[] args) { int a=25, b=20; int c=a+b; int … Read more

Java Variables

Java Language Fundamentals

What is a Variable?, Explicit Declaration of Variable, Types of Variables in Java, Local; Variables. Instance Variables, and Static Variables. Java Tutorial for Beginners Java Variables 1. What is a Variable? Variable is a named memory location to store the temporary data within a program. We have variables in every computer programming language, the use … Read more

Data Types in Java

Data Types in Java

Data Types in Java, Primitive Data Types, Non-primitive Data Types, Java Strings, Java Numbers, Java Characters, and Java Boolean Data Type. Java Tutorial for Beginners Java Data Types What is Data Type? Data Type is a classification of the type of data that a Variable or Constant or Method can hold in computer programming Example: … Read more

Java Keywords and Identifiers

Java Keywords and Identifiers

Java Keywords and Identifiers, Java Language Fundamentals, Java Programming Syntax, Writing Java Statements and writing Java Code blocks. Keywords and Identifiers in Java Introduction: Java keywords are also known as reserved words. Keywords are particular words that act as a key to a code. These are predefined words by Java so they cannot be used … Read more

Java Tutorial For Beginners – Introduction

Java Full Course Tutorial

Java Tutorial For Beginners – Introduction, What is Java?, Features of Java Language, editions/platforms of Java, and Applications of Java Java Programming Language is for developing different types software applications, and it is also used for Software Testing (Automated Testing). Java Tutorial For Beginners – Introduction to Java 1. What is Java? 2. Features of … Read more

Java Tutorial For Beginners – Syllabus

Java Full Course Tutorial

Java Tutorial For Beginners – Syllabus, Core Java Programming Environment, Java Language Fundamentals, and Java Object oriented Programming. The primary purpose of Java is Software Development, and it is also used for Software Testing (Automated Testing). Java can be used in Selenium for Automated Functional Testing, in Appium for Mobile Testing, in RFT for Functional … Read more

4. Java for Selenium

java tutorial

Overview of Java Programming Java is a Programming Language and a Platform Java is used as a programming language to develop Software Applications Java is used as Software Platform to run Java Applications Java has three important editions 1) Java Standard Edition / Core Java (Old name J2SE)2) Java Enterprise Edition / Advanced Java (Old … Read more

Java Quick Tutorial for Selenium Part 2

Core Java Quick Tutorial for Selenium Part 2 In Java Quick Tutorial Part 1, I explained, Java Environment Setup & Verify A) Java Fundamentals i) Comments in Java ii) Java Data Types iii) Java Modifiers iv) Variables v) Operators vi) Conditional Statements vii) Loop Statements viii) String Handling in Java ix) Arrays in Java x) … Read more

Java Loop Statements, String Handling

Java Loop Statements, String Handling i) Java Loop Statements ii) String Handling in Java ————————— Java Conditional Statements 6) Decide among several alternates (using switch statement) Syntax: switch (expression){ case value: Statements ————- ———– ———- break; case value: Statements ————- ———– ———- break; case value: Statements ————- ———– ———- break; default: Statements ———– ———– ———– … Read more