machine learning
swift
python
html/css
100

name of a program or system that can learn from data and improve over time

a machine learning model

100

what ui does swift operate on

swiftui

100

what is a boolean

the data type in Python for values like True or False

100

what is font-size?

this CSS property adjusts the size of text

200

metric used to measure how often a machine learning model makes the correct prediction

accuracy

200

what keyword is used to declare a constant in Swift

let
200

what is the brackets that you use for a list 

[]

200

what is <p>?

this tag is used to create a new paragraph in HTML

300

what is supervised learning

in this type of learning, a model is trained using labeled data

300

what is string interpolation

this syntax is used to include variables directly inside strings in Swift

300

what is something you cannot start a variable with

number, special character, reserved keywords (eg. if, else, then)

300

what is href?

this attribute in an <a> tag specifies the URL of the link’s destination

400

what is a decision tree

algorithm known for classifying data by placing it into a "tree" of decisions, basicall

400

what is an enum

Swift allows you to define this data type with a fixed set of related values

400

how do you retrieve the first item from a list, list_name = [1, 2, 3]

list_name[0]

400

what is <ul>?

this tag is used to create an unordered (bulleted) list in HTML

500

what is a convolutional neural network (CNN)

this type of neural network is commonly used in image recognition due to its ability to capture spatial hierarchies

500

write a function named greet that takes a String parameter name and prints "Hello, name!"

func greet(name: String) {    

print("Hello, \(name)!") }

500

what is the difference between list, set, tuple, dictionary

list: ordered and changeable, duplicates allowed

tuple:  ordered and unchangeable, duplicates allowed

set: unordered and unchangeable, unindexed, no duplicates allowed

dictionary: ordered and changeable, no duplicates allowed

500

what is css flexbox

a layout model that allows for the efficient arrangement and alignment of items within a container along a single axis, making responsive web design simpler and more flexible