Coding Interview Resources
50.2K subscribers
689 photos
7 files
396 links
This channel contains the free resources and solution of coding problems which are usually asked in the interviews.

Managed by: @love_data
Download Telegram
Types of API โœ…
โค2
Few common problems with lot of resumes:

1. ๐ˆ๐ซ๐ซ๐ž๐ฅ๐ž๐ฏ๐š๐ง๐ญ ๐ข๐ง๐Ÿ๐จ๐ซ๐ฆ๐š๐ญ๐ข๐จ๐ง.
I understand that there are a lot of achievements that we are personally proud of (things like represented school/clg in XYZ competition or school head/class head etc), but not all of them are relevant to technical roles. As a fresher, try to focus more on technical achievements rather than managerial ones.

2. ๐‹๐š๐œ๐ค ๐จ๐Ÿ ๐ช๐ฎ๐š๐ฅ๐ข๐ญ๐ฒ ๐ฉ๐ซ๐จ๐ฃ๐ž๐œ๐ญ๐ฌ.
Many resumes have the same common projects, such as:
Creating just the front-end using HTML and CSS and redirecting all the work to an open-source API (e.g., weather prediction and recipe suggestion apps).

Most common projects are: -
Tic-tac-toe game.
Sorting algorithms visualizers.
To-do application.
Movie listing.

The codes for these projects are often copied and pasted from GitHub repositories.

Projects are like a bounty. If you are prepared well and have quality projects in your resume, you can set the tempo of the interview. It is one of the few questions that you will almost certainly be asked in the interview.

I don't understand why we can spend 2 years preparing for data structures and algorithms (DSA) and competitive programming (CP), but not even 2 weeks to create quality projects.
Even if your resume passes the applicant tracking system (ATS) and recruiter's screening, weak projects can still lead to your rejection in interviews. And this is completely in your hands.

I feel that this topic needs a lot more discussion about the type and quality of projects that one needs. Let me know if you want a dedicated post on this.

3. ๐‹๐š๐œ๐ค ๐จ๐Ÿ ๐ช๐ฎ๐š๐ง๐ญ๐ข๐ญ๐š๐ญ๐ข๐ฏ๐ž ๐๐š๐ญ๐š.
For technical roles, adding quantitative data has a big impact.
For example, instead of saying "I wrote unit tests for service X and reduced the latency of service Y by caching," you can say "I wrote unit tests and increased the code coverage from 80% to 95% of service X and reduced latency from 100 milliseconds to 50 milliseconds of service Y."
โค5
โŒจ๏ธ JavaScript Array methods
โค7
REST API Common Misconceptions
โค5๐Ÿ‘1
๐Ÿ“š๐Ÿ‘€๐Ÿš€Preparing for a Data science/ Data Analytics interview can be challenging, but with the right strategy, you can enhance your chances of success. Here are some key tips to assist you in getting ready:

Review Fundamental Concepts: Ensure you have a strong grasp of statistics, probability, linear algebra, data structures, algorithms, and programming languages like Python, R, and SQL.

Refresh Machine Learning Knowledge: Familiarize yourself with various machine learning algorithms, including supervised, unsupervised, and reinforcement learning.

Practice Coding: Sharpen your coding skills by solving data science-related problems on platforms like HackerRank, LeetCode, and Kaggle.

Build a Project Portfolio: Showcase your proficiency by creating a portfolio highlighting projects covering data cleaning, wrangling, exploratory data analysis, and machine learning.

Hone Communication Skills: Practice articulating complex technical ideas in simple terms, as effective communication is vital for data scientists when interacting with non-technical stakeholders.

Research the Company: Gain insights into the company's operations, industry, and how they leverage data to solve challenges.

๐Ÿง ๐Ÿ‘By adhering to these guidelines, you'll be well-prepared for your upcoming data science interview. Best of luck!

Hope this helps ๐Ÿ‘โค๏ธ:โ -โ )

๐Ÿ‘๐Ÿ‘€Be the first one to know the latest Job openings
https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226
โค1
1. What is the AdaBoost Algorithm?
AdaBoost also called Adaptive Boosting is a technique in Machine Learning used as an Ensemble Method. The most common algorithm used with AdaBoost is decision trees with one level that means with Decision trees with only 1 split. These trees are also called Decision Stumps. What this algorithm does is that it builds a model and gives equal weights to all the data points. It then assigns higher weights to points that are wrongly classified. Now all the points which have higher weights are given more importance in the next model. It will keep training models until and unless a lower error is received.

2. What is the Sliding Window method for Time Series Forecasting?

Time series can be phrased as supervised learning. Given a sequence of numbers for a time series dataset, we can restructure the data to look like a supervised learning problem.
In the sliding window method, the previous time steps can be used as input variables, and the next time steps can be used as the output variable.
In statistics and time series analysis, this is called a lag or lag method. The number of previous time steps is called the window width or size of the lag. This sliding window is the basis for how we can turn any time series dataset into a supervised learning problem.


3. What do you understand by sub-queries in SQL?

A subquery is a query inside another query where a query is defined to retrieve data or information back from the database. In a subquery, the outer query is called as the main query whereas the inner query is called subquery. Subqueries are always executed first and the result of the subquery is passed on to the main query. It can be nested inside a SELECT, UPDATE or any other query. A subquery can also use any comparison operators such as >,< or =.


4. Explain the Difference Between Tableau Worksheet, Dashboard, Story, and Workbook?

Tableau uses a workbook and sheet file structure, much like Microsoft Excel.
A workbook contains sheets, which can be a worksheet, dashboard, or a story.
A worksheet contains a single view along with shelves, legends, and the Data pane.
A dashboard is a collection of views from multiple worksheets.
A story contains a sequence of worksheets or dashboards that work together to convey information.


5. How is a Random Forest related to Decision Trees?

Random forest is an ensemble learning method that works by constructing a multitude of decision trees. A random forest can be constructed for both classification and regression tasks.
Random forest outperforms decision trees, and it also does not have the habit of overfitting the data as decision trees do.
A decision tree trained on a specific dataset will become very deep and cause overfitting. To create a random forest, decision trees can be trained on different subsets of the training dataset, and then the different decision trees can be averaged with the goal of decreasing the variance.


6. What are some disadvantages of using Naive Bayes Algorithm?

Some disadvantages of using Naive Bayes Algorithm are:
It relies on a very big assumption that the independent variables are not related to each other.
It is generally not suitable for datasets with large numbers of numerical attributes.
It has been observed that if a rare case is not in the training dataset but is in the testing dataset, then it will most definitely be wrong.
โค4
๐Ÿงฟ Boost React Performance

Performance bottlenecks in React often come from unnecessary re-renders and poor state management. Hereโ€™s a straightforward guide to optimizing your React apps.
โค1
Roadmap to become a Programmer:

๐Ÿ“‚ Learn Programming Fundamentals (Logic, Syntax, Flow)
โˆŸ๐Ÿ“‚ Choose a Language (Python / Java / C++)
โˆŸ๐Ÿ“‚ Learn Data Structures & Algorithms
โˆŸ๐Ÿ“‚ Learn Problem Solving (LeetCode / HackerRank)
โˆŸ๐Ÿ“‚ Learn OOPs & Design Patterns
โˆŸ๐Ÿ“‚ Learn Version Control (Git & GitHub)
โˆŸ๐Ÿ“‚ Learn Debugging & Testing
โˆŸ๐Ÿ“‚ Work on Real-World Projects
โˆŸ๐Ÿ“‚ Contribute to Open Source
โˆŸโœ… Apply for Job / Internship

React โค๏ธ for More ๐Ÿ’ก
โค8
If you want to Excel at using one of the most powerful programming languages in the world, learn these essential Python features:

โ€ข List Comprehensions โ€“ [x for x in range(10) if x % 2 == 0]
โ€ข Lambda Functions โ€“ lambda x: x * 2
โ€ข Map, Filter, Reduce โ€“ Functional programming magic
โ€ข F-strings โ€“ f"Hello, {name}!" (Best way to format strings)
โ€ข Enumerate & Zip โ€“ Iterate smarter
โ€ข Generators & Yield โ€“ Efficient memory usage
โ€ข Exception Handling โ€“ try-except-finally for error-proof code
โ€ข Decorators โ€“ @staticmethod, @classmethod, @property
โ€ข Pandas & NumPy โ€“ Data manipulation & numerical computing
โ€ข Async Programming โ€“ Speed up tasks with asyncio

Free Python Resources: ๐Ÿ‘‡
https://whatsapp.com/channel/0029VaiM08SDuMRaGKd9Wv0L

Like it if you need a complete tutorial on all these topics! ๐Ÿ‘โค๏ธ
โค5
๐Ÿญ๐Ÿฌ๐Ÿฌ% ๐—™๐—ฅ๐—˜๐—˜ ๐—–๐—ฒ๐—ฟ๐˜๐—ถ๐—ณ๐—ถ๐—ฐ๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€๐Ÿ˜

Earn industry-recognized certificates and boost your career ๐Ÿš€

1๏ธโƒฃ AI & ML โ€“ https://pdlink.in/3U3eZuq

2๏ธโƒฃ Data Analytics โ€“ https://pdlink.in/4lp7hXQ

3๏ธโƒฃ Cloud Computing โ€“ https://pdlink.in/3GtNJlO

4๏ธโƒฃ Cyber Security โ€“ https://pdlink.in/4nHBuTh

More Courses โ€“ https://pdlink.in/3ImMFAB
 
Get the Govt. of India Incentives on course completion๐Ÿ†
YouTube channels for web development languages:

๐—™๐—ฟ๐—ผ๐—ป๐˜๐—ฒ๐—ป๐—ฑ ๐—Ÿ๐—ฎ๐—ป๐—ด๐˜‚๐—ฎ๐—ด๐—ฒ๐˜€ & ๐—™๐—ฟ๐—ฎ๐—บ๐—ฒ๐˜„๐—ผ๐—ฟ๐—ธ๐˜€
HTML/CSS ๐ŸŽจ โ€“ Kevin Powell
JavaScript ๐ŸŒ โ€“ The Net Ninja
TypeScript ๐Ÿ“˜ โ€“ Academind
React โš›๏ธ โ€“ Traversy Media
Angular ๐Ÿ”บ โ€“ Academind
Vue. js ๐ŸŸฉ โ€“ Vue Mastery

๐—•๐—ฎ๐—ฐ๐—ธ๐—ฒ๐—ป๐—ฑ ๐—Ÿ๐—ฎ๐—ป๐—ด๐˜‚๐—ฎ๐—ด๐—ฒ๐˜€ & ๐—™๐—ฟ๐—ฎ๐—บ๐—ฒ๐˜„๐—ผ๐—ฟ๐—ธ๐˜€
Node. js ๐Ÿš€ โ€“ Traversy Media
PHP ๐Ÿ˜ โ€“ PHP Academy
Ruby on Rails ๐Ÿ’Ž โ€“ Drifting Ruby
Django (Python) ๐Ÿ โ€“ Corey Schafer
Flask (Python) ๐Ÿ”ฅ โ€“ Pretty Printed
ASP. NET (C#) ๐ŸŽฏ โ€“ IAmTimCorey

๐——๐—ฎ๐˜๐—ฎ๐—ฏ๐—ฎ๐˜€๐—ฒ๐˜€ & ๐——๐—ฒ๐˜ƒ๐—ข๐—ฝ๐˜€
SQL ๐Ÿ—„๏ธ โ€“ DataSimplifier
MongoDB ๐Ÿƒ โ€“ MongoDB Official
Docker ๐Ÿณ โ€“ TechWorld with Nana

React โค๏ธ for more
โค5
๐— ๐—ถ๐—ฐ๐—ฟ๐—ผ๐˜€๐—ผ๐—ณ๐˜ ๐—–๐—ฒ๐—ฟ๐˜๐—ถ๐—ณ๐—ถ๐—ฒ๐—ฑ ๐—”๐—ฐ๐—ฐ๐—ฒ๐—น๐—ฒ๐—ฟ๐—ฎ๐˜๐—ผ๐—ฟ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ ๐—ถ๐—ป ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ & ๐—”๐—œ๐Ÿ˜

๐Ÿ“š Master job-ready skills: Data Science, AI, GenAI, ML, Python, SQL & more

- Learn from Microsoft Certified Trainers & top industry experts
- Flexible online format 
- Build 4 real-world projects

โœจ Get a prestigious certificate co-branded by Microsoft + Great Learning

๐—˜๐—ป๐—ฟ๐—ผ๐—น๐—น ๐—ก๐—ผ๐˜„๐Ÿ‘‡:- 

https://pdlink.in/41KBZTs

๐ŸŽ“ Start your AI journey today with credible skills + global recognition!
โค6