Output
Functions
Syntax
Definitions
Abbreviations
100

fruit = [ "apple", "banana", "cherry"]

for x in fruits:

    print (x)

What is nothing?

100

A block of reusable code that performs a specific task is called this

What is Function?

100

print ("Hello World!)

What is "?

100

The process of finding and fixing errors in a program

What is Debugging?

100

The longer version of RAM

What is Random Access Memory?

200

x = 45

y = 25

z= 3

print ( z+x*y)

What is 1128?

200

This keyword is used to define a function in python

What is def?

200

fruits == ["apple", "banana", "cherry"]

for x in fruits:

    print (x)

    

What is =?

200

A plain-language outline of a program’s logic before writing real code

What is Pseudocode?

200

The longer version of OOP

What is Object Oriented Programming?

300

nums = [7,6,8,9,11]

newNums= []

for i in nums:

    newNums.append(i*2)

print (newNums)



What is [14,12,16,18,22] ?

300

This key word starts a conditional statement 

What is if?

300

nums = [7,6,8,9,11]

newNums= []

for i in nums{

    newNums.append(i*2)

}

print (newNums)

What is {}?

300

An error that occurs while a program is running 

Runtime Error

300

The longer version of CPU

What is Central Processing Unit?

400

nums = [7,6,8,9,11]

evenNums= []

oddNums = []

for i in nums:

    if i%2 != 0:

        evenNums.append(i)

    else:

        oddNums.append(i)

print ("Even Numbers: ", evenNums)

print ("Odd Numbers: ", oddNums)

What is 

Even Numbers:  [7, 9, 11]

Odd Numbers:  [6, 8] 

400

This key word stops a loop immediately 

What is break?

400

nums = [7,6,8,9,11]

evenNums= []

oddNums = []

for i in nums:

    if i%2 != 0:

        evenNums.append(i)

    else:

        oddNums.append(i)

print ("Even Numbers: "+ evenNums)

print ("Odd Numbers: "+ oddNums)

What is +?

400

A named storage location in a computers memory that holds a value or data

What is Variable?

400

The longer version of IDE

What is Itegrated Development Environment?
500

class Solution(object):

    def twoSum(self, nums, target):

        for i in range(len(nums)):

            for j in range(i + 1, len(nums)):

                if nums[i] + nums[j] == target:

                    return [i, j]

Input: nums = [2,7,11,15], target = 9

Output:

What is [0,1]?

500

A function that calls itself is called this

What is Recursive Function?

500

class Solution(object):

    def twoSum(self, nums, target):

        for i in range(len(nums)):

            for j in range(i + 1, len(nums)):

                if nums[i] + nums[j] = target:

                    return [i, j]

What is ==?

500

A prebuilt structured foundation of code, libraries, and tools that are designed to streamline software development

What is Framework?

500

The longer version of API

What is Application Programming Interface?