Concept explainers
The variable x starts with the value 0.
The variable y starts with the value 5.
Add 1 to x.
Add 1 to y.
Add x and y, and store the result in y.
Display the value in y on the screen.

The value of y will be displayed on the screen as “7”.
Explanation of Solution
Analyzing the given English statement:
The program is to add the two values. Initially declare and initialize with the value to the variables. Then, increment both the variables by 1. Addition operation is performed, finally display the output.
The step by step operations are as follows:
Step1: the “x” variable stores the value of 0.
x = 0
Step2: the “y” variable stores the value of 5.
y = 5
Step3: the variable “x” is incremented by 1.
x = x + 1
x = 0 + 1
x = 1
Step4: the variable “y” is incremented by 1.
y = y + 1
y = 5 + 1
y = 6
Step5: add the value of “x” and “y” and store the result in “y”.
y = x + y
y = 1 + 6
y = 7
Step6: display the output.
The value of “y” is 7
The output for the given statement:
The value of y is 7.
Want to see more full solutions like this?
Chapter 1 Solutions
STARTING OUT W/JAVA PLUS ACCESS >IP<
Additional Engineering Textbook Solutions
Problem Solving with C++ (10th Edition)
Starting Out With Visual Basic (8th Edition)
SURVEY OF OPERATING SYSTEMS
Java How to Program, Early Objects (11th Edition) (Deitel: How to Program)
Starting Out with C++ from Control Structures to Objects (9th Edition)
Concepts Of Programming Languages
- C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningC++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage Learning
- Microsoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENT




