Computers and Technology

Quiz 1: simplifying equations
which of the following choices shows the proper use of the distributive property?
–2(6x – y) = –12x + 2y
–2(6x – y) = 12x + 2y
–2(6x – y) = 12x – 2y
–2(6x – y) = –12x – 2y
which of the following choices simplifies – (–x + 1)?
–x – 1
x – 1
–x + 1
x + 1
what should be completed first when simplifying 2(x – 3) + 6(4x + 1)?
combine like terms.
subtract x – 3.
distribute the 2 to the x – 3 and the 6 to the 4x + 1.
none of the choices are correct.
which of the following choices is equivalent to 1 + 8(2x + 3)?
16x + 12
10x + 12
16x + 25
10x + 25
when 3 + 3x – 5 – 8x is simplified, the result is:
–5x – 2.
–5x – 8.
–11x – 15.
6x – 13x.
when 5(2x + 3) – (x + 4) is simplified, the result is:
11x + 9.
9x + 19.
9x + 11.
none of the choices are correct.
quiz 2: solving equations: part 1
when x + (–6) = –3 is solved, the result is:
x = 9.
x = 3.
x = –9.
none of the choices are correct.
when m – (–1) = 5 is solved, the result is:
m = 4.
m = 5.
m = 6.
none of the choices are correct.

x = 1.
x = 5

none of the choices are correct.

y = 3.
y = 8.
y = 48.
none of the choices are correct.
when –3v = –18 is solved, the result is:
v = –6.
v = 6.
v = –15.
none of the choices are correct.
which of the following choices represents the correct steps to find the solution of the following equation: 5 = 1 – 2x ?
subtract 1 from both sides and divide by 2.
subtract 5 from both sides and divide by 2.
subtract 1 from both sides and divide by – 2.
subtract 5 from both sides and divide by – 2.
when 3p – 12 = 12 is solved, the result is:
0.
–8.
8.
none of the choices are correct.
when 27 = 9 – 3x is solved, the result is:
–18.
–12.
–8.
–6.
quiz 3: solving equations: part 2

there is an error in step 1.
there is an error in step 2.
there is an error in step 3.
no errors were made. the problem was worked correctly.
3 + 2(2x + 8) = 1 is equivalent to:
2x + 19 = 1
4x + 11 = 1
2x + 11 = 1
4x + 19 = 1
when –2(x – 4) + 1 = 7 is solved, the result is:
1.
–1.
–8.
none of the choices are correct.
when 4x + 4x + 1 = 33 is solved, the result is:
3.
4.
25.
none of the choices are correct.
when 2 – (7g – 3) = – 9 is solved, the result is:
2.
–2.
–4.
none of the choices are correct.
which equation is equivalent to –2(2 – 2x) = 4 – 8(1 – x)?
0 = 4x
8 = 4x
4 = –4x
16 = –4x

1.
–1.
–2.
none of the choices are correct.
the first step in solving for the variable l in the equation p = 2l + 2w is:
add the 2w to both sides of the equal sign.
subtract the 2w to both sides of the equal sign.
divide the 2 to both sides of the equal sign.
none of the choices are correct.
solve for the y variable: 4x + 2y = 6
y = –2x + 6
y = –2x + 3
y = 2x + 4
none of the choices are correct.
b = kpx when solved for k is:

k = bxp.
k = b – px.
none of the choices are correct.
an exponential function has:
a straight line that can be increasing or decreasing.
a curved line that can be increasing or decreasing.
u shaped curved lines that increase then decrease or decrease then increase.
none of the choices are correct.

none of the choices are correct.

none of the choices are correct.
the first step in solving for the variable l in the equation p = 2l + 2w is:
add the 2w to both sides of the equal sign.
subtract the 2w to both sides of the equal sign.
divide the 2 to both sides of the equal sign.
none of the choices are correct.
solve for the y variable: 4x + 2y = 6
y = –2x + 6
y = –2x + 3
y = 2x + 4
none of the choices are correct.
b = kpx when solved for k is:

k = bxp.
k = b – px.
none of the choices are correct.
an exponential function has:
a straight line that can be increasing or decreasing.
a curved line that can be increasing or decreasing.
u shaped curved lines that increase then decrease or decrease then increase.
none of the choices are correct.

answer
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 13:30, baeethtsadia
Asoftware company hired ray, a college graduate to work in their development team. ray is assigned to work in the coding phase of a project. what happens during the coding phase of a software development project? a. the customer receives a working model of the software. b. developers convert the program design into code. c. developers gather requirements directly from the stakeholders. d. testing teams check the product for quality.
Answers: 1
image
Computers and Technology, 22.06.2019 14:10, normarismendoza
Dean wants a quick way to look up staff members by their staff id. in cell q3, nest the existing vlookup function in an iferror function. if the vlookup function returns an error result, the text β€œinvalid staff id” should be displayed by the formula. (hint: you can test that this formula is working by changing the value in cell q2 to 0, but remember to set the value of cell q2 back to 1036 when the testing is complete.)
Answers: 3
image
Computers and Technology, 23.06.2019 01:40, hanjonez
Writing a modular program in visual c++. i am new to this and not sure what i am missing. i am getting the following error: baddate. cpp: in function β€˜int main()’: baddate. cpp: 50: 3: error: β€˜else’ without a previous β€˜if’elsehere are the instructions and code: writing a modular program in c++in this lab, you add the input and output statements to a partially completed c++ program. when completed, the user should be able to enter a year, a month, and a day. the program then determines if the date is valid. valid years are those that are greater than 0, valid months include the values 1 through 12, and valid days include the values 1 through 31.notice that variables have been declared for you. write the simulated housekeeping() function that contains the prompts and input statements to retrieve a year, a month, and a day from the user. include the output statements in the simulated endofjob() function. the format of the output is as follows: month/day/year is a valid date. ormonth/day/year is an invalid date. execute the program entering the following date: month = 5, day = 32, year = 2014. record the output of this program. execute the program entering the following date: month = 9, day = 21, year = 2002. record the output of this /* program name: baddate. cppfunction: this program determines if a date entered by the user is valid. input: interactiveoutput: valid date is printed or user is alerted that an invalid date was entered*/#include bool validatedate(int, int, int); using namespace std; int main(){// declare variablesint year; int month; int day; const int min_year = 0, min_month = 1, max_month = 12, min_day = 1, max_day = 31; bool validdate = true; // this is the work of the housekeeping() method// get the year, then the month, then the daycout< < "enter the year"< > year; cout< < "enter the month"< > month; cout< < "enter the day"< > day; // this is the work of the detailloop() method// check to be sure date is validif(year < = min_year) // invalid yearvaliddate = false; else if (month < min_month || month > max_month) // invalid monthvaliddate = false; else if (day < min_day || day > max_day) // invalid dayvaliddate = false; // this is the work of the endofjob() method// test to see if date is valid and output date and whether it is valid or notif(validdate == true); {// output statementcout<
Answers: 1
image
Computers and Technology, 23.06.2019 02:00, kelseybell5522
For a typical middle-income family, what is the estimated cost of raising a child to the age of 18? $145,500 $245,340 $304,340 $455,500
Answers: 1
Do you know the correct answer?
Quiz 1: simplifying equations
which of the following choices shows the proper use of the distr...

Questions in other subjects: