logo

Crowdly

Browser

Додати до Chrome

Процедурне програмування (кіббез)

Шукаєте відповіді та рішення тестів для Процедурне програмування (кіббез)? Перегляньте нашу велику колекцію перевірених відповідей для Процедурне програмування (кіббез) в distedu.ukma.edu.ua.

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

What is the output?

enum Color { RED, GREEN = 5, BLUE };

int main() {

    enum Color c = BLUE;

    printf("%d\n", c);

    return 0;

}

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

 How does a large header file affect compilation time in a C project?

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

If int *p points to address 1000, what is the address after p++ on a 64-bit system? int size is 32 bits.

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

A pointer with value NULL has numeric value 0. What is placed at address 0?

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

What is the correct order of steps in the C compilation process?

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

Which one of the following best describes what will happen when you index an array out of bounds?

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

What will be printed?

#include <stdio.h>

void foo(int arr[], int size) {

    printf("sizeof(arr) = %zu\n", sizeof(arr));

}

int main() {

    int arr[10] = {0};

    foo(arr, sizeof(arr)/sizeof(arr[0]));

    return 0;

}

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

What is "top-down design"?

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

For the following code:

const int * p = &x;

Which one of the following will result in a compiler error?

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

Which of the following are the same semantically as arr[i]?

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

Хочете миттєвий доступ до всіх перевірених відповідей на distedu.ukma.edu.ua?

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

Browser

Додати до Chrome