Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

0/10 pts Incorrect Question 7 Given: int a = 2, b = 4, c = 11, result; double d1 = 3.4, d2 = 1.7, doubleResult;

image text in transcribed
0/10 pts Incorrect Question 7 Given: int a = 2, b = 4, c = 11, result; double d1 = 3.4, d2 = 1.7, doubleResult; doubleResult = (double)c/b+ a; To two decimal places, as appropriate, e.g., if the answer is 6, you should enter 6 or 6.00 depending on the data type, what gets stored in result or doubleResult, as appropriate? Enter only the number in the field provided, and your answer must be exact! 1. (double)c --> (double)11 -->? (casting takes precedence over division). 2.?/b-->?/4 --> ? / 4.00 --> ? (the 4 is implicitly promoted from an int to a double). 3.? + a --> ? + 2 -->? + 2.00 --> ? (the 2 is implicitly promoted from an int to a double)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Climate And Environmental Database Systems

Authors: Michael Lautenschlager ,Manfred Reinke

1st Edition

1461368332, 978-1461368335

More Books

Students also viewed these Databases questions