logo

Crowdly

Olympiad- Eng- Comp-Sciences-1

Шукаєте відповіді та рішення тестів для Olympiad- Eng- Comp-Sciences-1? Перегляньте нашу велику колекцію перевірених відповідей для Olympiad- Eng- Comp-Sciences-1 в do.ipo.kpi.ua.

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

What will be the output of the following C code?

#include <iostream>

using namespace std;

int main() {

int a = -3, b = ~ a;

cout << b;

printf("+%b", b);

return 0;

}

0%
0%
0%
100%
Переглянути це питання
What will be the output of the following C code?

#include <iostream>

using namespace std;

int main() {

    int a = 0, b = 1;

    if (a & b)

    { cout << "1"; return 1; }

    else {

      if (a && b)

      { cout << "2"; return 2; }

      else { cout << "3"; return 3; }

    }

    return 0;

}

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

What will be the output of the following C code?

#include <iostream>

using namespace std;

int main() {

char a = 89;

cout << a;

printf("+%x", a);

return 0;

}

0%
100%
0%
0%
Переглянути це питання
What is the maximum file size supported by FAT32?
100%
0%
0%
0%
Переглянути це питання
A Windows file is 5 mebibytes (MiB) in size. How many megabytes (MB) is it approximately?
0%
0%
100%
0%
Переглянути це питання

What is the main advantage of NTFS over FAT32?

0%
0%
100%
0%
Переглянути це питання
What will be the output of the following C code?

#include <stdio.h>

int main() {

    char a = 'C';

    int b = 5;

    float c = (a + b) / 5.0;

    printf("%.2f\n", c);

    return 0;

}

0%
0%
100%
0%
Переглянути це питання
What will be the output of the following C code?

#include <stdio.h>

int main() {

    int x = 10;

    int *p = &x;

    *p = 20;

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

    return 0;

}

0%
100%
0%
0%
Переглянути це питання
What is the purpose of file permissions in a file system?
0%
0%
100%
0%
Переглянути це питання

What will be the output of the following C code?

#include <iostream>

using namespace std;

int main() {

float a = -0.9; int i = 89;

do {a += 0.01; i--;} while (i > 0); cout << a;

return 0;

}

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

Хочете миттєвий доступ до всіх перевірених відповідей на do.ipo.kpi.ua?

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