logo

Crowdly

Browser

Add to Chrome

Olympiad- Eng- Comp-Sciences-1

Looking for Olympiad- Eng- Comp-Sciences-1 test answers and solutions? Browse our comprehensive collection of verified answers for Olympiad- Eng- Comp-Sciences-1 at do.ipo.kpi.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

A Windows file is 5 mebibytes (MiB) in size. How many megabytes (MB) is it approximately?
0%
100%
0%
0%
View this question
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%
View this question
Which of the following is the correct way to declare a pointer to an array of 10 integers in C code?
0%
0%
100%
0%
View this question
What is the maximum file size supported by FAT32?
100%
0%
0%
0%
View this question

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%
0%
100%
0%
View this question
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;

}

100%
0%
0%
0%
View this question

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%
0%
0%
100%
View this question
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%
View this question
What is the purpose of file permissions in a file system?
0%
100%
0%
0%
View this question
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%
0%
0%
100%
View this question

Want instant access to all verified answers on do.ipo.kpi.ua?

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

Browser

Add to Chrome