info.pantverse@gmail.com

C++ chapter 1

🟩 Chapter 1: Introduction to C++ 🔹 1. What is C++? 🔹 2. Features of C++ 🔹 3. Structure of a C++ Program Explanation: 🔹 4. Difference Between C and C++ Feature C C++ Programming Style Procedural Object-Oriented Data Functions act on data Data & functions tied as objects Security Less secure More secure (Encapsulation) Reusability Limited High (via classes) […]

C++ chapter 1 Read More »

C language chapter 3

🟩 Chapter 3: Control Statements (Decision Making & Looping) 🔹 1. What Are Control Statements? They control the flow of execution of a program. Types: 🔹 2. Decision-Making Statements A. if Statement B. if–else C. if–else if–else Ladder D. Nested if E. switch Statement 🔹 3. Looping Statements Used for repetition of code. A. while Loop B. do–while Loop Executes at least once. C. for Loop D. Nested Loop Loop inside another loop. 🔹 4. Jump Statements Example:

C language chapter 3 Read More »

java script Chapter2

🧩 Chapter 2: Variables, Data Types, and Operators 🔹 1. Variables Used to store data values. Syntax: 🔹 2. Data Types Primitive Data Types: Non-Primitive: 🔹 3. Operators A. Arithmetic Operators +, -, *, /, %, ++, — B. Assignment Operators =, +=, -=, *=, /=, %= C. Comparison Operators ==, ===, !=, !==, >, <, >=, <= == compares value=== compares value + type (strict equality) D. Logical Operators && (AND), || (OR), ! (NOT) E. String Operators + → used for concatenationExample: F.

java script Chapter2 Read More »