Answer:
In python Language:
cardNotation = raw_input("Enter card notation: ")
# Create a dict for values
cardColors = {"D": "Diamonds",
"H": "Hearts",
"S": "Spades",
"C": "Clubs"}
cardNumberValues = {"A": "Ace",
"J": "Jack",
"Q": "Queen",
"K": "King",
"2": "Two",
"3": "Three",
"4": "Four",
"5": "Five",
"6": "Six",
"7": "Seven",
"8": "Eight",
"9": "Nine",
"10": "Ten"}
# Handle cases when 10 comes in input
if len(cardNotation) == 3:
number = cardNotation[:2]
color = cardNotation[2:]
print cardNumberValues.get(number) + " of " + cardColors.get(color)
elif len(cardNotation) == 2:
number = cardNotation[:1]
color = cardNotation[1:]
print cardNumberValues.get(number) + " of " + cardColors.get(color)
else:
print "INVALID VALUE"
Answer:
a computer suitable for use at an ordinary desk.
noun: desktop computer
"a new low-end desktop"
Explanation:
please mark me as a brainly
Answer:
dont click on his link it has virus
Diana is attaching a brace to a rectangular gate. She will put the brace on the diagonal of the rectangle as shown.
Answer:
Explanation:
Given, total payload is: 2000 bytes
MTU is: 1500 bytes
Header is: 20 bytes
Base header is: 40 bytes
Total number of fragments = Total Payload / MTU
= 2500 / 1500
= 2 fragments
Fragment Base header Fragmentation header Authentication
header + Data
1 40 bytes 8 bytes 20 bytes +772bytes
2 40 bytes 8 bytes 792 bytes