ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 12 Weeks Ago, 3 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 09 May 2017 My Price 9.00

Write a Java program that displays the value of (a + b) + c

1.(a)Write a Java program that displays the value of (a + b) + c and a + (b + c), where a is a float variable, b is the negation of a, and c is 1.0.

(b) Using this program, determine the smallest positive integer n such that assigning a the value 10n causes the expressions (a + b) + c and a + (b + c) to have different values. Your answer should include your program’s source code and the output that it produces when executed.

2. Write a single (non-nested) Java statement that displays the following message: "Your shopping cart contains 5 items" Assuming that variable n contains the number of items. If n has the value 1, the statement should display the following message instead: "Your shopping cart contains 1 item" You may not use the if statement or switch statement. Your statement must consist of a single call of System.out.println. Simplify your answer as much as possible.

3. Assume that the C array a has been declared as follows:

int a[N][N];

The following loop initializes the elements of a:

for (int i = 0; i < N; i++)

for (int j = 0; j < N; j++)

a[i][j] = i * N + j;

Rewrite this loop so that (a) it uses a single for statement and (b) it uses a pointer, not two integers, to keep track of which array element is the next to be initialized. The only variable that should appear in your code (other than a itself) is the pointer variable.

Answers

(11)
Status NEW Posted 09 May 2017 06:05 AM My Price 9.00

-----------

Not Rated(0)