Data Structures Flashcards
What is branching and why it it used in coding?
It is used to tell a computer to begin executing a different instruction sequence. E.g. to deviate from its default behaviour of executing instructions in order.
It is used to make a decision.
What is the flow of control?
It is the order in which the computer executes statements in a script.
What is floating point/float?
It is a variable that contains non whole numbers e.g. the numbers have decimals like 3.1415.
What is a string?
It means text/words/characters e.g. 321, hello
What is an integer?
It is a whole number.
What is a Boolean?
It is a true or false expression.
What is an array?
It is a list of values/information.
What does object oriented mean?
It means you can assign objects to be data functions. This is mostly used for gaming and in languages like Java, C++, C#