Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Given the following Boolean variables: bool pass = true, open = false, run = true; Using a truth table, which of the following Boolean expressions

Given the following Boolean variables:

bool pass = true, open = false, run = true;

Using a truth table, which of the following Boolean expressions has the logical value false?

a. pass && !open || !pass && run

b. !pass || open && pass || run

c. pass && !open || pass || !run

d. !pass && !open || !pass && run

What value would the variable price hold after the following code is executed?

int price;

int tier = 2;

int year = 1995;

switch (tier)

{

case 1:

case 2:

if (year < 1990)

price = 300;

else

price = 400;

break;

case 3:

case 4:

if (year < 2000)

price = 500;

else

price = 600;

break;

Select one:

a. 300

b. 400

What would the value of payment be after the following code is executed?

char residency = 'N';

int payment, items = 300;

if (items > 400)

if (residency == 'N')

payment = 2500;

else

payment = 3000;

else if (items > 200)

if (residency == 'R')

payment = 1500;

else

payment = 1000;

Select one:

a. 1000

b. 1500

c. 2500

d. 3000

Which of the following is a valid implementation of a void method named Subtract ?

A.

void Subtract (x, y)

{double z;

z = x - y;

System.out.println("Result = ", z);

}

B.

Subtract (double x, double y)

{

double z = x - y;

System.out.println("Result = ", z);

}

C.

void Subtract (double x, y)

{z = x - y;

System.out.println("Result = ", z);

}

D.

void Subtract (x, y)

{

System.out.println("Result = ", x - y);

}

Which of the following correctly implements a method named Slowest ?

A.

void Slowest (double a, b, c)

{

if (a < b && a < c)

System.out.println(a);

else if (b < c)

System.out.println(b);

else

System.out.println(c);

}

B.

Slowest (double a, double b, double c)

{

if (a < b || a < c)

System.out.println(a);

else if (b < c)

System.out.println(b);

else

System.out.println(c);

}

C.

void Slowest (double a, double b, double c)

{

if (a < b && a < c)

System.out.println(a);

else if (b < c)

System.out.println(b);

else

System.out.println(c);

}

D.

void Slowest (double a, double b, double c)

{

if (a < b || a < c)

System.out.println(a);

else if (b < c)

System.out.println(b);

Else

System.out.println(c);

}

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

Step: 3

blur-text-image

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

Database Concepts

Authors: David M. Kroenke

1st Edition

0130086509, 978-0130086501

More Books

Students also viewed these Databases questions

Question

Which are non projected Teaching aids in advance learning system?

Answered: 1 week ago

Question

3 The distinction between microeconomics and macroeconomics.

Answered: 1 week ago

Question

2 The role of economic theory in economics.

Answered: 1 week ago