Answer:
I used to do tik to k but I never did the other one
Explanation:
please mark me as brainliest
Answer:
I think asking questions is the best.
Explanation:
I believe asking questions are the best because you get to understand the text which is really good. Some 7th grade reading teachers can help you a lot and you can use iLit to help a bunch.
Answer:
you can look it up if you want to just look up modern technological machine and u will get it.
Answer:
2048 MB / 2 GB.
Explanation:
Without removing the other modules you can add two more 512 MB modules for a total of 2048 MB.
Answer:
Explanation:
Let's code it using python. We can take care of the negative number by placing an absolute function at the end. Basically the decimal part is calculated by subtracting the integer part from the original input number
def decimal_print(number):
int_part = int(number)
decimal_part = number - int_part
return abs(decimal_part)