Answer:
def isAnagram(s1, s2):
list1=s1
list2=s2
sortedlist1 = sorted(list1)
sortedlist2 = sorted(list2)
if sortedlist1 == sortedlist2:
print(list1+ " and "+list2+ " are anagram")
else:
print(list1+ " and "+list2+ " are not anagram")
Explanation:
Here is a call to the function isAnagram():
list1 =input("Enter String1 ")
list1 =input("Enter String2 ")
isAnagram(list1,list2)
Attached is the run and output for this program
Answer:
OSI Model and TCP/IP Model
Explanation:
Answer:
Bluetooth
Explanation:
Bluetooth is a standard to share data between Mobil devises, typically less than 10 m (33 ft), up to 100 m (330 ft), but the Bluetooth 5.0 has a range of 40–400 m (100–1,000 ft), in addition, NFC is something similar because needs a separation of 10 cm or less, and with RFID we can read to hundreds of meters.