Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
C# Programming From Problem Analysis to Program Design Study Set 1
Quiz 5: Making Decisions
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 41
Multiple Choice
if (value1 > value2) largestOne = value1; Else If (value1 < value2) LargestOne = value2; Else LargestOne = -(value1) ; Using the nested if program statements, assuming value1 is 100 and value2 is 100, what is stored in largestOne above?