logo

Crowdly

Browser

Add to Chrome

MEA3 : Informatique

Looking for MEA3 : Informatique test answers and solutions? Browse our comprehensive collection of verified answers for MEA3 : Informatique at moodle.umontpellier.fr.

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

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

The following declaration implies that i is a variable of char type.

char

*i;

100%
0%
View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

The following declaration is identical to the previous one.

char

* i;

100%
0%
View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

On a 64-bit architecture computer,  what is the console output produced by the code below ?

char

* i;

printf("%d", (int)sizeof

(i));

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

unsigned char

a, b;

a =

2

;

b =

3

;

a += ++b;

printf("%d %d"

, a, b);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

unsigned char

a, b;

a =

0

;

b =

2

;

a = b++;

printf("%d %d"

, a, b);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

unsigned char

a, b, c;

a =

51

;

b =

5

;

c = a % b;

printf("%d"

, c);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

unsigned char

a, b, c;

a =

6

;

b =

3

;

c = a << b;

printf("%d"

, c);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

int

a, b, c, d;

a =

3

;

b =

5

;

c =

5

;

d = a * b + c - c / a * b;

printf("%d"

, d);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What do you think about the code below ?

int tab[4

];

tab[

10] = 2

;

printf("%d", tab[10

]);

100%
0%
100%
0%
View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What does the following code sequence produce ?

int tab1[4] = {1,2,3,4

};

int tab2[4

];

tab2 = tab1;

100%
0%
0%
View this question

Want instant access to all verified answers on moodle.umontpellier.fr?

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

Browser

Add to Chrome