InfyTQ-Answers
InfyTQ-Answers copied to clipboard
Solutions to InfyTQ Assignments, quiz and tests.
I checked your query in INFYTQ it doesn't work The query is under Exercise 3 inside the DDL Statements module. I have written the correct query Please Accept.
As mentioned in the problem we, need to make a composite primary key with MId and TId.
Answers
Upload the final assessment answers
`def sum_of_numbers(list_of_num,filter_func=None): if filter_func==None: return sum(list_of_num) else: return sum(filter_func(list_of_num))`
Added Solution
import collections def check_anagram(data1,data2): results = dict(collections.Counter(data1)) sort_orders = sorted(results.items(), key=lambda x: x[1], reverse=True) if(sort_orders[0][1] > 1): return False elif len(data1) == len(data2): if(sorted(data1.lower()) == sorted(data2.lower())): return True return False...
I just completed the code