How would you implement rate limiting in a RESTful API to prevent abuse?
- A. Use JWT tokens
- B. Implement a token bucket algorithm
- C. Limit requests based on IP addresses
- D. Disable API access during peak hours
B. Implementing a token bucket algorithm is a common method for rate limiting in RESTful APIs. It allows you to control the rate of requests over time, preventing abuse while allowing legitimate usage. Options A, C, and D are not effective methods for rate limiting.
How would you initialize an empty list in Python?
- empty_list = []
- empty_list = [None]
- empty_list = {}
- empty_list = None
To initialize an empty list in Python, you use square brackets []. Option 2 initializes an empty dictionary, option 3 initializes a variable as None, and option 4 initializes a list with a single element, which is None.
How would you investigate memory leaks in a Python application?
- Manually inspect each variable in the code to find memory leaks.
- Use a memory profiler like memory_profiler to track memory usage over time.
- Use the psutil library to monitor CPU usage and infer memory leaks.
- Use the timeit module to measure execution time and find memory leaks.
To investigate memory leaks in a Python application, you can use a memory profiler like memory_profiler, which tracks memory usage over time, helping you identify areas of concern. Manual inspection (Option 3) is impractical for large codebases, and psutil (Option 2) primarily focuses on CPU usage. The timeit module (Option 4) measures execution time, not memory usage.
How would you optimize a Python function that is found to be CPU-bound during profiling?
- a) Use a Just-In-Time (JIT) compiler like PyPy.
- b) Increase the number of threads to parallelize the code.
- c) Optimize the algorithm or use data structures that are more efficient.
- d) Use a faster computer for running the code.
When a Python function is CPU-bound, the most effective optimization is usually to optimize the algorithm or use more efficient data structures. JIT compilation (a) can help in some cases, but it may not be as effective as algorithmic improvements. Increasing the number of threads (b) might help if the code can be parallelized, but this is not always the case. Using a faster computer (d) is generally not a solution to CPU-bound code as it doesn't address the underlying inefficiencies.
If multiple base classes have methods with the same name, method resolution in a derived class follows the _______ rule.
- FIFO (First In, First Out)
- LIFO (Last In, First Out)
- LOO (Last Out, Out)
- MRO (Method Resolution Order)
In Python, when multiple base classes have methods with the same name, the method resolution follows the Method Resolution Order (MRO) to determine which method to call.
How would you optimize the performance of a deep learning model in TensorFlow or PyTorch during the inference stage?
- A. Quantization
- B. Data Augmentation
- C. Gradient Clipping
- D. Model Initialization
Option A, Quantization, is a common optimization technique during the inference stage. It involves reducing the precision of model weights and activations, leading to smaller memory usage and faster inference. Option B, Data Augmentation, is typically used during training, not inference. Option C, Gradient Clipping, is a training technique to prevent exploding gradients. Option D, Model Initialization, is essential for training but less relevant during inference.
How would you optimize the performance of a RESTful API that serves large datasets?
- A. Use HTTP GET for all requests
- B. Implement pagination and filtering
- C. Remove all error handling for faster processing
- D. Use a single, monolithic server
B. Implementing pagination and filtering allows clients to request only the data they need, reducing the load on the server and improving performance. Options A, C, and D are not recommended practices and can lead to performance issues.
In pytest, the ____ marker is used to skip a test function under certain conditions.
- @pytest.ignore
- @pytest.run
- @pytest.skip
- @pytest.xfail
In pytest, the @pytest.skip marker is used to skip a test function when certain conditions are met. This allows you to selectively skip tests based on runtime conditions or configurations.
In Python, ____ is used to access the attributes and methods of a class.
- Class
- Dot notation
- Inheritance
- Object
In Python, you use the dot notation (.) to access the attributes and methods of a class. For example, object.attribute or object.method().
In Python, ____ is used to define a function that takes an arbitrary number of positional arguments.
- def *args
- def arguments
- def function
- def varargs
In Python, the syntax def function_name(*args) is used to define a function that can take an arbitrary number of positional arguments. The *args syntax allows you to pass a variable number of arguments to the function.