Answer:
y=4x -9
Step-by-step explanation:
y intercept- where the line crosses the y-axis (-9)
Rise over run- 4
B, because percent means per 100.
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.
Answer:
D. 12°
Step-by-step explanation:
80° + 5x = 140°
or, 5x = 140° - 80°
or, x = 60°/5
:. = 12° <em><u>Ans</u></em>
Answer:
Step-by-step explanation:
q is TFTF
~q use negation, not q so is the opposite of q : FTFT
p↔~q use biconditional ,and will be True only is both statements are T or both are F
p values are TTFF ↔~q values are FTFT : FTTF
(p↔~q )∧~q use conjunction, that is True only if both statements are T
(p↔~q ) values are FTTF ∧~q values are FTFT : FTFF
(p↔~q )∧~q → p use a conditional statement, where only True False will give a F
(p↔~q )∧~q values are FTFF → p values are TTFF : TTTT