Posts

Showing posts from March, 2024

Introduction to Python

⋮ Mindvault360 Introduction to Python Comments Variable in Python Python Datatypes Python Operators Conditional Statements Introduction: Python is a versatile and advanced programming language that is noted for its ease of use and readability. Python, created by Guido van Rossum and launched in 1991, has since become one of the most popular programming languages globally, used in a variety of domains.   Features: 1. Easy to Learn and Read: Python's syntax is basic and understandable, making it suitable for novices. Its readability promotes clean, maintainable programming. 2. Wide Range of Libraries and Frameworks:  Python has a rich ecosystem of libraries and frameworks for a variety of activities, including web development, data analysis, machine learning, scientific computing, and more. These libraries help developers save time and effort by providing pre-built solutions to common problems. 3. Cross...

Tokens & Manipulators in CPP

⋮ Mindvault360 C++ Introduction Variables Comments in CPP OOP(Object-oriented programming) Basic input and output operations Tokens & Manipulators in CPP Control Structures in CPP Looping Statements Arrays in CPP Pointers in CPP File Operations in CPP Functions in C++ C++ String C++ math C++ Boolean Basic Syntax and Structure of C++ Dynamic memory Scope of Variable C++    Tokens are the smallest individual units of the program Types: 1. Keywords. 2. Identifiers 3. String 4. Constants 5. Operators Keywords Keywords have set meanings, which cannot be modified. There are 32 keywords in 'C++'. Keywords are typed in lowercase letters. These keywords provide developers with the essential building blocks of C++ syntax and semantics, allowing them to effectively specify a wide range of programming constructions and operations. To build correct and...