Tip 1 : Be consistent
Tip 2 : Always seek help wherever required, diverse your skill set
Tip 1: Keep it short and crisp
Tip 2: Mention adjectives and implementation steps
Consider having this scenario:
- Different teams deliver batch and real-time data to a central data storage in the cloud.
- Different data consumers can access data to display or run reports on it in their applications. Some of the consumers enrich data with business logic and make data available to other teams.
Provide a target architecture, considering that data should be discoverable, quality assured and reliable.
P.S:
We would appreciate if you would draw an architecture diagram. You can draw with pen and paper or use some apps like draw.io. Feel free to do what you are comfortable with
Create RESTful API using Python & MySQL.
Make a full CRUD REST API with Python.
We want to create a database in which user data is stored (think registration form on a website). We have access to information such as usernames, passwords, actual names, and ages.
Next, we want to develop a REST API to make the database handling easier. Also, API makes our logic available to any programming language, terminals, and tools like .
We want to read from the database, insert into it, update and delete records — in the simplest way possible.
Solve tasks in SQL or "pseudo" SQL:
===
Each time a vehicle comes into the workshop, any fault codes detected on it are added to a vehicle's Car_History.
The number of error codes detected can be zero or more.
In addition, the error codes are grouped into groups and each error code can be in one and only one group.
Write a query that gives us the fault code group Name of the fault Code that has occurred most frequently considering all vehicle histories.
Can you write a function that helps you randomize the items of a “List-in-Place”?
import random
def shuffle_list_in_place(lst):
random.shuffle(lst)
# Example usage:
my_list = [1, 2, 3, 4, 5]
print("Original list:", my_list)
shuffle_list_in_place(my_list)
print("Shuffled list:", my_list)
What is the code to check whether a particular object belong to a Class or a Subclass?
class ParentClass:
pass
class SubClass(ParentClass):
pass
# Create an instance of SubClass
obj = SubClass()
# Check if obj belongs to ParentClass
print(isinstance(obj, ParentClass)) # Output: True
# Check if obj belongs to SubClass
print(isinstance(obj, SubClass)) # Output: True

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?