Acronyms
Google Technologies
Dev Tools
Programming Languages
Tech101
100

ML stands for.

What is Machine Learning?

100

Google's web browsing application.

What is Chrome?

100

Popular code editor known for its speed, extensions, and built-in terminal.

What is VS Code?

100

This programming language is...

public class HelloWorld {

    public static void main(String[] args) {

        System.out.println("Hello, world!");

    }

}

What is Java?

100

This is all the the physical parts of a computer, like the monitor, keyboard, processor, etc. Anything physical.

What is hardware?

200

WiFi stands for.

What is Wireless Fidelity?

200

Google's web-based framework.

What is Angular?

200

This platform allows developers to colab on code, manage repositories, and use push/pull requests.

What is GitHub?

200

This programming language is...

for i in range(5):

    print("Hello, world!")

What is Python?

200

The main software the runs a computer and is at the core of its functionality.

What is Operating System (OS)?

300

OOP stands for.

What is Object-Oriented Programming?
300

Google's open-source machine learning framework.

What is TensorFlow?

300

This lightweight tool can mock APIs for testing without needing a backend. It is commonly used among developers.

What is Postman?

300

This programming language is...

#include <stdio.h>

int main() {

    printf("Hello, world!\n");

    return 0;

}


What is C?

300

Part of the computer that temporarily stores data while it is in use. It is erased when power is off (volatile). 

What is RAM?
400

CRUD stands for.

What is Create, Read, Update, Delete?
400

This AI-based voice helper is available on android devices and smart speakers.

What is Google Assistant?

400

The containerisation tool lets you package and deploy apps with all their dependencies.

What is Docker?

400

This programming language is...

package main

import "fmt"

func main() {

    fmt.Println("Hello, world!")

}


What is Go (Golang)?

400

This process translates high-level programming code into machine readable instructions.

What is Compilation?
500

The GPT in ChatGPT stands for. 

What is Generative Pretrained Transformer?
500

This tool helps developers test websites across devices and improve performance.

What is Google Lighthouse?

500

This powerful and minimalist text editor is known for its steep learning curve and keyboard-only navigation.

What is Vim?

500

This programming language is...

factorial :: Integer -> Integer

factorial 0 = 1

factorial n = n * factorial (n - 1)


What is Haskell?

500

The term for testing software by examining internal logic.

What is white-box (structural) testing?