Scroll Progress Bar

Flash Cards


What is the potential drawback of a do-while loop in C?


At least once

What is the purpose of the 'break' statement in C?


Termination

In which control structures is the 'break' statement commonly used?


Loops

What happens when 'break' is executed within a switch statement in C?


Exit

What is the purpose of the 'continue' statement in C?


Skip

Where is the 'continue' statement used in loops?


Loops

What does the 'continue' statement do when executed?


Iteration

What is a collection of elements of the same data type in C?


Array

What is the position of the first element in an array in C?


Zero

What do you use to access elements in an array in C?


Index

What is the maximum number of dimensions an array can have in C?


Multi

What C keyword is used to declare an array?


Array

What is Bubble Sort?


Sorting

How does Bubble Sort work?


Comparisons

What is the time complexity of Bubble Sort in the worst case?


Quadratic