cookie

We use cookies to improve your browsing experience. By clicking ยซAccept allยป, you agree to the use of cookies.

avatar

Data Science Interview Questions with Answers

The first channel on Telegram that offers exciting questions, answers, and tests in data science, artificial intelligence, machine learning, and programming languages. Buy ads: https://telega.io/c/DataScienceInterviews

Show more
The country is not specifiedEnglish56 532Education18 919
Advertising posts
8 591
Subscribers
+7124 hours
+4067 days
+1 84630 days

Data loading in progress...

Subscriber growth rate

Data loading in progress...

Amazon Interview Process for Data Scientist position ๐Ÿ“Round 1- Phone Screen round This was a preliminary round to check my capability, projects to coding, Stats, ML, etc. After clearing this round the technical Interview rounds started. There were 5-6 rounds (Multiple rounds in one day). ๐Ÿ“ ๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ ๐Ÿฎ- ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ ๐—•๐—ฟ๐—ฒ๐—ฎ๐—ฑ๐˜๐—ต: In this round the interviewer tested my knowledge on different kinds of topics. ๐Ÿ“๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ ๐Ÿฏ- ๐——๐—ฒ๐—ฝ๐˜๐—ต ๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ: In this round the interviewers grilled deeper into 1-2 topics. I was asked questions around: Standard ML tech, Linear Equation, Techniques, etc. ๐Ÿ“๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ ๐Ÿฐ- ๐—–๐—ผ๐—ฑ๐—ถ๐—ป๐—ด ๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ- This was a Python coding round, which I cleared successfully. ๐Ÿ“๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ ๐Ÿฑ- This was ๐—›๐—ถ๐—ฟ๐—ถ๐—ป๐—ด ๐— ๐—ฎ๐—ป๐—ฎ๐—ด๐—ฒ๐—ฟ where my fitment for the team got assessed. ๐Ÿ“๐—Ÿ๐—ฎ๐˜€๐˜ ๐—ฅ๐—ผ๐˜‚๐—ป๐—ฑ- ๐—•๐—ฎ๐—ฟ ๐—ฅ๐—ฎ๐—ถ๐˜€๐—ฒ๐—ฟ- Very important round, I was asked heavily around Leadership principles & Employee dignity questions. So, here are my Tips if youโ€™re targeting any Data Science role: -> Never make up stuff & donโ€™t lie in your Resume. -> Projects thoroughly study. -> Practice SQL, DSA, Coding problem on Leetcode/Hackerank. -> Download data from Kaggle & build EDA (Data manipulation questions are asked) Best Data Science & Machine Learning Resources: https://topmate.io/coding/914624 ENJOY LEARNING ๐Ÿ‘๐Ÿ‘
Show all...
๐Ÿ‘ 1
Hey guys, Here are some best Telegram Channels for free education in 2024 ๐Ÿ‘‡๐Ÿ‘‡ Free Courses with Certificate Web Development Free Resources Data Science & Machine Learning Programming Free Books Python Free Courses Ethical Hacking & Cyber Security English Speaking & Communication Stock Marketing & Investment Banking Coding Projects Jobs & Internship Opportunities Crack your coding Interviews Udemy Free Courses with Certificate Free access to all the Paid Channels ๐Ÿ‘‡๐Ÿ‘‡ https://t.me/addlist/ID95piZJZa0wYzk5 Do react with โ™ฅ๏ธ if you need more content like this ENJOY LEARNING ๐Ÿ‘๐Ÿ‘
Show all...
โค 2๐Ÿ‘ 1
Coffee Break NumPy Christian Mayer, 2018
Show all...
Coffee Break NumPy.pdf2.34 MB
โค 4๐Ÿ‘ 1
What is feature selection? Why do we need it? Feature Selection is a method used to select the relevant features for the model to train on. We need feature selection to remove the irrelevant features which leads the model to under-perform.
Show all...
โค 4
What are the main parameters of the decision tree model? โ€ข maximum tree depth โ€ข minimum samples per leaf node โ€ข impurity criterion
Show all...
โค 4
What are the decision trees? This is a type of supervised learning algorithm that is mostly used for classification problems. Surprisingly, it works for both categorical and continuous dependent variables. In this algorithm, we split the population into two or more homogeneous sets. This is done based on most significant attributes/ independent variables to make as distinct groups as possible. A decision tree is a flowchart-like tree structure, where each internal node (non-leaf node) denotes a test on an attribute, each branch represents an outcome of the test, and each leaf node (or terminal node) holds a value for the target variable. Various techniques : like Gini, Information Gain, Chi-square, entropy.
Show all...
โค 2๐Ÿ™ 1
Why is it require to split our data into three parts: train, validation, and test? โ€ข The training set is used to fit the model, i.e. to train the model with the data. โ€ข The validation set is then used to provide an unbiased evaluation of a model while fine-tuning hyperparameters. This improves the generalization of the model. โ€ข Finally, a test data set which the model has never "seen" before should be used for the final evaluation of the model. This allows for an unbiased evaluation of the model. The evaluation should never be performed on the same data that is used for training. Otherwise the model performance would not be representative.
Show all...
โค 1๐Ÿ™ 1
Can you explain how cross-validation works? Cross-validation is the process to separate your total training set into two subsets: training and validation set, and evaluate your model to choose the hyperparameters. But you do this process iteratively, selecting differents training and validation set, in order to reduce the bias that you would have by selecting only one validation set What is K-fold cross-validation? K fold cross validation is a method of cross validation where we select a hyperparameter k. The dataset is now divided into k parts. Now, we take the 1st part as validation set and remaining k-1 as training set. Then we take the 2nd part as validation set and remaining k-1 parts as training set. Like this, each part is used as validation set once and the remaining k-1 parts are taken together and used as training set. It should not be used in a time series data.
Show all...
๐Ÿ™ 1
What is the bias-variance trade-off? โ€ข Bias is the error introduced by approximating the true underlying function, which can be quite complex, by a simpler model. Variance is a model sensitivity to changes in the training dataset. โ€ข Bias-variance trade-off is a relationship between the expected test error and the variance and the bias - both contribute to the level of the test error and ideally should be as small as possible: ExpectedTestError = Variance + Biasยฒ + IrreducibleError โ€ข But as a model complexity increases, the bias decreases and the variance increases which leads to overfitting. And vice versa, model simplification helps to decrease the variance but it increases the bias which leads to underfitting.
Show all...
๐Ÿ‘ 1
What is sigmoid? What does it do? A sigmoid function is a type of activation function, and more specifically defined as a squashing function. Squashing functions limit the output to a range between 0 and 1, making these functions useful in the prediction of probabilities. Sigmod(x) = 1/(1+e^{-x})
Show all...
๐Ÿ‘ 2
Choose a Different Plan

Your current plan allows analytics for only 5 channels. To get more, please choose a different plan.