Answer:
1) my_family.py
family = ('Dad', 'Mom', 'Agnes', 'David', 'Chris', 'Millie')
for name in range(len(family)):
print(family[name])
2) work_list.py
my_number = [2, 6, 3, 1, 8, 4]
# add items at the end of the list.
my_number.append(0)
my_number.append(5)
# sorts the list, default - ascending.
my_number.sort()
size = 0
while size < len(my_number):
print(my_number[size])
size += 1
Explanation:
The tuple and list data structures are ordered, using indexes to locate items in its container.
The family.py file uses the for-loop to iterate and print the family names in the tuple.
The work-list.py file contains a list of integers which is modified by adding items at the end of the list with the append method and a prints all the items using a while-loop.
Answer:
1.ALU
2.Barcode reader..
<h3>followme and mark me brainliest..........</h3>
The answer is <span>IS-95. M</span><span>ost Code Division Multiple Access (CDMA) networks conform to IS-95, created by the Telecommunications Industry Association (TIA). I</span><span>nterim Standard </span>95<span> (</span>IS-95<span>) was the first ever CDMA-based digital cellular technology, developed by Qualcomm and later adopted as a standard by the Telecommunications Industry Association (TIA).</span>
Answer:
Trojan horse
Explanation:
A Trojan horse is malicious software that masquerades as a legitimate computer program such as a video game, image file, utility program, or even an antivirus so as to entice the user to run it, thereby allowing an attackers (the developer of the malicious program) to gain access to the data on the computer in an illegal manner.