History and Features of Python - Python 2 vs Python 3 - Use Cases and Applications of Python - Setting Up the Environment - Installing Python - Basic Command-Line Usage - Writing Your First Program - Understanding the Python Interpreter - Writing a simple "Hello, World!" program - Running Python scripts -
Variables in Python - Variable Naming Convention - Dynamic Typing vs Static Typing - Data Types - Basic Data Types: Integers, Floats, Strings, Booleans - Composite Data Types: Lists, Tuples, Sets, Dictionaries - Type Conversion and Type Checking - Data Type Operations - Arithmetic Operations on Numbers - String Manipulation Techniques - Common List and Tuple Methods
`if`, `elif`, and `else` Statements - Nested Conditions - Ternary Operator - `for` Loops: Iterating through lists, tuples, strings, and dictionaries -`while` Loops: Usage and examples - Loop Control Statements: `break`, `continue`, and `pass`
List Comprehensions - Dictionary Comprehensions - Set Comprehensions
List Functions - Common List Methods: `append()`, `extend()`, `insert()`, `remove()`, `pop()`, `sort()`, `reverse()`- List Slicing and Indexing - Set Functions - Set Operations: Union, Intersection, Difference - Common Set Methods: `add()`, `remove()`, `discard()`, `clear()`, `copy()` - Tuple Functions - Tuple Characteristics: Immutable Nature- Common Tuple Methods: `count()`, `index()`- Tuple Packing and Unpacking - Dictionary and String Manipulation - Creating and Accessing Dictionaries - Common Dictionary Methods: `get()`, `keys()`, `values()`, `items()`, `update()`- Dictionary Comprehensions - String Methods - `len()`, `strip()`, `split()`, `join()`, `replace()`, `find()`, `format()`- String Formatting: f-strings, `.format()`, and `%` formatting
Defining Functions - Syntax of Function Definition - Parameters and Arguments - Return Statement - Function Scope and Lifetime - Local vs Global Variables - The `global` keyword - Lambda Functions - Syntax and Usage of Lambda Functions - When to Use Lambda Functions – Recursion – Why Recursion? – Where to use recursion?
Writing Docstrings for Documentation- Function Annotations for Type Hints
Functions as First-Class Citizens - Using `map()`, `filter()`, and `reduce()`
Modules - What are modules in Python? - Importing modules (`import`, `from ... import`) - Standard library modules (e.g., `math`, `random`, `os`, etc.) - Creating and using your own modules - Aliasing modules (`import module as alias`) - Module search path and `sys.path`- Packages - Introduction to packages - Directory structure for packages - ` init .py` and its role in packages - Importing from a package - Using sub packages
Basics of File Handling - Types of files: Text and Binary - Opening a file (`open()` function, modes like `r`, `w`, `a`, etc.) - Reading from a file (`read()`, `readline()`, `readlines()`) - Writing to a file (`write()`, `writelines()`) - File Operations - Closing files (`close()`) - File handling using `with` statement (context managers) - Handling file exceptions (`try`, `except` blocks for file operations - Advanced File Handling - Working with binary files - Moving, renaming, and deleting files using `os` and `shutil` modules - File paths and directories (`os.path`, `pathlib`) - Working with CSV files (`csv` module) - Working with JSON files (`json` module) - File compression (`zipfile`, `gzip`)
Introduction to Regex - What is a regular expression? - `re` module in Python - Basic Patterns - Literal characters - Metacharacters and special sequences - Character classes, sets, and ranges - Quantifiers (`*`, `+`, `?`, `{}`) - Anchors (`^`, `$`) - Common Regex Functions in Python - `re.match()`, `re.search()`, `re.findall()`, `re.finditer()` - `re.sub()` for substitutions - `re.split()` for splitting based on regex patterns - Compiling regular expressions (`re.compile()`
Introduction - What are exceptions? - Exception vs Syntax Error - Basic Exception Handling - `try`, `except` block - Handling multiple exceptions - `else` clause in exception handling - `finally` block (cleanup actions) - Built-in Exceptions - Common built-in exceptions (`ZeroDivisionError`, `FileNotFoundError`, `IndexError`, `KeyError`, etc.) - Exception hierarchy (`BaseException`, `Exception`, etc.) - Raising Exceptions - Raising exceptions using `raise`- Custom error messages - Custom Exceptions - Defining user-defined exceptions - Creating custom exception classes
Introduction to OOPs Concepts - Class and Objects - Attributes and Methods (Instance and Class variables) - `self` parameter - Principles of OOP – Encapsulation - Abstraction - Inheritance (Single, Multiple, Multilevel) - Polymorphism (Method overloading, Method overriding) - Composition and Aggregation-Advanced OOP Concepts - Special methods (` init ()`, ` str ()`, ` repr ()`, etc.) - Static methods and Class methods - Property and Getter/Setter methods (`@property`, `@setter`) - Operator overloading (` add `, ` lt `, etc.) - Understanding `super () ` and MRO
Built-in Data Structures – Lists – Tuples – Sets – Dictionaries - Advanced Collections - `collections` module - `namedtuple()`- `deque()`- `Counter()` - `defaultdict()` - `OrderedDict()`- `ChainMap()`- Stacks (using lists or `deque`) - Queues (using `deque` or `queue` module) - Linked lists (singly and doubly linked lists implementation) - Trees (basic implementation of binary trees, binary search trees)
Introduction to Databases - What is a Database? Importance of databases in applications - Introduction to Database Management Systems (DBMS) - Types of DBMS: Relational, NoSQL, Object-Oriented, etc. - Overview of SQL and its role in relational databases (RDBMS
Introduction to SQL Server - What is SQL Server? Overview of RDBMS concepts - Overview of different SQL Server Editions (Express, Standard, Enterprise) - SQL Server Management Studio (SSMS) Introduction and Setup. - Installing and using SQL Server Management Studio (SSMS) for database management
Creating and Modifying Databases – Creating and Modifying Tables - Table Constraints - - Primary Keys (`PRIMARY KEY` constraint) - Foreign Keys (`FOREIGN KEY` constraint) - Unique Constraints (`UNIQUE` constraint) - Default Values (`DEFAULT` constraint) - Check Constraints (`CHECK` constraint). - Operators, Data Types, and Type Conversion - Arithmetic Operators - Comparison Operators - Logical Operators – BETWEEN, IN, LIKE for pattern matching - IS NULL and IS NOT NULL operators. - SQL Server Data Types - Type Conversion
Inserting Data - Updating Data - Deleting Data
Basic Querying with `SELECT - Filtering Data with `WHERE - Sorting Results Using `ORDER BY` to sort records in ascending (`ASC`) and descending (`DESC`) order. - Conditional Logic with `CASE`- Using Aggregate Functions - Group By, Having, - Difference between `WHERE` and `HAVING`- Using `HAVING` with aggregate functions.
Common string functions: `LEN()`, `SUBSTRING()`, `CHARINDEX()`, `UPPER()`, `LOWER()`, `REPLACE()`, `LEFT()`, `RIGHT()` - Concatenating strings with `+` or `CONCAT()`. Date/Time Functions in SQL Server - Getting the current date/time (`GETDATE()`, `SYSDATETIME()`) - Adding/subtracting dates (`DATEADD()`) - Finding the difference between dates (`DATEDIFF()`) - Extracting parts of a date (`YEAR()`, `MONTH()`, `DAY()`)
Introduction to Joins - What are joins? Why do we use them - Types of Joins - INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL OUTER JOIN, CROSS JOIN, SELF JOIN
Understanding Transactions - `BEGIN TRANSACTION` - `COMMIT TRANSACTION`- Committing the transaction - `ROLLBACK TRANSACTION` - `SAVEPOINT` - SQL Server Privileges and Subqueries - Granting Permissions - Revoking permissions - Role-based permissions in SQL Server.
Using subqueries in `SELECT`, `WHERE`, `FROM`, and `HAVING` clauses - Correlated Subqueries vs Non-Correlated Subqueries - Subqueries in `JOIN` conditions - Indexes - Creating indexes - Removing indexes - Clustered vs Non-Clustered Indexes. - Impact of indexes on performance (index maintenance, over-indexing).
Views – Creating Views - Modifying views – Removing Views - Using views for complex query simplification - Stored Procedures - Creating stored procedures - Executing stored procedures (`EXEC`) - Input/output parameters in stored procedures - Error handling in stored procedures with `TRY...CATCH – Triggers - Creating triggers `INSERT`, `UPDATE`, `DELETE` operations - BEFORE and AFTER triggers.
What is Power BI? - Overview of Power BI and its significance - Components of Power BI - Power BI Desktop - Power BI Service (Cloud) - Power BI Mobile - Real-world applications in business intelligence - Power BI Workflow - End-to-end process (Extract, Transform, Visualize, Share)
System Requirements - Installing Power BI Desktop - Exploring the interface: Home, Report, Data, and Model views –
Excel, CSV, SQL Server, Web APIs, Azure, and more - Import vs. DirectQuery - Differences and best use cases - Data Connection Management - Scheduling refresh and handling credentials
Introduction to Power Query Editor - Basic Transformations - Renaming columns, changing data types, removing duplicates - Advanced Transformations - Merging and appending queries - Pivoting and unpivoting columns - Handling null values and errors
Data Modelling Concepts - Fact Tables vs. Dimension Tables - Star Schema vs. Snowflake Schema - Creating Relationships - Cardinality and cross-filter direction - Calculated Columns and Measures - Differences, creation, and use cases
Basic Functions - Aggregation Functions `SUM`, `AVERAGE`, `COUNT` - Logical Functions `IF`, `AND`, `OR`, `NOT`- Intermediate Functions - Date and Time Functions `TODAY`, `YEAR`, `DATEADD` - Text Functions`CONCATENATE`, `LEFT`, `RIGHT`, `MID`- Statistical Functions `MAX`, `MIN`, `MEDIAN`- Filter Functions `FILTER`, `ALL` - Advanced DAX - Time Intelligence Functions `TOTALYTD`, `SAMEPERIODLASTYEAR`, `PARALLELPERIOD`
Basic Visualizations - Bar Charts, Line Charts, Pie Charts, Tables - Advanced Visualizations - Tree Maps, Funnel Charts, Gauge Charts, Maps - Custom Visuals - Importing and using from AppSource - Visual Interactions Filters, slicers, drillthroughs, and cross-filtering
Building Reports - Creating multi-page reports - Designing Dashboards - Combining visuals into cohesive stories - Formatting and Layout - Themes, color schemes, and best practices - Adding Interactivity - Using tooltips, bookmarks, and buttons
-Publishing Reports - Uploading reports to Power BI Service - Datasets, Reports, and Dashboards - Understanding components and their interrelation - Sharing and Collaboration - Workspaces, sharing options, and permissions - Basics of Collaboration - Commenting and annotating
Connect to a Dataset - Prepare and Clean Data - Create Calculations and Visualizations - Build an Interactive Dashboard - Publish and Share on Public or Online