People can use software to make their lives more enjoyable
Answer: Hyper Text Markup Language (HTML)
Explanation:
Computers use language to communicate, just like people do and the way that computers communicate with the internet is through a language that is called Hyper Text Markup Language/ HTML
Hyper Text is the process of linking objects to each other, so that when one object is clicked the linking object can be viewed. Hyper Text Markup Language was created by Tim burners in 1990
Answer:
The solution code is written in Python:
- def square(num):
- if type(num).__name__ == 'int':
- sq_num = num * num
- return sq_num
- else:
- return "Invalid input"
-
- print(square(5))
- print(square("Test"))
Explanation:
To ensure only certain type of operation can be applied on a input value, we can check the data type of the input value. For example, we define a function and name it as <em>square</em> which take one input number, <em>num </em>(Line 1).
Before the <em>num</em> can be squared, it goes through a validation mechanism in by setting an if condition (Line 2) to check if the data type of the input number is an integer,<em> int.</em> If so, the<em> num </em>will only be squared otherwise it return an error message (Line 6).
We can test our function by passing value of 5 and "Test" string. We will get program output:
25
Invalid input
Answer:
yourmom.com yourhaouse.com and mcdonalds.org
Explanation:
Answer:
C) Es un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicios y que a su vez satisface necesidades sociales.
Explanation:
Un sistema tecnológico se define como un conjunto de elementos y procesos que interactúan entre sí, para lograr la fabricación de un producto o servicio y que a su vez satisface necesidades sociales.
Por lo tanto, todos los dispositivos y máquinas que utilizamos para lograr varios fines pueden clasificarse como dispositivos tecnológicos.
Por ejemplo, un teléfono inteligente es un ejemplo típico de un sistema tecnológico.