solve (x-1)(x-9)=8;
Answers were Sorted based on User's Feedback
Answer / sravan
(x-1)(x-9)=8;
x^2-10x+1=0
x=-b(+ or -)sqrt(b^2-4ac)/2a
Answer x=5+2*sqrt(6)
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / jatinder verma
(x-1)(x-9)=8
x^2-9x-x+9=8
x^2-10x+9=8
x^2-10x+9-8=0
x^2-10x+1=0
x^2+1=10x
x*x+1=10x
x+1=10x/x
x+1=10
x=10-1
x=9
| Is This Answer Correct ? | 1 Yes | 6 No |
7) Suppose there is Student class like class student { int age; string name; } We want to store these objects in a HashMap. Do we need to override any methods in Student class? If any which ones and why? what if i just override equals or just hashcode? what will be the results in both the cases?
What does the append?
Which is the best way to use for String concatenation in Java?
What are inner and anonymous class?
What will happen if a thrown exception is not handled?
0 Answers ABB, Akamai Technologies, Infogain,
What is the difference between math floor and math round?
we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.
What are packages in java?
What is the difference between hashmap and hashtable? What is an interface?
What is an infinite loop?
Do you need to import math in java?
Nullpointer exception is a very common exception. Why is it not made as a checked exception?