CPP – Questions [CPP Language Technical Questions ] By venky8542Posted on October 1, 2016November 3, 2025 1.What is a class? 2.What is an object? 3.What is the difference between an object and a class? 4.What is […]
Loops in Java By venky8542Posted on October 1, 2016November 3, 2025 Loops: A loop can be defined as a repeated execution of statements or a block of statements a specified no. of […]
Switch Statements in Java By venky8542Posted on October 1, 2016November 3, 2025 Switch statements: Test a variable's value with a list of values defined by us, where an appropriate match is found. The […]
Control Structures in Java By venky8542Posted on October 1, 2016November 3, 2025 Control structures: Control structures are mostly used to control the flow of your program. Java provides the following control structures. […]
Operators in Java By venky8542Posted on October 1, 2016November 3, 2025 Operators: Arithmetic Operators: +, -, *, /, %, ++, --, +=, -=, *=, /=. Relational Operators: >, <, >=, <=, ==, !=. […]
Data types in Java By venky8542Posted on October 1, 2016November 3, 2025 Data types: Data types are used to declare variables in Java programs are For Integers:byte: -128 to 127 short: -32768 […]
Introduction to Java By venky8542Posted on October 1, 2016November 3, 2025 Introduction Programming with traditional language such as COBOL, PASCAL, FORTRAN, and C in referred as procedure oriented programming (POP). […]