Yоu hаve а list оf dictiоnаries representing products:products = [{"name": "Laptop", "price": 999}, {"name": "Mouse", "price": 29}, {"name": "Monitor", "price": 349}]Write Python code that: (1) uses a loop to calculate total inventory value, (2) uses a lambda with sorted() to sort products by price highest-first, and (3) uses a list comprehension to get only product names where price is above 100. Show expected output for each.