NEW
Font size
WorksheetsCoding Test Review
Total questions: 21
Worksheet time: 11mins
What is object oriented programming?
A programming paradigm that uses 'objects' to design software.
What is abstraction?
What is encapsulation in coding?
What is polymorphism in coding?
What is inheritance in coding?
What is a method in coding?
What is an array in coding?
What is a for loop?
What is a while loop?
What is a conditional in coding?
What is a variable in coding?
Which is an example of a method in C# coding?
Which is an example of a conditional in C# coding?
Which is an example of an array in C# coding?
public int numbers[5];
public array numbers = new array[5];
public int[] numbers = {1,2,3,4,5}
Which is an example of a for loop in C# coding?
while(int i = 0; i < 10; i--) { Console.WriteLine(i); }
if(condition) {i+4}
Which is an example of a while loop in C# coding?
What are the four return types?
Bool is for?
Conditionals
Integers
Numbers
Text/Words
Int is for?
Text/Words
Integers
Numbers
Conditionals
String is for?
Conditionals
Numbers
Text/Words
Integers
Float is for?
Numbers with decimals
Any number
Integers
Text
