Answer:
Binary Code
Explanation:
All microprocessors and programmable devices understand is Binary Code. These are various combinations of 0's and 1's which when placed together in a sequence represent a set of instructions that the microprocessor can read and understand to complete complex tasks. There are various other programming languages to program these tasks in an easier to read syntax for the programmers themselves but they simply take the written code and convert it into Binary before sending it to the microprocessor.
Answer
To keep your privacy away from bad people, to keep your self safe whilst on the internet. Also if you could link the answer choices it would help greatly!
Explanation:
Answer:
Explanation:
First take the input of the numbers:
x = int(input("Enter the number of elements to be in the list:"))
b=[ ]
for i in range(0,x):
a=int(input("Element: "))
b.append(a)
c=[ ]
d=[ ]
for i in b:
if(i%2==0):
c.append(i)
else:
d.append(i)
c.sort()
d.sort()
count1=0
count2=0
for k in c:
count1=count1+1
for j in d:
count2=count2+1
print("Largest even number:",c[count1-1])
print("Largest odd number",d[count2-1])
2 Their can be 2 in a group. think of you and I l. we would be a group
Answer:
SELECT
list_price,
discount_percent,
ROUND(list_price * discount_percent / 100,2) AS discount_amount
FROM
Products;
Explanation: