Micro SD term does not refer to a variant of the full-size secure digital (sd) memory card.
<h3>What is Secure Digital a memory card?</h3>
A Secure Digital (SD) card is a tiny flash memory card developed for high-capacity memory and different portable devices, such as car navigation systems, cellular phones, e-books, PDAs, smartphones, digital cameras, music players, digital video camcorders, and individual computers.
<h3>What is the best device for storing digital photos?</h3>
Hard drives are good for storing photos because they are cheap, they provide fast admission to data, and it's very easy to copy a whole hard drive to another hard drive especially if you have USB 3.0 or Thunderbolt associations
To learn more about Micro SD, refer
brainly.com/question/24723558
#SPJ4
Pseudocode:
import random
fetch user input on a lucky number
insert input into variable - "response"
new variable, random = randint
condition to check wheather random is our response
display results
Python Code:
import random
def main():
response = int(input("Guess my lucky number, its between 1 and 100: "))
lucky_number = random.randint(1,100)
if response == lucky_number:
print(f"Wow you're right, it is {lucky_number}")
else:
print("Sorry, Try Again")
main()
Reminder:
intended for python3 as i included the format f
also it could be done without the import, just manually insert a number
i'll leave the post mortum to you
<span>An intarnet uses the same software and service structure as the internet, but it contains only the company's private information such as documents managed by Microsoft SharePoint.
</span>The term intranet denotes is a private internet that is used exclusively within an organization and it is <span>accessible only to an organization's staff. </span>
A top-down algorithm for changing a tire on a car includes:
- find a safe place to park
- have your car manual ready
- open the trunk or take out key,
- press unlock button on key or press open trunk button.
<h3>What is an algorithm?</h3>
In computer science, it refers to the finite sequence of rigorous instructions that are used to solve a class of specific problems or to perform a computation. Algorithms are used as specifications for performing calculations and data processing. Wikipedia
In other word, the algorithm are also some set of instructions for solving a problem or accomplishing a task.
In essence, these algorithm involves series of procedure used for solving a problem or performing a computation.
Read more about algorithm
brainly.com/question/13800096
#SPJ4