Answer:
x>-2
Step-by-step explanation:
first you subtract 10 from both sides to find x
10-3x-10<16-10
-3x<6
now here you divide both sides by -3
-3x/-3<6/-3
BUT since you are dividing by a negative number the sign will have to flip
so the answer will be
x>-2
Answer:
Two consecutive positive integers are 17 and 18. Or -17 and -18.
Step-by-step explanation:
Let the consecutive integers be x and x+1
x (x+1)=306 --> x^2 + x-306=0
x^2+18x-17x-306=0
x(x+18)-17(x+18)=0
or
(x-17)(x+18)=0
Answer:
//The class called "Solution" is declared
public class Solution {
//Main method which signify the beginning of program execution
public static void main(String[] args) {
//myInt variable of type Integer is declared
Integer myInt;
// An object of type Integer is declared with initial value of 1
Integer newInt = new Integer(1);
// The value of the new declared and assigned object is displayed to the user
System.out.println(newInt);
// The new declared object is assigned to the reference variable myInt
myInt = newInt;
// The value of myInt is displayed to the user
System.out.println(myInt);
}
}
Step-by-step explanation:
Answer:
Hot, very hot and indecisive when it comes to elections.