Posts

Showing posts from February 1, 2026

Emerging Trends🎬

📝View PDF Notes Emerging Trends: Artificial Intelligence, Machine Learning, Natural Language Processing, Immersive experience (AR, VR), Robotics, Big data and its characteristics, Internet of Things(IoT), Sensors, Smart cities, Cloud Computing and Cloud Services (SaaS, IaaS , PaaS ); Grid Computing, Block chain technology

Computer Networks (PART-2)🎬

📝View PDF Notes Computer Networks: (PART-2) • Network protocol • Introduction to web services

Computer Networks (PART-1)🎬

📝View PDF Notes Computer Networks: (PART-1) • Evolution of networking • Data communication terminologies • Transmission media • Network devices • Network topologies and Network types

Society, Law and Ethics🎬

📝View PDF Notes Society, Law and Ethics: • Digital Footprints • Digital society and Netizen: net etiquettes, communication etiquettes,social media etiquettes • Data protection: Intellectual Property Right (copyright, patent, trademark), violation of IPR (plagiarism, copyright infringement, trademark infringement), open source softwares and licensing (Creative Commons, GPL and Apache) • Cyber-crime: definition, hacking, eavesdropping, phishing and fraud emails,ransomware, preventing cyber crime • Cyber safety: safely browsing the web, identity protection, confidentiality, cyber trolls and bullying. • Safely accessing web sites: malware, viruses, trojans, adware • E-waste management: proper disposal of used electronic gadgets • Indian Information Technology Act (IT Act) • Technology & Society: Gender and disability issues while teaching and using computers

CSV File🎬

📝View PDF Notes CSV File: import csv module, open / close csv file, write into a csv file using csv.writerow() and read from a csv file using csv.reader( )

Binary File🎬

📝View PDF Notes Binary File: Basic operations on a binary file: open using file open modes (rb, rb+,wb, wb+, ab, ab+), close a binary file, import pickle module, dump () and load () method read, write/create, search, append and update operations in a binary file

Introduction to files & TEXT files🎬

📝View PDF Notes Introduction to files & TEXT files: Introduction to files, types of files (Text file, Binary file, CSV file), relative and absolute paths Text file: opening a text file, text file open modes (r, r+, w, w+, a, a+), closing a text file, opening a file using with clause, writing/appending data to a text file using write () and writelines(), reading from a text file using read (), readline() and readlines(), seek and tell methods, manipulation of data in a text file

Functions🎬

📝View PDF Notes Functions: Types of functions (built-in functions, functions defined in module, user-defined functions),Creating user-defined functions, Arguments and parameters, Default parameters, Positional parameters, Function returning value(s), Flow of execution, Scope of a variable (global scope, local scope)