ML stands for.
What is Machine Learning?
Google's web browsing application.
What is Chrome?
Popular code editor known for its speed, extensions, and built-in terminal.
What is VS Code?
This programming language is...
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
What is Java?
This is all the the physical parts of a computer, like the monitor, keyboard, processor, etc. Anything physical.
What is hardware?
WiFi stands for.
What is Wireless Fidelity?
Google's web-based framework.
What is Angular?
This platform allows developers to colab on code, manage repositories, and use push/pull requests.
What is GitHub?
This programming language is...
for i in range(5):
print("Hello, world!")
What is Python?
The main software the runs a computer and is at the core of its functionality.
What is Operating System (OS)?
OOP stands for.
Google's open-source machine learning framework.
What is TensorFlow?
This lightweight tool can mock APIs for testing without needing a backend. It is commonly used among developers.
What is Postman?
This programming language is...
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
What is C?
Part of the computer that temporarily stores data while it is in use. It is erased when power is off (volatile).
CRUD stands for.
This AI-based voice helper is available on android devices and smart speakers.
What is Google Assistant?
The containerisation tool lets you package and deploy apps with all their dependencies.
What is Docker?
This programming language is...
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
What is Go (Golang)?
This process translates high-level programming code into machine readable instructions.
The GPT in ChatGPT stands for.
This tool helps developers test websites across devices and improve performance.
What is Google Lighthouse?
This powerful and minimalist text editor is known for its steep learning curve and keyboard-only navigation.
What is Vim?
This programming language is...
factorial :: Integer -> Integer
factorial 0 = 1
factorial n = n * factorial (n - 1)
What is Haskell?
The term for testing software by examining internal logic.
What is white-box (structural) testing?