Using the keyword “interface” you can fully abstract a class interface from its implementation. i.e., using an interface you can […]
Category: Core Java
Core Java
Introduction to Java
Introduction Programming with traditional language such as COBOL, PASCAL, FORTRAN, and C in referred as procedure oriented programming (POP). […]
Data types in Java
Data types: Data types are used to declare variables in Java programs are For Integers:byte: -128 to 127 short: -32768 […]
Operators in Java
Operators: Arithmetic Operators: +, -, *, /, %, ++, --, +=, -=, *=, /=. Relational Operators: >, <, >=, <=, ==, !=. […]
Control Structures in Java
Control structures: Control structures are mostly used to control the flow of your program. Java provides the following control structures. […]
Switch Statements in Java
Switch statements: Test a variable's value with a list of values defined by us, where an appropriate match is found. The […]
Loops in Java
Loops: A loop can be defined as a repeated execution of statements or a block of statements a specified no. of […]

