Looking for ICT1.002 BASIC PROGRAMMING (2025 - 2026) test answers and solutions? Browse our comprehensive collection of verified answers for ICT1.002 BASIC PROGRAMMING (2025 - 2026) at moodle.usthlearningsupport.vn.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
What does the scope of validity of a variable describe?
!What is the Worst Case time complexity of a standard Bubble Sort algorithm?
Which loop is best for a fixed number of iterations?
Which mode is used to open the file for both reading and writting?
!Which of the following is TRUE about blocks?
!What is the output?
struct node *a = malloc(sizeof(struct node));
struct node *b = malloc(sizeof(struct node));
a->data = 1;
b->data = 2;
a->next = b;
b->next = a;
printf("%d %d", a->next->data, b->next->data);
!
Why use functions?
!int a[] = {10, 20, 30};
int *p = a;
printf("%d", *(p + 1));
!