Coding Vocab
Syntax/Functions
Coding Languages
Random Questions 1
Random Questions 2
100

What is a program?

A sequence of instructions which the computer can run or execute

100

print"Hello, my name is..."

What is wrong with the syntax?

There needs to be brackets

100

What programming language are we learning?

 Python

100

Name 1 founder of Microsoft


Bill Gates 

Paul Allen

100

How to print in Javascript

console.log()

200

What is it called when you try to switch a data type in Python?

Casting

200

if(x == 1)

   print("x is 1")

What is wrong with this syntax?

There is a colon missing after the condition

200

What 2 programming languages have the letter 'C' in it?

C or C++ or C#

200

What is the competition held by Waterloo for Programming Called?

Canadian Computing Competition


200

What data type would be 4.012

Float

300

Why is looping convenient?

Helps to lessen amount of code written 

300

What is the function used to round decimal values

Round or .round()

300

Name 4 different languages for programming 

Python, Java, C++, Javascript, Ruby, C, etc.

300

What are the 2 main different loops in python (that we learnt)

While & For Loop

300

What is the second most popular programming language?

Java

400

Define an Algorithim

Procedure or Formula used to solve a problem

400

What function is used to add an element onto an array

Append 

400

What back-end language is used with C++ and HTML

Javascript

400

What is the device which skyrocketed Apple's Sales in the 1990s

Macintosh

400

What does a Compiler do to read Code

Convert to Binary

500

Define a Library

Collection of related modules, helps to use different kinds of code.

500

Name the 2 Libraries used in the Adventure Game which allowed us to use the random function and delay print statements...

import random

import time

500

What coding language is used to create Twitter?

Ruby

500

How many total Programming Languages are there (within 50)

around 700

500

What are the 4 components of the for loop

Init

Condition

Incrementation

Statement or Execution