Evolution of Networking:Introduction to Computer Networks:Networking: Network is an interconnection of two or more Computers that are Connected together to share data and information.Major components of a Computer Networks are :(a) Hosts/Nodes (such as PC, laptops, smartphones etc.)(b) Servers(c) Clients(d) Network...
Tuesday, October 22, 2024
undefined
202
Wednesday, October 2, 2024
undefined
202
CCC Online Test 20 Questions हेलो दोस्तों जो भी साथी CCC परीक्षा की तैयारी कर रहे हैं उनके लिए यह सीरीज बहुत ही महत्वपूर्ण है इसमें कुल 20 प्रश्नों के बारे में बताया गयाहै जिससे आप ccc का तैयारी कर सकते है और यह परीक्षाओं मे भी मदद करेगा जोकि नये सिलैबस पर अधारित है
...
Tuesday, September 17, 2024
undefined
202
Stack in Python: How To Implement Python Stack?Hello friends, this series is very important for those who are preparing for Class 12th CBSE BOARD exam. It describes about stack implementation through which you can prepare for Class 12th...
Sunday, September 8, 2024
undefined
202
CCC Online Test 10 Questions हेलो दोस्तों जो भी साथी CCC परीक्षा की तैयारी कर रहे हैं उनके लिए यह सीरीज बहुत ही महत्वपूर्ण है इसमें कुल 10 से भी अधिक प्रश्नों के बारे में बताया गयाहै जिससे आप ccc का तैयारी कर सकते है और यह परीक्षाओं मे भी मदद करेगा जोकि नये सिलैबस पर अधारित है
...
Thursday, September 5, 2024
What is stack implementation in data structurePart 2stackstack is a linear data structure which is used to store data in LIFO(last in first out) or FILO(first in last out)What is a Data Structure?Read Part 1A data structure is a logical way of organizing data that makes them efficient to use.Operations on Data StructuresThe...
Monday, September 2, 2024
undefined
202
Class 12 Computer Science Chapter 7 Notes Part -1Computer science chapter 7 data structure class 12 What is data -Data refers to the factual information used to represent events, objects, or concepts in a manner that can be communicated, stored, and processed by humans or machines. such as:1. Numbers (e.g.,...
Tuesday, August 27, 2024
undefined
202
he exception keyword in PythonWhat is keyword of exception in python in class 12Exception have four Keyword i) try:ii) except:iii) else:iv) finally:try block:try block is the block that contains the code of segment that might contain exception except:When exception is found in try block. the code inside...