Skip to main content

Posts

COMPUTER FUNDAMENTAL MCQS

Which computer component is responsible for displaying visual output on the monitor? a. CPU b. RAM c. GPU d. HDD Answer: c. GPU What does BIOS stand for in computing? a. Basic Input/Output System b. Binary Input/Output System c. Backup Input/Output System d. Basic Internal Operating System Answer: a. Basic Input/Output System Which type of software helps manage hardware components and resources of a computer? a. Application Software b. Operating System c. Utility Software d. Firewall Software Answer: b. Operating System Which file extension is commonly associated with executable program files in Windows? a. .exe b. .doc c. .jpg d. .txt Answer: a. .exe In computer networking, what does LAN stand for? a. Local Area Network b. Long Area Network c. Logical Access Network d. Link Area Network Answer: a. Local Area Network Which of the following is not a web browser? a. Google Chrome b. Mozilla Firefox c. Microsoft Word d. Safari Answer: c. Microsoft Word What is the primary function of an a...

computer fundamental MCQS

 What does CPU stand for? a. Central Processing Unit b. Computer Peripheral Unit c. Central Program Unit d. Control Processing Unit Which component of a computer is responsible for storing data and programs for future use? a. CPU b. RAM c. Hard Drive (HDD/SSD) d. GPU What does RAM stand for? a. Random Access Memory b. Read-Only Memory c. Rapid Access Memory d. Remote Access Memory Which computer component interprets and executes instructions from the computer's memory? a. RAM b. CPU c. GPU d. Hard Drive What does GUI stand for in computing? a. Graphical User Interface b. General User Interface c. Global User Interface d. Graphical Utility Interface Which programming language is often used for web development and is known for its client-side scripting capabilities? a. Java b. Python c. JavaScript d. C++ What does URL stand for? a. Uniform Resource Locator b. Universal Resource Link c. Uniform Retrieval Link d. Universal Retrieval Locator Which computer port is typically used for con...

Object oriented programming

 Object-Oriented Programming (OOP) is a programming paradigm that uses objects and classes to structure and design code. It's based on several core concepts, each with its own advantages and disadvantages. Here's an explanation of these concepts and their pros and cons: Class: Explanation: A class is a blueprint or template for creating objects. It defines the attributes (properties) and methods (functions) that objects of the class will have. Advantages: Encapsulation allows data and functions to be grouped, making code organized and easier to understand. Reusability - classes can be instantiated multiple times. Disadvantages: Overhead - classes can sometimes introduce complexity and overhead for small programs. Object: Explanation: An object is an instance of a class. It represents a real-world entity and has its own set of data (attributes) and behaviors (methods). Advantages : Modeling - objects allow you to model real-world entities accurately. Modularity - changes to one...