Data Science with Python Certification Cheat Sheet 2026
The 30 highest-yield Data Science with Python Certification facts, distilled from real exam questions. Print it, save it as a PDF, or study it here — free, no sign-up.
60 questions
90 min time limit
70.00% to pass
- Which forecasting model captures both trend and seasonality using exponential smoothing? → Holt-Winters model
- Which statistical method measures the linear relationship strength between two continuous variables? → Pearson correlation coefficient
- What is a confidence interval in statistics? → A range likely to contain the true population parameter
- Which Python function calculates the standard error of the mean? → scipy.stats.sem()
- In spaCy, what attribute of a `Token` object returns its part-of-speech tag? → token.pos_
- What does Python's "capture" cell magic command not support? → It cannot be used to capture graphical cell output
- What does the PACF (Partial Autocorrelation Function) help determine in ARIMA modeling? → The AR (p) order
- Choose a non-indexed object. → None of these
- What does the following Python code produce? a, b = 0, 1 while b print(b, end=' '); a, b = b, a+b → 1 1 2 3 5 8 1 3
- Which Python library provides pre-trained Word2Vec and FastText models for loading and using word embeddings? → Gensim
- Which Python library provides the `word_tokenize()` function for splitting text into individual tokens? → NLTK
- What is a bigram in NLP? → A sequence of two consecutive words used as a single feature
- What is statistical power in hypothesis testing? → The probability of correctly rejecting a false null hypothesis
- Which scikit-learn class converts a collection of text documents to a matrix of TF-IDF features? → TfidfVectorizer
- What does a p-value less than 0.05 typically indicate in hypothesis testing? → There is strong evidence to reject the null hypothesis
- What does the Jupyter Notebook application not apply to? → Cell may only be run one at a time
- Which measure of central tendency is most resistant to outliers? → Median
- Which of the following is a key assumption of Linear Regression that, if violated, can lead to unreliable and biased coefficient estimates? → The residuals (error terms) are independent of each other.
- What serves as the fundamental building block for all sparse indexed data structures? → SparseArray
- Which Python library provides ARIMA and SARIMA models for time series forecasting? → statsmodels
- What are things like pandas? → NumPy
- What is the primary objective of the Principal Component Analysis (PCA) algorithm? → To reduce the dimensionality of a dataset while preserving the maximum amount of variance.
- What plot evaluates the unpredictability of time series? → Autocorrelation
- Which of the following statements correctly describes the behavior of `np.hstack()`? → It stacks arrays in sequence horizontally (column-wise).
- How do you parse a date column automatically when reading a CSV file with pandas? → pd.read_csv(file, parse_dates=['date'])
- Which statistical test should you use to compare means across more than two groups? → ANOVA
- What does `scipy.stats.mannwhitneyu()` test in Python? → Whether two independent samples come from the same distribution
- What qualifies as not a property of an ndarray object? → length
- Which method on a scikit-learn vectorizer both learns the vocabulary and transforms the training data in one step? → fit_transform()
- What kind of data can be used with Pandas? → All of these
Turn these facts into recall: