logo

Crowdly

Browser

Додати до Chrome

ICT1.002 BASIC PROGRAMMING (2025 - 2026)

Шукаєте відповіді та рішення тестів для ICT1.002 BASIC PROGRAMMING (2025 - 2026)? Перегляньте нашу велику колекцію перевірених відповідей для ICT1.002 BASIC PROGRAMMING (2025 - 2026) в moodle.usthlearningsupport.vn.

Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!

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?

!
Переглянути це питання

In a program split into two files (say_hello.h and say_hello.c), where should the function prototype be placed?

!
0%
0%
0%
0%
Переглянути це питання

What is the main objective of a variable?

!
0%
0%
0%
0%
Переглянути це питання

What is printed?

push(10);

push(20);

push(30);

pop();

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

!
0%
0%
0%
0%
Переглянути це питання
Enum constants are stored as:!
0%
0%
0%
0%
Переглянути це питання

Consider the following code:

struct node {

    int data;

    struct node *next;

};

struct node *head = NULL;

void insert(int data) {

    struct node *n = malloc(sizeof(struct node));

    n->data = data;

    n->next = head;

    head = n;

}

After executing:

insert(10);

insert(20);

insert(30);

What is the correct order of elements in the list?

!
0%
0%
0%
0%
Переглянути це питання

Comparing Linear Search and Binary Search, which statement is true?

!
Переглянути це питання

#include <stdio.h>

int main() {

int x=10;

printf("%d, %d, %d\n", x<1, x=100, x>=10);

return 0;

}

!
0%
0%
0%
0%
Переглянути це питання

What is the output of this program?

#include<stdio.h>

int main() {

int a[5] = {4, 9, 1, 5, 6};

printf("%d \n", *(a+2));

return 0;

}

!
Переглянути це питання

In the Insertion Sort algorithm, what happens in the while loop?

0%
0%
0%
0%
Переглянути це питання

Хочете миттєвий доступ до всіх перевірених відповідей на moodle.usthlearningsupport.vn?

Отримайте необмежений доступ до відповідей на екзаменаційні питання - встановіть розширення Crowdly зараз!

Browser

Додати до Chrome