Computer Science 10
🇬🇧
In English
In English
Practice Known Questions
Stay up to date with your due questions
Complete 5 questions to enable practice
Exams
Exam: Test your skills
Test your skills in exam mode
Learn New Questions
Manual Mode [BETA]
The course owner has not enabled manual mode
Specific modes
Learn with flashcards
Complete the sentence
Listening & SpellingSpelling: Type what you hear
multiple choiceMultiple choice mode
SpeakingAnswer with voice
Speaking & ListeningPractice pronunciation
TypingTyping only mode
Computer Science 10 - Leaderboard
Computer Science 10 - Details
Levels:
Questions:
36 questions
🇬🇧 | 🇬🇧 |
Data items of an Array. | Element |
To initialize an array, use an _____________ of values separated by commas and enclose within curly braces | Initialization list |
Is called when the programmer provides values to all the elements of the array | Populating the array |
The length in array is NOT A METHOD, it is a _________ | FIELD or property of the object |
A loop that allow the program to iterate though an array without specifying the starting and ending points for the loop control variable | Enhanced for loop |
Is one with the same number of elements as another, and for which the values in corresponding elements are related. | Parallel Array |
Comparing a value to the endpoints of numerical ranges to find the category in which a value belongs | Range Match |
– a 2D array that has rows of different lengths. It can also be called as non-rectangular array | Jagged array |
Arrays with more than one dimension | Multidimensional arrays |
Method to remove an item. | Remove() |
Is a mechanism that enables one class to acquire all the behaviors and attributes of another class. | Inheritance |
Is a class that is used as a basis for inheritance. | Base classor superclass or parent class) |
Is a class that inherits from a base class | Derived class (or subclass or child class) |
Methods that work appropriately for subclasses of the same parent class | Subtype polymorphism |