Given the following code segment, what is output to the screen? char name1[20] = "Sean"; char name2[20] = "Pierce"; strcpy(name1,name2); cout << name1 << " " << name2; Group of answer choices Pierce Pierce Sean Sean Sean Pierce None of these   ================== Given the following code segment, what is output to the screen?   void assignments(int&, int); int main() { int output = 0, input = 5; assignments(output, input); cout << output << endl; } void assignments(int& myOutput, int myInput) { if (myInput < 0) myOutput = -2; else if (myInput == 0) myOutput = 0; else myOutput = myInput; } Group of answer choices 5 0 -2 None of these   ==============   A void function can be used in an assignment. Group of answer choices True False

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter6: Using Arrays
Section: Chapter Questions
Problem 2CP
icon
Related questions
Question

Given the following code segment, what is output to the screen?

char name1[20] = "Sean";

char name2[20] = "Pierce";

strcpy(name1,name2);

cout << name1 << " " << name2;

Group of answer choices
Pierce Pierce
Sean Sean
Sean Pierce
None of these
 
==================

Given the following code segment, what is output to the screen?

 

void assignments(int&, int);

int main()

{

int output = 0, input = 5;

assignments(output, input);

cout << output << endl;

}

void assignments(int& myOutput, int myInput)

{

if (myInput < 0)

myOutput = -2;

else if (myInput == 0)

myOutput = 0;

else

myOutput = myInput;

}

Group of answer choices
5
0
-2
None of these
 
==============
 
A void function can be used in an assignment.
Group of answer choices
True
False
 
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Variables
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT