What is the output of the following code given the data file…

What is the output of the following code given the data file?python code :import jsonwith open(“sample_data.json”, “r”, encoding=”utf-8″) as file:   data = json.load(file)print(“Company:”, data[“company”])print(“City:”, data[“location”][“city”])for emp in data[“employees”]:   print(f”{emp[‘name’]} – Skills: {‘, ‘.join(emp[‘skills’])}”)# Access nested project detailscompleted_projects = [p[“name”] for p in data[“projects”] if p[“status”] == “Completed”]print(“Completed Projects:”, completed_projects)Sample JSON:{ “company”: “Tech Solutions Inc.”, “location”: {   “city”: “New York”,   “country”: “USA”,   “coordinates”: {     “latitude”: 40.7128,     “longitude”: -74.0060   } }, “employees”: [   {     “id”: 101,     “name”: “Alice Johnson”,     “department”: “Engineering”,     “skills”: [“Python”, “Django”, “REST APIs”],     “full_time”: true   },   {     “id”: 102,     “name”: “Bob Smith”,     “department”: “Marketing”,     “skills”: [“SEO”, “Content Writing”],     “full_time”: false   } ], “projects”: [   {     “name”: “AI Chatbot”,     “status”: “In Progress”,     “budget”: null   },   {     “name”: “Website Redesign”,     “status”: “Completed”,     “budget”: 15000   }