Sobes.tech

Could you explain what a logging component in a system is?

Junior — Middle
167

How can you access the model manager in Django?

Junior — Middle
167

What third-party libraries do you use to improve performance in Django projects?

Junior — Middle
167

What data structures can be used instead of a regular dictionary?.

Junior — Middle
167

What are the difficulties in assessing the time efficiency of sorting algorithms in Python?

Junior — Middle
167

Repeating elements (Find Duplicates) Condition: Given a slice of strings. Return a slice of strings that appear more than once in the original slice. The order of elements in the result should be in the order of their first appearance in the original slice. Input data: []string — slice of strings Output data: []string — strings that appear more than once, in the order of first appearance Constraints: - 0 <= len(input) <= 10^4 - Each string consists of Latin letters, length 1..50 Example: Input: ["a", "bb", "bb", "aa", "a", "a"] Output: ["a", "bb"] def find_duplicates(items): # TODO: write solution here return []

167

What is the difference between using the -m option when installing packages via pip and regular installation without it?

Junior — Middle
167

What main difficulties can arise when creating a product from scratch?

Junior — Middle
167

What component of the command structure have you worked with in your previous job?

Junior — Middle
167

What is the main purpose of using the Decorator pattern and what are its advantages?

Junior — Middle
167

How was the large Kafka event log cleared: was a retention policy set?

167

When can a situation occur where the complexity of a dictionary operation is worse than O(1) due to storage features in memory?

167

What reasons make the use of the Math.random function undesirable in development?

Junior — Middle
167

Is object-oriented programming paradigm mandatory when using Python?

Junior — Middle
167

How to reverse a list [1,2,3] to [3,2,1]? What is the difference between reverse() and slicing?

Senior
167

What is the difference between filtering data with HAVING and WHERE operators in SQL?

Junior — Middle
167

How does Alan Kay's concept of object-oriented programming differ from its implementation in Java?

Junior — Middle
167

How do NumPy and Pandas work with GIL?

Middle+
167
/555