I need to be more specific
Answer:
Explanation:
Find out all of the combos of sums (2,3,5,9,3,4,6,10,4,5,7,11,5,6,8,12)
Then find out how many of these are divisible by 3 (6)
Count how many possibilities there are (24)
6/24=25%
The remove_sort_reverse function takes a list, removes all "s" in the list elements, sorts and then reverses the remaining elements
<h3>The actual program</h3>
The program in Python, where comments are used to explain each line is as follows:
#This defines the function
def remove_sort_reverse(myList):
#This iterates through the list
for i in range(len(myList)):
#This removes all the s in the list elements
myList[i] = myList[i].replace("s","")
#This sorts and reverses the list elements
myList.sort(reverse=True)
#This returns the updated list
return(myList)
Read more about Python functions at:
https://brainly.in/question/10211834
If we know that 180-5=128 that means that that equation must be equal to 128.
(2^3x+1)=128
By putting 128 into exponential form with a base of 2 you get 2^7:
(2^3x+1)=2^7
Since these have the same bases we can set the exponents equal to 7. This will give us an exponent of 3x+1=7. By Subtracting across and dividing by 3 you get:
3x=6 to 3/3x = 6/2
This gives us a final answer of:
x=2