Posts

Showing posts from June, 2025

Quiz Game

'What is the capital of France?', 'options' => ['A. Paris', 'B. London', 'C. Berlin', 'D. Madrid'], 'correct' => 'A' ], [ 'question' => 'Which planet is known as the Red Planet?', 'options' => ['A. Jupiter', 'B. Mars', 'C. Venus', 'D. Mercury'], 'correct' => 'B' ], [ 'question' => 'What is 2 + 2?', 'options' => ['A. 3', 'B. 4', 'C. 5', 'D. 6'], 'correct' => 'B' ] ]; if (!isset($_SESSION['score'])) { $_SESSION['score'] = 0; $_SESSION['current_question'] = 0; $_SESSION['answers'] = []; } // Process form submission if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['answer'])) { $current = $...

Networking + Cloud Basics + Customer Support Tools

  ✅ Networking + Cloud Basics + Customer Support Tools 🗺️ IT Support/Service – Free Learning Roadmap 1. Networking Fundamentals Learn how computers connect, communicate, and exchange data. ✅ Courses: Google IT Support Specialization (Free Audit) – Coursera Modules: Networking, OS, Security 🔗 Google IT Support (Audit Free) Cisco’s Introduction to Networks – NetAcad Real-world networking labs and simulations 🔗 Cisco NetAcad 2. Operating Systems (Windows + Linux) Understanding system administration basics. ✅ Resources: Microsoft Learn – Windows Admin 🔗 Windows Fundamentals Introduction to Linux – edX by Linux Foundation (Audit Free) 🔗 Linux Basics on edX 3. Cloud Computing Basics Understand what cloud is, key services (IaaS, PaaS, SaaS), and platforms. ✅ Beginner-Friendly Courses: AWS Cloud Practitioner Essentials (Free) 🔗 AWS Training Google Cloud Basics – Cloud Digital Leader Path 🔗 Google Cloud Skills Boost...

Python Start Learning

  Pareto Principle or the 80/20 Rule — the idea that roughly 20% of input (knowledge or effort) leads to 80% of output (results) . When applied to Python, this means you only need to learn a core set of essential concepts to solve most real-world problems . Here’s the 20% of Python that gives you 80% of the power : 🧠 1. Python Basics Variables and data types ( int , float , str , bool ) Input/output ( input() , print() ) Comments ( # for single-line, ''' ''' for multi-line) 🔁 2. Control Flow Conditional statements: if , elif , else Loops: for , while Loop control: break , continue , pass 📦 3. Data Structures Lists ( [] ) → Most used! Tuples ( () ) Dictionaries ( {} with key-value pairs) Sets ( set() ) Important operations: Slicing, indexing, appending, removing Iterating through collections 🧩 4. Functions Define with def Return values with return Parameters vs arguments Default argu...

Convert Bootable Pendrive to Normal

 Steps to convert bootable pendrive to Normal: 1. Go to CMD type diskpart 2. type list disk 3. Type Select disk 1 4. Type Clean 5. Type Create Partition primary 6. Right click your USB drive and then select format and start 7. On Warning click OK 8. Go to CMD and type exit