Class 12 Informatics Practices Revision Flashcards

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

1/43

flashcard set

Earn XP

Description and Tags

Vocabulary practice flashcards covering key topics in Python Pandas, Matplotlib, SQL Database management, Networking, and Web Technologies based on the revision transcript.

Last updated 3:22 PM on 8/27/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

44 Terms

1
New cards

Pandas

A Python library created by Wes McKinney in 2008 used for data analysis and manipulation of structured data.

2
New cards

Library

A collection of pre-written code (modules and functions) that helps simplify programming tasks in Python.

3
New cards

Series

A One-Dimensional Pandas data structure where data (value) is mutable, size is immutable, and elements must be homogeneous.

4
New cards

DataFrame

A Two-Dimensional Pandas data structure where both value and size are mutable, and columns can contain heterogeneous data types.

5
New cards

Series.index

An attribute that returns the index of the series.

6
New cards

Series.values

An attribute that returns the underlying data as an ndarray.

7
New cards

Series.dtype

An attribute that returns the data type (dtype) of the underlying data.

8
New cards

Series.shape

An attribute that returns a tuple of the shape of the underlying data.

9
New cards

Series.nbytes

An attribute that returns the number of bytes used by the underlying data.

10
New cards

Series.ndim

An attribute that returns the number of dimensions, which is always 11 for Series.

11
New cards

Series.size

An attribute that returns the number of elements in the series.

12
New cards

Series.itemsize

An attribute that returns the size (in bytes) of one element in the underlying data.

13
New cards

Series.hasnans

An attribute that returns True if there are any NaN values in the series.

14
New cards

Series.empty

An attribute that returns True if the series is empty.

15
New cards

CSV File

A Comma Separated Value text file where values are separated by commas, each line represents a record (row), and each row consists of one or more fields (columns).

16
New cards

Matplotlib

A Python library used for data visualization.

17
New cards

matplotlib.pyplot

The module inside Matplotlib used for creating charts.

18
New cards

Line Chart

A data visualization chart that shows trends over time using continuous values on the X-axis and a line connecting data points.

19
New cards

Bar Chart

A data visualization chart that compares categories using rectangular bars and categorical values on the X-axis.

20
New cards

Histogram

A data visualization chart that shows data distribution using continuous values (bins) on the X-axis and bars showing frequency.

21
New cards

Degree

The total number of attributes in a database table.

22
New cards

Cardinality

The total number of rows in a database table.

23
New cards

Primary Key

A column or a set of columns in a table that uniquely identifies each record in the table.

24
New cards

Foreign Key

A column in one table that uniquely identifies a row of another table, creating a relationship between the two tables.

25
New cards

DDL

Data Definition Language commands (such as CREATE, ALTER, DROP, RENAME) that define the structure of a database.

26
New cards

DML

Data Manipulation Language commands (such as INSERT, UPDATE, SELECT, DELETE) that manipulate data within a database.

27
New cards

Cartesian Product

A relational database operation where total rows equal Rows×Rows\text{Rows} \times \text{Rows} and columns from both tables are combined.

28
New cards

Equi Join

A type of database join that joins rows with equal values in specified columns.

29
New cards

ARPANET

The first prototype of the internet developed by the Advanced Research Projects Agency.

30
New cards

NSF

National Science Foundation, an agency promoting science research and education.

31
New cards

Modem

A network device that modulates and demodulates signals for internet connectivity.

32
New cards

Router

A network device that connects and manages multiple networks.

33
New cards

Repeater

A network device that amplifies and extends network signal range.

34
New cards

Gateway

A network device that translates data between different protocols.

35
New cards

Bridge

A network device that connects and filters traffic between two Local Area Networks (LANs).

36
New cards

Hub/Switch

A central connection point for devices in a network.

37
New cards

Tree Topology

A hierarchical network topology combining bus and star topologies.

38
New cards

Mesh Topology

A network topology that requires n(n1)2\frac{n(n-1)}{2} connections for fully connecting nn nodes.

39
New cards

IP Address

A unique identifier assigned to a device in a network.

40
New cards

VoIP

Voice over Internet Protocol; technology that allows voice communication over the internet instead of traditional phone lines.

41
New cards

Domain Name

Human-readable names mapping to IP addresses, such as google.com.

42
New cards

Add-ons

Browser extensions that modify or add new features to a web browser, such as a Dark Mode extension.

43
New cards

Plugins

External software components that enable specific functionality within a browser, such as Flash Player.

44
New cards

Cookies

Small data files stored on a user's device by websites to remember preferences and track activity.