Answer:
Surface Laptop 3 - 15", Platinum (metal), AMD Ryzen 5 3580U, 8GB, 128GB
Answer:
ERP.
Explanation:
Enterprise Resource Planning Is the software platform for bidirectional applications. The main objective of ERP it shared the database system and connects the enterprise as a whole so that data can be reached the once and made accessible to all users.
The main advantage of Enterprise Resource Planning is that Enterprise cycle parallelization or optimization it also the boost performance of the organization and saving the time.
Numeric data because it consist of numbers
Answer:
I wrote this myself, it should be working. I think this is what the instructions were looking for.
The code below should return
Squared: 1296
Mod: 0
Quadrupled: 16
Explanation:
def threeParams(squared, mod, quadruples):
array = [squared, mod, quadruples]
array[0] = squared ** 2
array[1] = mod % 5
array[2] = quadruples * 4
return array
valueArr = threeParams(36, 15, 4)
print(f"Squared: {valueArr[0]}\nMod: {valueArr[1]}\nQuadrupled: {valueArr[2]}")
Answer: d. should be lowercase.
Explanation:
ID attributes are case sensitive for the most part - DOM and Java Script - which means that the ID attribute does not always have to be lowercase.
It can be uppercase as well. ID attributes can also start with a number and as of HTML 5 can start with a special character as well. Finally, the ID attribute must always be unique within each document.