Answer:
True
Explanation:
The hexadecimal numbering is the most used numeric system for international operations in a computer, in our daily life we use the decimal system but for the CPU use the byte or octet as a basic unit of memory, we need more than 10 digits, and the hexadecimal system has 16, in addition, the binary system is hard to understand.
CAD is the answer you require, but it may also be Spread sheet
Hope this helped ♥︎
Answer:
A trial balance will not balance if both sides do not equal, and the reason has to be explored and corrected.
Explanation:
The debit side and the credit side must balance, meaning the value of the debits should equal the value of the credit
Ammunition documents which caries bullet, fuses extra should be numbered properly.
<u>Explanation:</u>
A document number or page number should be well organized and he or she coordinates with assistant trainers who have involved it.
Since it is a training event. The trainer has to have a checklist and make as fill with page number and make sure page numbers are strictly followed during the training session. If any page number is misplaced through the training session it will be embracing the situation for trainer and student or staff who get the training.
Answer:
a=input("Amount in pennies")
b=int(a)
dollars=0
dimes= 0
quarters=0
nickels=0
pennies = 0
dollars = int(b/100)
b= b- dollars *100
quarters=int(b/25)
b=b-quarters*25
dimes = int(b/10)
b = b -dimes*10
nickels=int(b/5)
b=b - nickels * 5
pennies = b
print(dollars)
print(dimes)
print(nickels)
print(pennies)
Explanation:
The required program is in answer section. Note, the amount is entered in pennies.