That is correct because he only has 50$ and all three books cost 60$ so he doesn't have enough hope i helped
Answer:
1
Step-by-step explanation: PEMDAS
1. 3 divided by 1/3 = 9
2. 9-9= 0
3. 0+1= 1
hope this helps! :-)
Answer:
Option a. 20h+5≥125 is the correct answer
2,12, 1 ,24,3,8,4,3,6,
THese number has 24 as a multiple so they are actually factors
~JZ
Hope it helps
I'm assuming the syntax here is Javascript:
The str.substring() method takes in two integers - a start index and an end index - and returns all the characters in the specified range from the original string, <em>including</em> the character in the start index and <em>excluding </em>the character in the end index<em />. Javascript's is <em>0-indexed</em>, which means that all of its indices start at 0.
For instance, if we were to use the method on the string "test" and wanted to return the substring "tes", we'd call the following method:
"test".substring(0,3)
This would return everything from the first character, "t", <em>up to but not including</em> the fourth character, "t". The character immediately before the last "t" (index 3), "s" (index 2) would be our last character, and the console should print "tes" as a result.
For your example, "select".substring(4,4) prints out every character starting at index 4 - the fifth character, "c" - <em>up to but not including </em>the character at index 4. We start and stop at the same character, so the method will only return the character "c", and nothing else.