Skip to main content

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 connecting external hard drives and other peripheral devices?

a. USB

b. HDMI

c. VGA

d. Ethernet


Which of the following is an example of an operating system?

a. Microsoft Office

b. Windows

c. Microsoft Excel

d. Adobe Photoshop


What does ISP stand for in the context of internet connectivity?

a. Internet Service Provider

b. Internet Security Protocol

c. Internal Server Platform

d. Internet Source Protocol


Answers:


a. Central Processing Unit

c. Hard Drive (HDD/SSD)

a. Random Access Memory

b. CPU

a. Graphical User Interface

c. JavaScript

a. Uniform Resource Locator

a. USB

b. Windows

a. Internet Service Provider

Comments

Popular posts from this blog

Software Process Model(SPM)

  Explain spiral development model with advantages and disadvantages The Spiral Development Model is a risk-driven software development approach that combines iterative and waterfall models. It involves repeated cycles (or spirals) to incrementally refine the software project. Each spiral consists of four major phases: Planning , Risk Analysis , Engineering , and Evaluation .                                                           Fig: Spiral Software development model Phases in the Spiral Model: Planning : Requirements are gathered and objectives are set for the project. Risk Analysis : Risks are identified, analyzed, and mitigation strategies are developed. Develop/Engineering : The actual development and testing of the product take place. Evaluation : Stakeholders/users review the progress and provide feedback, inf...

Solution of NEB model quetions

 solution to model questions are : 

DBMS-SQL

SQL DDL and DML Examples Examples of DDL (Data Definition Language) and DML (Data Manipulation Language) commands in SQL. DDL (Data Definition Language) Examples: 1. Create a new database: CREATE DATABASE SchoolDB;  2. Create a table: CREATE TABLE Students ( StudentID INT PRIMARY KEY, FirstName VARCHAR(50), LastName VARCHAR(50), Age INT );  3. Alter a table to add a new column: ALTER TABLE Students ADD Email VARCHAR(100);  4. Drop a table: DROP TABLE Students;  5. Rename a table: ALTER TABLE OldTableName RENAME TO NewTableName;  DML (Data Manipulation Language) Examples: 1. Insert data into a table:  INSERT INTO Students (StudentID, FirstName, LastName, Age) VALUES (1, 'John', 'Doe', 20);  2. Update data in a table: UPDATE Students SET Age = 21 WHERE StudentID = 1;  3. Delete data from a table: DELETE FROM Students WHERE StudentID = 1;  4. Select data from a table: SELECT * FROM Students;  5. Select data with conditions: SELECT FirstName...