name of a program or system that can learn from data and improve over time
a machine learning model
what ui does swift operate on
swiftui
what is a boolean
the data type in Python for values like True or False
what is font-size?
this CSS property adjusts the size of text
metric used to measure how often a machine learning model makes the correct prediction
accuracy
what keyword is used to declare a constant in Swift
what is the brackets that you use for a list
[]
what is <p>?
this tag is used to create a new paragraph in HTML
what is supervised learning
in this type of learning, a model is trained using labeled data
what is string interpolation
this syntax is used to include variables directly inside strings in Swift
what is something you cannot start a variable with
number, special character, reserved keywords (eg. if, else, then)
what is href?
this attribute in an <a> tag specifies the URL of the link’s destination
what is a decision tree
algorithm known for classifying data by placing it into a "tree" of decisions, basicall
what is an enum
Swift allows you to define this data type with a fixed set of related values
how do you retrieve the first item from a list, list_name = [1, 2, 3]
list_name[0]
what is <ul>?
this tag is used to create an unordered (bulleted) list in HTML
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
write a function named greet that takes a String parameter name and prints "Hello, name!"
func greet(name: String) {
print("Hello, \(name)!") }
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
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