logo

Crowdly

Browser

Add to Chrome

ICT1.002 BASIC PROGRAMMING (2025 - 2026)

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!

In Bubble Sort, after the first complete pass through an array of n elements (sorted ascending), which element is guaranteed to be in its correct final position?

View this question

What is the main objective of a variable?

0%
0%
0%
0%
View this question

Which statement best describes const int *p?

0%
0%
0%
0%
View this question

In the "Parking Lot" analogy for swapping, what does the "Empty Spot C" represent?

View this question

What is printed?

push(10);

push(20);

push(30);

pop();

printf("%d", peek());

0%
0%
0%
0%
View this question

Which conversion character is used to print a decimal integer?

View this question

What is wrong with the following code?

struct node* createNode(int x) {

    struct node n;

    n.data = x;

    n.next = NULL;

    return &n;

}

0%
0%
0%
0%
View this question

What is the output of this program?

int a[] = {3, 1, 4, 2};

int mx = a[0];

for(int i = 1; i < 4; i++)

    if(a[i] > mx) mx = a[i];

printf("%d", mx);

View this question

The operator used to access the value of variable at address stored in a pointer

variable is?

0%
0%
0%
0%
View this question
Which is the output of this program?

int a[] = {10, 20, 30};

int *p = a;

printf("%d", *(p + 1));

View this question

Want instant access to all verified answers on moodle.usthlearningsupport.vn?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome