Question 9 (Intermediate):
In SciPy, which function is used to solve ordinary differential equations (ODEs)?
A)
B)
C)
D)
#Python #SciPy #NumericalMethods #ODEs
✅ By: https://t.iss.one/DataScienceQ
In SciPy, which function is used to solve ordinary differential equations (ODEs)?
A)
scipy.optimize.minimize()
B)
scipy.integrate.solve_ivp()
C)
scipy.signal.lfilter()
D)
scipy.linalg.solve()
#Python #SciPy #NumericalMethods #ODEs
✅ By: https://t.iss.one/DataScienceQ
❤2
Question 10 (Advanced):
In the Transformer architecture (PyTorch), what is the purpose of masked multi-head attention in the decoder?
A) To prevent the model from peeking at future tokens during training
B) To reduce GPU memory usage
C) To handle variable-length input sequences
D) To normalize gradient updates
#Python #Transformers #DeepLearning #NLP #AI
✅ By: https://t.iss.one/DataScienceQ
In the Transformer architecture (PyTorch), what is the purpose of masked multi-head attention in the decoder?
A) To prevent the model from peeking at future tokens during training
B) To reduce GPU memory usage
C) To handle variable-length input sequences
D) To normalize gradient updates
#Python #Transformers #DeepLearning #NLP #AI
✅ By: https://t.iss.one/DataScienceQ
❤2
Question 11 (Expert):
In Vision Transformers (ViT), how are image patches typically converted into input tokens for the transformer encoder?
A) Raw pixel values are used directly
B) Each patch is flattened and linearly projected
C) Patches are processed through a CNN first
D) Edge detection is applied before projection
#Python #ViT #ComputerVision #DeepLearning #Transformers
✅ By: https://t.iss.one/DataScienceQ
In Vision Transformers (ViT), how are image patches typically converted into input tokens for the transformer encoder?
A) Raw pixel values are used directly
B) Each patch is flattened and linearly projected
C) Patches are processed through a CNN first
D) Edge detection is applied before projection
#Python #ViT #ComputerVision #DeepLearning #Transformers
✅ By: https://t.iss.one/DataScienceQ
❤1
Question 12 (Intermediate):
What is the key difference between
A) Classmethods can modify class state, staticmethods can't
B) Staticmethods are inherited, classmethods aren't
C) Classmethods receive implicit first argument (cls), staticmethods receive no special first argument
D) Classmethods are faster to execute
#Python #OOP #ClassMethod #StaticMethod
✅ By: https://t.iss.one/DataScienceQ
What is the key difference between
@classmethod
and @staticmethod
in Python OOP? A) Classmethods can modify class state, staticmethods can't
B) Staticmethods are inherited, classmethods aren't
C) Classmethods receive implicit first argument (cls), staticmethods receive no special first argument
D) Classmethods are faster to execute
#Python #OOP #ClassMethod #StaticMethod
✅ By: https://t.iss.one/DataScienceQ
❤3
Question 13 (Intermediate):
In NumPy, what is the difference between
A) The first is a 1D array, the second is a 2D row vector
B) The first is faster to compute
C) The second automatically transposes the data
D) They are identical in memory usage
#Python #NumPy #Arrays #DataScience
✅ By: https://t.iss.one/DataScienceQ
In NumPy, what is the difference between
np.array([1, 2, 3])
and np.array([[1, 2, 3]])
? A) The first is a 1D array, the second is a 2D row vector
B) The first is faster to compute
C) The second automatically transposes the data
D) They are identical in memory usage
#Python #NumPy #Arrays #DataScience
✅ By: https://t.iss.one/DataScienceQ
❤3
Forwarded from Python | Machine Learning | Coding | R
🚀 THE 7-DAY PROFIT CHALLENGE! 🚀
Can you turn $100 into $5,000 in just 7 days?
Jay can. And she’s challenging YOU to do the same. 👇
https://t.iss.one/+QOcycXvRiYs4YTk1
https://t.iss.one/+QOcycXvRiYs4YTk1
https://t.iss.one/+QOcycXvRiYs4YTk1
Can you turn $100 into $5,000 in just 7 days?
Jay can. And she’s challenging YOU to do the same. 👇
https://t.iss.one/+QOcycXvRiYs4YTk1
https://t.iss.one/+QOcycXvRiYs4YTk1
https://t.iss.one/+QOcycXvRiYs4YTk1
Question 1 (Advanced):
When using Python's
A) Windows lacks proper fork() implementation
B) Linux handles memory management differently
C) macOS has better garbage collection
D) Windows requires explicit process naming
#Python #Multiprocessing #ParallelComputing #Advanced
✅ By: https://t.iss.one/DataScienceQ
When using Python's
multiprocessing
module, why is if __name__ == '__main__':
required for Windows but often optional for Linux/macOS? A) Windows lacks proper fork() implementation
B) Linux handles memory management differently
C) macOS has better garbage collection
D) Windows requires explicit process naming
#Python #Multiprocessing #ParallelComputing #Advanced
✅ By: https://t.iss.one/DataScienceQ
Question 2 (Expert):
In Python's GIL (Global Interpreter Lock), what is the primary reason it allows only one thread to execute Python bytecode at a time, even on multi-core systems?
A) To prevent race conditions in memory management
B) To simplify the CPython implementation
C) To reduce power consumption
D) To improve single-thread performance
#Python #GIL #Concurrency #CPython
✅ By: https://t.iss.one/DataScienceQ
In Python's GIL (Global Interpreter Lock), what is the primary reason it allows only one thread to execute Python bytecode at a time, even on multi-core systems?
A) To prevent race conditions in memory management
B) To simplify the CPython implementation
C) To reduce power consumption
D) To improve single-thread performance
#Python #GIL #Concurrency #CPython
✅ By: https://t.iss.one/DataScienceQ
Question 3 (Intermediate):
In Tkinter, what is the correct way to make a widget expand to fill available space in its parent container?
A)
B)
C)
D) All of the above
#Python #Tkinter #GUI #Widgets
✅ By: https://t.iss.one/DataScienceQ
In Tkinter, what is the correct way to make a widget expand to fill available space in its parent container?
A)
widget.pack(expand=True)
B)
widget.grid(sticky='nsew')
C)
widget.place(relwidth=1.0)
D) All of the above
#Python #Tkinter #GUI #Widgets
✅ By: https://t.iss.one/DataScienceQ
Question 4 (Intermediate):
In scikit-learn's KMeans implementation, what is the purpose of the
A) Number of initial centroid configurations to try
B) Number of iterations for each run
C) Number of features to initialize
D) Number of CPU cores to use
#Python #KMeans #Clustering #MachineLearning
✅ By: https://t.iss.one/DataScienceQ
In scikit-learn's KMeans implementation, what is the purpose of the
n_init
parameter? A) Number of initial centroid configurations to try
B) Number of iterations for each run
C) Number of features to initialize
D) Number of CPU cores to use
#Python #KMeans #Clustering #MachineLearning
✅ By: https://t.iss.one/DataScienceQ
❤2
Question 20 (Beginner):
What is the output of this Python code?
A)
B)
C)
D) Raises an error
#Python #Lists #Variables #Beginner
✅ By: https://t.iss.one/DataScienceQ
✅ **Correct answer: B) `[1, 2, 3, 4]`**
*Explanation:
- `y = x` creates a reference to the same list object
- Modifying `y` affects `x` because they point to the same memory location
- To create an independent copy, use or *
What is the output of this Python code?
x = [1, 2, 3]
y = x
y.append(4)
print(x)
A)
[1, 2, 3]
B)
[1, 2, 3, 4]
C)
[4, 3, 2, 1]
D) Raises an error
#Python #Lists #Variables #Beginner
✅ By: https://t.iss.one/DataScienceQ
*Explanation:
- `y = x` creates a reference to the same list object
- Modifying `y` affects `x` because they point to the same memory location
- To create an independent copy, use
y = x.copy()
y = list(x)
Question 21 (Beginner):
What is the correct way to check the Python version installed on your system using the command line?
A)
B)
C)
D)
#Python #Basics #Programming #Beginner
✅ By: https://t.iss.one/DataScienceQ
What is the correct way to check the Python version installed on your system using the command line?
A)
python --version
B)
python -v
C)
python --v
D)
python version
#Python #Basics #Programming #Beginner
✅ By: https://t.iss.one/DataScienceQ
❤1
Question 22 (Interview-Level):
Explain the difference between
Options:
A) Both modify the original list
B)
C) Shallow copy affects nested objects, deepcopy doesn't
D)
#Python #Interview #DeepCopy #MemoryManagement
✅ By: https://t.iss.one/DataScienceQ
Explain the difference between
deepcopy
and regular assignment (=
) in Python with a practical example. Then modify the example to show how deepcopy
solves the problem. import copy
# Original Problem
original = [[1, 2], [3, 4]]
shallow_copy = original.copy()
shallow_copy[0][0] = 99
print(original) # What happens here?
# Solution with deepcopy
deep_copied = copy.deepcopy(original)
deep_copied[1][0] = 77
print(original) # What happens now?
Options:
A) Both modify the original list
B)
copy()
creates fully independent copies C) Shallow copy affects nested objects, deepcopy doesn't
D)
deepcopy
is slower but creates true copies #Python #Interview #DeepCopy #MemoryManagement
✅ By: https://t.iss.one/DataScienceQ
❤2
Question 23 (Advanced):
How does Python's "Name Mangling" (double underscore prefix) work in class attribute names, and what's its practical purpose?
Options:
A) Completely hides the attribute
B) Renames it to
C) Makes it immutable
D) Converts it to a method
#Python #OOP #NameMangling #Advanced
✅ By: https://t.iss.one/DataScienceQ
How does Python's "Name Mangling" (double underscore prefix) work in class attribute names, and what's its practical purpose?
class Test:
def __init__(self):
self.public = 10
self._protected = 20
self.__private = 30 # Name mangling
obj = Test()
print(dir(obj)) # What happens to __private?
Options:
A) Completely hides the attribute
B) Renames it to
_Test__private
C) Makes it immutable
D) Converts it to a method
#Python #OOP #NameMangling #Advanced
✅ By: https://t.iss.one/DataScienceQ
Question 24 (Advanced - NSFW Detection):
When implementing NSFW (Not Safe For Work) content detection in Python, which of these approaches provides the best balance between accuracy and performance?
A) Rule-based keyword filtering
B) CNN-based image classification (e.g., MobileNetV2)
C) Transformer-based multimodal analysis (e.g., CLIP)
D) Metadata analysis (EXIF data, file properties)
#Python #NSFW #ComputerVision #DeepLearning
✅ By: https://t.iss.one/DataScienceQ
When implementing NSFW (Not Safe For Work) content detection in Python, which of these approaches provides the best balance between accuracy and performance?
A) Rule-based keyword filtering
B) CNN-based image classification (e.g., MobileNetV2)
C) Transformer-based multimodal analysis (e.g., CLIP)
D) Metadata analysis (EXIF data, file properties)
#Python #NSFW #ComputerVision #DeepLearning
✅ By: https://t.iss.one/DataScienceQ
❤2
Python Data Science Jobs & Interviews
Question 21 (Beginner): What is the correct way to check the Python version installed on your system using the command line? A) python --version B) python -v C) python --v D) python version #Python #Basics #Programming #Beginner ✅ By: htt…
✅ Correct answer: A) `python --version`
*Additional Info:*
- On some systems, you might need to use
- To see more details, you can use
- This works on Windows, macOS, and Linux
*Note: The other options will either show an error or unexpected output*
*Additional Info:*
- On some systems, you might need to use
python3 --version
- To see more details, you can use
python -VV
(capital V twice) - This works on Windows, macOS, and Linux
$ python --version
Python 3.9.7 # Example output
*Note: The other options will either show an error or unexpected output*
Python Data Science Jobs & Interviews
Question 22 (Interview-Level): Explain the difference between deepcopy and regular assignment (=) in Python with a practical example. Then modify the example to show how deepcopy solves the problem. import copy # Original Problem original = [[1, 2],…
✅ Correct answer: C) Shallow copy affects nested objects, deepcopy doesn't
*Expected Output:*
*Key Points for Interview Discussion:*
1. Shallow copy (
2.
3. Critical when working with:
- Nested lists/dictionaries
- Custom objects with mutable attributes
4. Trade-off:
*Expected Output:*
[[99, 2], [3, 4]] # Shallow copy modified nested list in original
[[99, 2], [3, 4]] # Original remains unchanged after deepcopy modification
*Key Points for Interview Discussion:*
1. Shallow copy (
copy()
) only copies references to nested objects 2.
deepcopy
recursively copies all nested objects 3. Critical when working with:
- Nested lists/dictionaries
- Custom objects with mutable attributes
4. Trade-off:
deepcopy
has higher memory/time overhead
Python Data Science Jobs & Interviews
Question 23 (Advanced): How does Python's "Name Mangling" (double underscore prefix) work in class attribute names, and what's its practical purpose? class Test: def __init__(self): self.public = 10 self._protected = 20 self.__private…
✅ Correct answer: B) Renames it to `_Test__private`
*Key Insights:*
1. Syntax:
2. Purpose: Prevents accidental override in inheritance
3. NOT true privacy: Can still be accessed via mangled name
4. Common Use: Framework development to avoid naming collisions
*Example Output:*
*Interview Tip:*
- Contrast with single underscore
- Explain why this isn't used for real security/encryption
*Key Insights:*
1. Syntax:
__name
becomes _ClassName__name
2. Purpose: Prevents accidental override in inheritance
3. NOT true privacy: Can still be accessed via mangled name
4. Common Use: Framework development to avoid naming collisions
*Example Output:*
['_Test__private', '_protected', 'public', ...] # Notice the mangled name
*Interview Tip:*
- Contrast with single underscore
_var
(convention only) - Explain why this isn't used for real security/encryption
Python Data Science Jobs & Interviews
Question 24 (Advanced - NSFW Detection): When implementing NSFW (Not Safe For Work) content detection in Python, which of these approaches provides the best balance between accuracy and performance? A) Rule-based keyword filtering B) CNN-based image classification…
✅ Correct answer: B) CNN-based image classification (e.g., MobileNetV2)
### Key Considerations:
1. CNNs (B) offer best speed/accuracy tradeoff (5-50ms inference)
2. Transformers (C) are more accurate but slower (300ms+)
3. Rule-based (A) fails for visual content
4. Metadata (D) can be easily spoofed
### Production Tips:
- Use quantization for mobile deployment
- Combine with hash-based filtering for known content
- Consider ethical implications of false positives/negatives
# Sample implementation using TensorFlow/Keras
from tensorflow.keras.applications import MobileNetV2
from tensorflow.keras.preprocessing import image
from tensorflow.keras.applications.mobilenet_v2 import preprocess_input
import numpy as np
# Load pre-trained NSFW detection model (conceptual example)
model = MobileNetV2(weights='imagenet') # In practice, use NSFW-specific weights
def is_nsfw(img_path):
img = image.load_img(img_path, target_size=(224, 224))
x = image.img_to_array(img)
x = preprocess_input(x)
preds = model.predict(np.expand_dims(x, axis=0))
return preds[0][0] > 0.5 # Threshold for NSFW class
### Key Considerations:
1. CNNs (B) offer best speed/accuracy tradeoff (5-50ms inference)
2. Transformers (C) are more accurate but slower (300ms+)
3. Rule-based (A) fails for visual content
4. Metadata (D) can be easily spoofed
### Production Tips:
- Use quantization for mobile deployment
- Combine with hash-based filtering for known content
- Consider ethical implications of false positives/negatives
❤2
Question 25 (Advanced - CNN Implementation in Keras):
When building a CNN for image classification in Keras, what is the purpose of Global Average Pooling 2D as the final layer before classification?
A) Reduces spatial dimensions to 1x1 while preserving channel depth
B) Increases receptive field for better feature extraction
C) Performs pixel-wise normalization
D) Adds non-linearity before dense layers
#Python #Keras #CNN #DeepLearning
✅ By: https://t.iss.one/DataScienceQ
When building a CNN for image classification in Keras, what is the purpose of Global Average Pooling 2D as the final layer before classification?
A) Reduces spatial dimensions to 1x1 while preserving channel depth
B) Increases receptive field for better feature extraction
C) Performs pixel-wise normalization
D) Adds non-linearity before dense layers
#Python #Keras #CNN #DeepLearning
✅ By: https://t.iss.one/DataScienceQ
❤1
Question 26 (Intermediate - Edge Detection):
In Python's OpenCV, which of these edge detection techniques preserves edge directionality while reducing noise?
A)
B)
C)
D)
#Python #OpenCV #EdgeDetection #ComputerVision
✅ By: https://t.iss.one/DataScienceQ
In Python's OpenCV, which of these edge detection techniques preserves edge directionality while reducing noise?
A)
cv2.Laplacian()
B)
cv2.Canny()
C)
cv2.Sobel()
with dx=1, dy=1 D)
cv2.blur()
+ thresholding #Python #OpenCV #EdgeDetection #ComputerVision
✅ By: https://t.iss.one/DataScienceQ