C for Everyone: Programming Fundamentals Final Exam (Week 6) 2023 with complete solution
3 keer bekeken 0 keer verkocht
Vak
Programming Fundamentals
Instelling
Programming Fundamentals
C for Everyone: Programming Fundamentals Final Exam (Week 6) 2023 with complete solution
Who invented the C language?
Dennis Ritchie invented C at Bell Labs
When you compile a correct C program you get a machine executable file such as produced by the gnu compiler gcc.
True
Which is true:
...
C for Everyone: Programming Fundamentals Final Exam
(Week 6) 2023 with complete solution
Who invented the C language?
Dennis Ritchie invented C at Bell Labs
When you compile a correct C program you get a machine executable file such as
a.out produced by the gnu compiler gcc.
True
Which is true:
1. #define is a preprocessor command often used to introduce named constants
2. double and goto are keywords declaring types.
3. return (0); is normally the last statement in main()
4. The file stdio.h is where the compiler finds scanf().
1, 3, 4
The statement printf("HELLO\t\tWORLD\n");
Prints HELLO WORLD followed by a new line
The expression PI radius radius would be used to compute
A circles area
In a format string for printf which would you use to print an int?
%d
The code
i = -10;
while ( i < 0)
{ ... do something ; i--; }
Displays a common error
its an infinite loop
The following program is suppose to write Hello World onto the screen but it has
syntax errors - find and correct.
#include <stdio.h>
int main(void)
{
printf(" Hello World\n");
return 0,
}
It should be return 0;
Assume the given declarations and fill in the value of the expression . int a = 3, b
= 4, c = 0, d = '1';
Expression: a % b
3
, Assume the given declarations and fill in the value of the expression . int a = 3, b
= 4, c = 0, d = '1';
Expression: b % a
1
Assume the given declarations and fill in the value of the expression . int a = 3, b
= 4, c = 0, d = '1';
Expression: a < b
1
Assume the given declarations and fill in the value of the expression . int a = 3, b
= 4, c = 0, d = '1';
Expression: c < b && a > 3
0
Assume the given declarations and fill in the value of the expression . int a = 3, b
= 4, c = 0, d = '1';
Expression: a / b > c
0
Assume the given declarations and fill in the value of the expression . int a = 3, b
= 4, c = 0, d = '1';
Expression: c = a++
3
Assume the given declarations and fill in the value of the expression . int a = 1, b
= 2, c = 3;
Expression: a - b * c
-5
Assume the given declarations and fill in the value of the expression . int a = 1, b
= 2, c = 3;
Expression: c / a * b
6
Assume the given declarations and fill in the value of the expression . int a = 1, b
= 2, c = 3;
Expression: a++ + --b
2
Assume the given declarations and fill in the value of the expression . int a = 1, b
= 2, c = 3;
Expression: b = a = c
3
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
√ Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, Bancontact of creditcard voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper LECTMAGGY. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €8,05. Je zit daarna nergens aan vast.