Computer Science Class XI Review Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/29

flashcard set

Earn XP

Description and Tags

Practice flashcards for Computer Science Class XI, covering the history of computing, number systems, Boolean algebra, computer architecture, e-waste, and C++ fundamentals based on the SCERT Kerala curriculum.

Last updated 5:34 PM on 6/9/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

30 Terms

1
New cards

What was the base or radix of the Egyptian number system that emerged around 3000 BC?

1010

2
New cards

The Sumerian/Babylonian number system is known by what name because it used 60 as its base?

Sexagesimal system

3
New cards

Which civilization developed a number system with base 2020, derived from the sum of fingers and toes?

The Mayans

4
New cards

Who is credited with inventing a set of numbering rods in 1617 AD for multiplication, known as 'bones'?

John Napier

5
New cards

What was the name of the first modern scientific calculator developed by Blaise Pascal in 1642?

Pascaline

6
New cards

Which individual is titled 'Father of Computer' for inventing the Difference Engine and the Analytical Engine?

Charles Babbage

7
New cards

Who is recognized as the first computer programmer in the world for writing instructions for the Analytical Engine?

Agusta Ada King (Ada Lovelace)

8
New cards

Which company originated from Herman Hollerith's Tabulating Machine Corporation in 1924?

International Business Machines (IBM)

9
New cards

What major technological hardware component characterized first-generation computers (1940-1956)?

Vacuum tubes

10
New cards

What are the three main components of the Central Processing Unit (CPU) in the Von Neumann architecture?

Arithmetic Logic Unit (ALU), Control Unit (CU), and Registers

11
New cards

Which law states that the number of transistors on integrated circuits doubles approximately every two years?

Moore's Law

12
New cards

What are the two most common programming languages used in Artificial Intelligence (AI) mentioned in the text?

LISP and Prolog

13
New cards

Who is regarded as the father of Modern Computer Science and Artificial Intelligence?

Alan M. Turing

14
New cards

What is the base or radix of the Hexadecimal number system?

1616

15
New cards

What was developed to provide a unique number for every character across all languages and platforms?

Unicode

16
New cards

Name the three basic logical operators used in Boolean algebra.

OR, AND, and NOT

17
New cards

What logic gates are referred to as 'universal gates' because they can implement any Boolean function?

NAND and NOR

18
New cards

What are the two theorems proposed by Augustus De Morgan to simplify Boolean expressions?

(i) X+Y=X.Y\overline{X+Y} = \overline{X} . \overline{Y} and (ii) X.Y=X+Y\overline{X.Y} = \overline{X} + \overline{Y}

19
New cards

Which CPU register holds the address of the next instruction to be executed?

Program Counter (PC)

20
New cards

What is the smallest unit of memory measuring units, represented by a binary digit?

11 Bit

21
New cards

What type of memory is used as a small, fast bridge between the processor and RAM to store frequently accessed data?

Cache memory

22
New cards

Which non-impact printer forms images by spraying tiny droplets of liquid ink from the print head?

Inkjet printer

23
New cards

What are the four main disposal methods for e-Waste mentioned in the textbook?

Reuse, Incineration, Recycling, and Landfilling

24
New cards

Which voluntary labeling program was conceived by the EPA in 1992 to promote energy efficiency in hardware?

Energy Star

25
New cards

What is the specific task of the compiler or interpreter as a language processor?

To translate programs written in high-level language into equivalent machine language.

26
New cards

What are the four freedoms defined by the Free Software Foundation (FSF) for free and open-source software?

Freedom 0 (run for any purpose), Freedom 1 (study and adapt code), Freedom 2 (distribute copies), and Freedom 3 (improve and release to public).

27
New cards

What is the difference between a Syntax error and a Logical error?

Syntax errors occur when language rules are violated (detected during translation), while Logical errors occur due to improper planning and result in incorrect output during execution.

28
New cards

In C++, what are the fundamental building blocks of a program called?

Tokens

29
New cards

Which C++ operator is used to determine the amount of memory space in bytes allocated for an operand?

sizeof

30
New cards

What is the significance of the increment/decrement operator in 'prefix' form (e.g., ++x)?

It follows the 'change, then use' method, where the value is incremented/decremented first before being used in other operations.