Computer Games Development: Q&A on Programming Concepts, Exams of Computer Programming

A series of questions and answers related to computer games development, focusing on fundamental programming concepts. It covers topics such as copyright rights, commands, comments, debugging, programs, python, syntax, variables, data types (string, integer, float, boolean), conditional statements, operators, loops, libraries/modules, and various programming constructs. This material is useful for students learning the basics of game programming and software development, offering a concise overview of essential terminology and concepts.

Typology: Exams

2025/2026

Available from 10/15/2025

UK.Exam
UK.Exam 🇬🇧

1

(1)

2.8K documents

1 / 4

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Computer Games Development –
2025-2026 Update- Assignment 2
(Learning Aims B & C) (All Criterias
Met) Questions And verified Answers
What are copyright rights? - Answer-Rights that apply to creative
works
What is a command? - Answer-Instruction to a computer to
perform a task
print("Hello World")
What are comments? - Answer-Annotations added to code to
provide additional information
#comments will have a hashtag
What is debugging? - Answer-Process of finding and fixing
issues in a program
What is a program? - Answer-Collection of commands
What is Python? - Answer-General purpose programming
language
What is syntax? - Answer-Structure of statements in a computing
language
What is a variable? - Answer-Way of storing and keeping track of
data
score = 0
pf3
pf4

Partial preview of the text

Download Computer Games Development: Q&A on Programming Concepts and more Exams Computer Programming in PDF only on Docsity!

Computer Games Development –

2025-2026 Update- Assignment 2

(Learning Aims B & C) (All Criterias

Met) Questions And verified Answers

What are copyright rights? - Answer -Rights that apply to creative works What is a command? - Answer -Instruction to a computer to perform a task print("Hello World") What are comments? - Answer -Annotations added to code to provide additional information #comments will have a hashtag What is debugging? - Answer -Process of finding and fixing issues in a program What is a program? - Answer -Collection of commands What is Python? - Answer -General purpose programming language What is syntax? - Answer -Structure of statements in a computing language What is a variable? - Answer -Way of storing and keeping track of data score = 0

What is a string? - Answer -Data type that is a sequence of characters "How are you?" What is an integer? - Answer -Data type that is a whole number e.g. 7 What is a float? - Answer -Decimal number e.g 7. What is a boolean? - Answer -Data type that can only have True or False values What is a conditional statement? - Answer -Piece of code that contains an if, if/elif or if/else What are operators? - Answer -Specific symbols that carry out mathematical, comparator, and/or logical statements What is a loop? - Answer -Code that repeats a block until a set condition is met What is a while loop? - Answer -Loop that repeats a block until a set condition is met What is an if statement? - Answer -Conditional statement that picks a path based on a condition provided What is an elif statement? - Answer -Conditional statement that picks a path if the previous condition(s) are False and its own condition is True

What is a string variable with input? - Answer -Variable that stores user input What is the equals operator? - Answer -Operator == What is the highlight colour green? - Answer - setHighlightColour(GREEN) What is the greater than operator? - Answer -Operator > What is the text colour green? - Answer -setTextColour(GREEN)