100% tevredenheidsgarantie Direct beschikbaar na betaling Zowel online als in PDF Je zit nergens aan vast
logo-home
CSC exam practice questions fully solved &updated $14.49   In winkelwagen

Tentamen (uitwerkingen)

CSC exam practice questions fully solved &updated

 0 keer bekeken  0 keer verkocht
  • Vak
  • Csc
  • Instelling
  • Csc

CSC exam practice questions fully solved &updated

Voorbeeld 3 van de 20  pagina's

  • 5 november 2024
  • 20
  • 2024/2025
  • Tentamen (uitwerkingen)
  • Vragen en antwoorden
  • Csc
  • Csc
avatar-seller
BRAINBOOSTERS
CSC exam practice questions
fully solved &updated
The code
int funct(char, char);
is:


1. A function prototype
2. A function definition
3. A function call
4. None of the above - answer A function prototype


What is the return type of the following prototype:
int func(char x, double t);


1. char
2. int
3. double
4. func
5. void
6. char and double - answer int


Which of the following is a valid function call in C++ (assuming a
function called 'funct' exists):


1. funct;
2. funct x, y;

,3. funct();
4. int funct(); - answer funct();


Given the function prototype:
int funct(char x, double y, bool z);
which of the following would be the MOST correct call:


1. int funct(char x, double y, bool z);
2. funct(char x, double y, bool z);
3. funct('a', 2.5, true);
4. funct 'a', 2.5, true;
5. int answer = funct('a', 2.5, true); - answer int answer = funct('a',
2.5, true);


The function prototype
int foo (int y, int x = 4);
means:


1. The parameter y is passed by value.
2. The parameter x has a default value of 4.
3. The function foo returns an int value.
4. All of the above. - answer All of the above.


When two functions with the same name are defined in the same
scope, the function is:


1. static
2. inline
3. overridden

, 4. overloaded - answer overloaded


Overloaded functions must have:


1. different return types
2. different executable statements
3. different types and/or number of arguments
4. all of these - answer different types and/or number of arguments


Given the following code, what would the output be:
#include <iostream>using namespace std;
void func_one();void func_two();void func_three();
int x = 1;
int main() {int x = 2;func_one();cout << x << " ";func_two();
return 0;}
void func_one() {int x = 3;cout << x << " ";func_three();}
void func_two() {cout << x << " ";func_three();}
void func_three() {cout << x << " ";}


1. 3 1 2 1 1
2. 3 3 2 2 2
3. 3 2 2 2 2 - answer 31211


Consider the following statements and assume the standard
iostream library has been included:
void doub(int x) { x = x * 2; }void trip(int & x) { x = x * 3; }
int main () {
int x = 1;

Voordelen van het kopen van samenvattingen bij Stuvia op een rij:

Verzekerd van kwaliteit door reviews

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

Snel en makkelijk kopen

Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.

Focus op de essentie

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 BRAINBOOSTERS. Stuvia faciliteert de betaling aan de verkoper.

Zit ik meteen vast aan een abonnement?

Nee, je koopt alleen deze samenvatting voor $14.49. Je zit daarna nergens aan vast.

Is Stuvia te vertrouwen?

4,6 sterren op Google & Trustpilot (+1000 reviews)

Afgelopen 30 dagen zijn er 83637 samenvattingen verkocht

Opgericht in 2010, al 14 jaar dé plek om samenvattingen te kopen

Start met verkopen
$14.49
  • (0)
  Kopen