Answer: a device that can help could be a map.. she could learn about that place then see if its coasters are better.
Explanation: i dunno if i'm right
~shina~
Answer:
import math
def isPrime(num):
if num % 2 == 0 and num > 2:
return False
for i in range(3, int(math.sqrt(num)) + 1, 2):
if num % i == 0:
return False
return True
Explanation:
The solution is provided in the python programming language, firstly the math class is imported so we can use the square root method. The first if statement checks if the number is even and greater than 2 and returns False since all even numbers except two are not prime numbers.
Then using a for loop on a range (3, int(math.sqrt(num)) + 1, 2), the checks if the number evenly divides through i and returns False otherwise it returns True
see code and output attached
I would include cell phones , DVD and Blu-ray flat- screen televisions into my story to give the readers a sense of our world.
Explanation:
At this time, the world and its people are connected by cell phones.
Everything that is shown to the world by the media, can be seen clearly and with a good audio output, by using DVD and Blu ray flat screen televisions, as these are equipped with the latest technology to display the images clearly.
People use Social platforms ,to spread information to every corner of the world. This is possible, when each and every individual has a cell phone with an internet connection.
So, If I were writing a story , I would like to include these gadgets as part of my storyline, as this would depict the time and the sense of our world ,at that time to the readers.
Emails, pop-ups and advertisements usually spread computer viruses.
Answer:
forensics
Explanation:
Analyzing computer systems to gather potential legal evidence is computer <u>forensics</u>.