Coding

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/16

flashcard set

Earn XP

Description and Tags

technologies

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

retrieve (v)

To obtain data or information from storage, typically using a specific method or protocol.

ex: Using SQL to manage, query, and ____ stock data from a database.

2
New cards

data schema (n)

is the organisation and structure of a databaset hat defines how data is stored, organized, and accessed.

<p><span>is the organisation and&nbsp;structure of a </span>databaset hat defines how data is stored, organized, and accessed. </p>
3
New cards

TAC report

is a document that provides an analysis of the technical, operational, and financial aspects of a project, often used to assess its impact or feasibility.

4
New cards

Git

It tracks changes in your code and helps you collaborate with others.

5
New cards

GitHub

is a cloud-based hosting platform for Git repositories.

It stores your Git-managed projects online, making it easier to share and collaborate.

It also offers features such as issue tracking, project management, and version control collaboration.

6
New cards

indicator (n)

a measurement or sign that provides information about a particular situation or progress, often used to assess performance or conditions.

7
New cards

Come after sb/sth

To chase or take action against sb/sth in order to position, place or time.

ex: In the array, index 2 _____ index 1, so the program accesses it next in the loop.

8
New cards

Iterate (v)

To repeat a process, usually to improve it or move step-by-step toward a result — very common in coding, algorithms, and design.

Ex: Developers often ____ the design based on user feedback in each version

9
New cards

concatenate (v)

to put things together as a connected series or chain, often used in programming to combine strings or data.

ex: "I will ______ the two strings to form a complete message, and it is called string concatenation."

10
New cards

increment (v) = add to

(formal) an increase in a number or an amount

Ex: To track user activity, the system _____the login count every time someone logs in

11
New cards

Come up with

= propose = formulate=suggest

To think of, invent, or suggest an idea, solution, plan, or answer — usually something creative or useful.

ex: The developer _______ a new algorithm to improve loading speed

12
New cards

constraint (n)

is a restriction or rule that defines the conditions a solution must meet. It helps ensure the correctness, efficiency, and validity of the program, algorithm, or data.

ex: Given an array of up to 10⁵ elements, find the max sum… (constraint: O(n) time)

13
New cards

median (n)

is the middle value in a list of numbers when the numbers are sorted in order.

ex: numbers = [3, 1, 4, 2]
sorted_numbers = sorted(numbers)  # [1, 2, 3, 4]
middle1 = sorted_numbers[1]
middle2 = sorted_numbers[2]
median = (middle1 + middle2) / 2
print(median)  # Output: 2.5

14
New cards

Sorted array (n)

is a list of elements (usually numbers or strings) that is arranged in a specific order such as ascending (low to high) or descending( high to low)

15
New cards

merged array

combining two or more arrays into one — often while keeping the resulting array sorted.

a = [1, 3, 5]
b = [2, 4, 6]
merged = sorted(a + b)  # [1, 2, 3, 4, 5, 6]

16
New cards

Partitioning an array

dividing the array into parts (usually based on a condition or pivot) so that elements are grouped by some rule — such as smaller/larger than a pivot.

17
New cards