answersLogoWhite

0

What else can I help you with?

Continue Learning about Basic Math

How do you explain a method to compare fractions?

Convert them to decimals and order them least to greatest.


How do you write 7 tenths as a decimal?

.7 Solution Method: 7 / 10 = .7 Note: to convert a fraction to a decimal number, divide the top number (numerator) by the bottom number (denominator). Thanks guys! please like!


What does quadratic equations using the factoring method means?

It means you are required to "solve" a quadratic equation by factorising the quadratic equation into two binomial expressions. Solving means to find the value(s) of the variable for which the expression equals zero.


How much is 10 percent off 50.00?

45 or 5 (depending in what the question is *really* asking)Solution Method 1:1. Clarify question: What is 10% off of 50?2. Convert 10% to decimal: 10 / 100 = .13. Compute discount: .1 * 50 = 54. Compute answer: 50 - 5 = 45Solution Method 2:1. Clarify question: What is 10% of 50?1. Convert 10% to decimal: 10 / 100 = .12. Compute answer: .1 * 50 = 5===============Original Poster's Answer:10 percent of 50.00 is 5.00.10 percent off 50.00 is 45.00.


What percent of 80 is 100?

When calculating with percentages, one method is to first convert them to decimals or fractions. Using the decimal method, 80%=0.8 and 100%=1. Therefore, the literal translation of you question would read "0.8 x 1 = 0.8". 0.8 is the decimal answer. If you wanted a percentage answer, you would convert this back to 80%. Kind of a nonsense question, though. You usually do not take percentages of percentages.

Related Questions

What is the palindrome for a method of tracking aeroplanes?

Radar


What is a palindrome for a method of finding the position of a solid object?

radar


What is the palindrome for a method of finding or tracking ships and planes?

radar


How do you reverse a word in python?

You use the .reverse() method.


How do you convert fraction to decimal with solution?

You divide the numerator of the fraction by its denominator - using long division (aka the bus-stop method) if required.


What is a palindrome for a method of tracking ships and planes?

That is radar, which is short for radio direction and ranging.


Full java program to find the given string is palindrome or not?

Answer 1:private static final boolean isPalindrome(final String str) { return str.equals((new StringBuilder(str)).reverse().toString());}Answer 2:import java.io.*; class StringPalindrome{protected static void main()throws IOException{BufferedReader in=new BufferedReader(new InputStreamReader(System.in));System.out.print("Enter the String: ");String s=in.readLine(),n="";for(short i=(short)(s.length()-1);i>=0;i--){char ch=s.charAt(i);n+=ch;}if(s.equalsIgnoreCase(n))System.out.print("Palindrome!!!!");elseSystem.out.print("Not Palindrome!!!!");}}


What are the explanation steps for palindrome program?

If you want to check whether a string is a palindrome, you can reverse the string (for example, the Java class StringBuffer has a reverse() method), and then compare whether the two strings - the original string and the reverted string - are equal. Alternately, you could write a loop that checks whether the first character of the string is equal to the last one, the second is equal to the second-last one, etc.; that is, you have a counter variable (in a "for" loop) that goes from zero to length - 1 (call it "i"), and compare character #i with character #(length-i-1) inside the loop.


Palindrome -a method of tracking aeroplane?

a palindrome is a word, sentence or phrase that spells the same front to back as it does back to front. ex: Rats live on no evil star......or....... go hang a salami im a lasagna hog


How will reduce tds in water?

you can reduce TDS by reverse osmosis method, deionization method or distillation method or by using activated charcoal.


What is RMC method of pile boring?

It is 'Reverse Mud Circulation' pile boring method. Ajitkumar Pandey


What is the purpose of a method statement and what is required of the operator?

The purpose of a method statement is that it provides us with the details of what the required operator is supposed to do.