Coding interview preparation
5.75K subscribers
328 photos
47 files
163 links
Download Telegram
Machine Learning Interview Questions.pdf.pdf
194.7 KB
๐Ÿ“Œ MACHINE LEARNING INTERVIEW QUESTIONS
Data Analyst Interview Questions.pdf
81.4 KB
๐Ÿ“Œ DATA ANALYST INTERVIEW QUESTIONS
30303228.pdf
642.4 KB
๐Ÿ“Œ Python Clean Codes
Here are 10 popular programming languages based on versatile, widely-used, and in-demand languages:

1. Python โ€“ Ideal for beginners and professionals; used in web development, data analysis, AI, and more.

2. Java โ€“ A classic language for building enterprise applications, Android apps, and large-scale systems.

3. C โ€“ The foundation for many other languages; great for understanding low-level programming concepts.

4. C++ โ€“ Popular for game development, competitive programming, and performance-critical applications.

5. C# โ€“ Widely used for Windows applications, game development (Unity), and enterprise software.

6. Go (Golang) โ€“ A modern language designed for performance and scalability, popular in cloud services.

7. Rust โ€“ Known for its safety and performance, ideal for system-level programming.

8. Kotlin โ€“ The preferred language for Android development with modern features.

9. Swift โ€“ Used for developing iOS and macOS applications with simplicity and power.

10. PHP โ€“ A staple for web development, powering many websites and applications
๐Ÿ”ฐ Deep Python Roadmap for Beginners ๐Ÿ

Setup & Installation ๐Ÿ–ฅ๏ธโš™๏ธ
โ€ข Install Python, choose an IDE (VS Code, PyCharm)
โ€ข Set up virtual environments for project isolation ๐ŸŒŽ

Basic Syntax & Data Types ๐Ÿ“๐Ÿ”ข
โ€ข Learn variables, numbers, strings, booleans
โ€ข Understand comments, basic input/output, and simple expressions โœ๏ธ

Control Flow & Loops ๐Ÿ”„๐Ÿ”€
โ€ข Master conditionals (if, elif, else)
โ€ข Practice loops (for, while) and use control statements like break and continue ๐Ÿ‘ฎ

Functions & Scope โš™๏ธ๐ŸŽฏ
โ€ข Define functions with def and learn about parameters and return values
โ€ข Explore lambda functions, recursion, and variable scope ๐Ÿ“œ

Data Structures ๐Ÿ“Š๐Ÿ“š
โ€ข Work with lists, tuples, sets, and dictionaries
โ€ข Learn list comprehensions and built-in methods for data manipulation โš™๏ธ

Object-Oriented Programming (OOP) ๐Ÿ—๏ธ๐Ÿ‘ฉโ€๐Ÿ’ป
โ€ข Understand classes, objects, and methods
โ€ข Dive into inheritance, polymorphism, and encapsulation ๐Ÿ”

React "โค๏ธ" for Part 2
Part 2 of the Deep Python Roadmap for Beginners ๐Ÿ”ฐ

File Handling & Exceptions ๐Ÿ“‚๐Ÿšจ
โ€ข Read/write files (text, CSV, JSON)
โ€ข Use try/except/finally for error handling

Modules & Environments ๐Ÿ“ฆ๐ŸŒ
โ€ข Organize code with modules and packages
โ€ข Manage dependencies with pip and virtual environments

Advanced Concepts ๐Ÿ”ฅ๐Ÿ”
โ€ข Work with decorators, generators, and context managers

Testing & Debugging ๐Ÿžโœ…
โ€ข Write tests using unittest or pytest
โ€ข Utilize debugging tools and linters

APIs & Web Development ๐ŸŒ๐Ÿ”—
โ€ข Interact with RESTful APIs
โ€ข Start with frameworks like Flask or Django

Data Analysis & Visualization ๐Ÿ“Š๐ŸŽจ
โ€ข Use NumPy and Pandas for data handling
โ€ข Visualize with Matplotlib or Seaborn

Asynchronous Programming โฐ๐Ÿ”€
โ€ข Learn threading, multiprocessing, and async/await

Version Control & Deployment ๐Ÿ”๐Ÿš€
โ€ข Master Git basics and collaborative workflows
โ€ข Explore deployment strategies and CI/CD practices

Project Building & Community ๐Ÿ—๏ธ๐ŸŒ
โ€ข Build projects, contribute to open-source, and join communities

React โค๏ธ for more roadmaps
Theoretical Questions for Interviews on Array

1. What is an array?

An array is a data structure consisting of a collection of elements, each identified by at least one array index or key.

2. How do you declare an Array?

Each language has its own way of declaring arrays, but the general idea is similar: defining the type of elements and the number of elements or initializing it directly.

โœ… C/C++: int arr[5]; (Declares an array of 5 integers).
โœ… Java: int[] arr = new int[5]; (Declares and initializes an array of 5 integers).
โœ… Python: arr = [1, 2, 3, 4, 5] (Uses a list, which functions like an array and doesnโ€™t require a fixed size).
โœ… JavaScript: let arr = [1, 2, 3, 4, 5]; (Uses arrays without needing a size specification).
โœ… C#: int[] arr = new int[5]; (Declares an array of 5 integers).

3. Can an array be resized at runtime?

An array is fixed in size once created. However, in C, you can resize an array at runtime using Dynamic Memory Allocation (DMA) with malloc() or realloc(). Most modern languages have dynamic-sized arrays like vector in C++, list in Python, and ArrayList in Java, which automatically resize.

4. Is it possible to declare an array without specifying its size?

In C/C++, declaring an array without specifying its size is not allowed and causes a compile-time error. However, in C, we can create a pointer and allocate memory dynamically using malloc(). In C++, we can use vectors where we can declare first and then dynamically add elements. In modern languages like Java, Python, and JavaScript, we can declare without specifying the size.

5. What is the time complexity for accessing an element in an array?

The time complexity for accessing an element in an array is O(1), as it can be accessed directly using its index.

6. What is the difference between an array and a linked list?

An array is a static data structure, while a linked list is a dynamic data structure. Raw arrays have a fixed size, and elements are stored consecutively in memory, while linked lists can grow dynamically and do not require contiguous memory allocation. Dynamic-sized arrays allow flexible size, but the worst-case time complexity for insertion/deletion at the end becomes more than O(1). With a linked list, we get O(1) worst-case time complexity for insertion and deletion.

7. How would you find out the smallest and largest element in an array?

The best approach is iterative (linear search), while other approaches include recursive and sorting.

Iterative method

Algorithm:

1. Initialize two variables:

small = arr[0] (first element as the smallest).

large = arr[0] (first element as the largest).



2. Traverse through the array from index 1 to n-1.


3. If arr[i] > large, update large = arr[i].


4. If arr[i] < small, update small = arr[i].


5. Print the values of small and large.



C++ Code Implementation

#include <iostream>
using namespace std;

void findMinMax(int arr[], int n) {
    int small = arr[0], large = arr[0];

    for (int i = 1; i < n; i++) {
        if (arr[i] > large) 
            large = arr[i];
        if (arr[i] < small) 
            small = arr[i];
    }

    cout << "Smallest element: " << small << endl;
    cout << "Largest element: " << large << endl;
}

int main() {
    int arr[] = {7, 2, 9, 4, 1, 5};
    int n = sizeof(arr) / sizeof(arr[0]);

    findMinMax(arr, n);

    return 0;
}

8. What is the time complexity to search in an unsorted and sorted array?

โœ… Unsorted Array: The time complexity for searching an element in an unsorted array is O(n), as we may need to check every element.
โœ… Sorted Array: The time complexity for searching an element in a sorted array is O(log n) using binary search.

๐Ÿ”น O(log n) takes less time than O(n), whereas O(n log n) takes more time than O(n).
AI Solutions
All 25 Algorithms...
100+ Practice Questions

โ C/C++
โ Python
โ JavaScript
โ Java
โ C#
โ Golang

โžŠ Simple Numbers

โž€ Find a digit at a specific place in a number
โž Find count of digits in a number
โž‚ Find the largest digit
โžƒ Find the 2nd largest digit
โž„ Find the kth largest digit
โž… Find the smallest digit
โž† Find the 2nd smallest digit
โž‡ Find the kth smallest digit
โžˆ Find generic root (sum of all digits) of a number
โž‰ Reverse the digits in a number
โž€โž€ Rotate the digits in a number
โž€โž Is the number a palindrome?
โž€โž‚ Find sum of 'n' numbers
โž€โžƒ Check if a number is perfect square
โž€โž„ Find a number in an AP sequence
โž€โž… Find a number in a GP sequence
โž€โž† Find a number in fibonacci sequence
โž€โž‡ Check number divisibility by 2, 3, 5, 9
โž€โžˆ Check if a number is primary or not
20. Given a number, print all primes smaller than it
โžโž€ Check if a number is circular prime or not
โžโž Find all prime factors of a number
โžโž‚ Find the GCD of 2 numbers
โžโžƒ Find the LCM of 2 numbers
โžโž„ Find the factorial of a number
โžโž… Find the exponentiation of a number

โž‹ Unit Conversion

โž€ Number Base (Binary, Octal, Hexadecimal, Decimal)
โž Weight (gram, kg, pound)
โž‚ Height (cm, m, inch, feet)
โžƒ Temperature (centigrade, fahrenhite)
โž„ Distance (km, mile)
โž… Area (mยฒ, kmยฒ, acre)
โž† Volume (ltr, gallon)
โž‡ Time (sec, min, hour)
โžˆ Currency

โžŒ Calculator

โž€ Loan EMI Calculator
โž Fixed Deposit Returns Calculator
โž‚ Interest Calculator
โžƒ BMI Calculator
โž„ Item Price (considering tax, discount, shipping)
โž… Tip Calculator

โž Geometry

โž€ Find distance between 2 points
โž Given 2 sides of a right angle triangle, find the 3rd
โž‚ Find 3rd angle of a triangle when 2 are given
โžƒ Area of a triangle when 3 sides are given
โž„ Area of a right angle triangle
โž… Perimeter of a Square
โž† Area of a Square
โž‡ Perimeter of a Rectangle
โžˆ Area of a Rectangle
โž‰ Circumference of a Circle
โž€โž€ Area of a Circle
โž€โž Circumference of a Semi-Circle
โž€โž‚ Area of a Semi-Circle
โž€โžƒ Area of a Ring
โž€โž„ Circumference of an Ellipse
โž€โž… Area of an Ellipse
โž€โž† Suface Area of a Sphere
โž€โž‡ Volume of a Sphere
โž€โžˆ Surface Area of a Hemisphere
20. Volume of a Hemisphere
โžโž€ Surface area of a Cube
โžโž Volume of a Cube
โžโž‚ Surface area of a Cylinder
โžโžƒ Volume of a Cylinder

โžŽ Vector

โž€ Find Scalar Multiplication of a vector
โž Find addition/subtraction of vectors
โž‚ Find magnitude of a vector
โžƒ Find an unit vector along a given vector
โž„ Find dot product of 2 vectors
โž… Find cross product of 2 vectors
โž† Check if 2 vectors are orthogonal

โž Matrix

โž€ Find the determinant of a matrix
โž Find Scalar Multiplication of a matrix
โž‚ Find addition/subtraction of matrices
โžƒ Find the transpose of a matrix
โž„ Find if 2 matrices are orthogonal
โž… Find inverse of a 2x2 and 3x3 matrix

โž Set

โž€ Find Union of 2 sets
โž Find Intersection of 2 sets
โž‚ Find the Difference of 2 sets
โžƒ Find the Symmetric Difference of 2 sets
โž„ Find if a set is subset/superset of another set
โž… Find if 2 sets are disjoints

โž‘ Special Numbers

โž€ Strong Number
โž Perfect Number
โž‚ Armstrong Number
โžƒ Harshad Number
โž„ Kaprekar Number
โž… Lychrel Number
โž† Narcissistic Decimal Number
โž‡ Lucus Number
โžˆ Catalan Number
โž‰ Duck Number
โž€โž€ Ugly Number
โž€โž Abundant Number
โž€โž‚ Deficient Number
โž€โžƒ Automorphic Number
โž€โž„ Magic Number
โž€โž… Friendly Pair Numbers
โž€โž† Neon Number
โž€โž‡ Spy Number
โž€โžˆ Happy Number
20. Sunny Number
โžโž€ Disarium Number
โžโž Pronic Number
โžโž‚ Trimorphic Number
โžโžƒ Evil Number
โžโž„ Amicable Pairs
Getting job offers as a developer involves several steps:๐Ÿ‘จโ€๐Ÿ’ป๐Ÿš€

1. Build a Strong Portfolio: Create a portfolio of projects that showcase your skills. Include personal projects, open-source contributions, or freelance work. This demonstrates your abilities to potential employers.๐Ÿ‘จโ€๐Ÿ’ป

2. Enhance Your Skills: Stay updated with the latest technologies and trends in your field. Consider taking online courses, attending workshops, or earning certifications to bolster your skills.๐Ÿš€

3. Network: Attend industry events, conferences, and meetups to connect with professionals in your field. Utilize social media platforms like LinkedIn to build a professional network.๐Ÿ”ฅ

4. Resume and Cover Letter: Craft a tailored resume and cover letter for each job application. Highlight relevant skills and experiences that match the job requirements.๐Ÿ“‡

5. Job Search Platforms: Utilize job search websites like LinkedIn, Indeed, Glassdoor, and specialized platforms like Stack Overflow Jobs, GitHub Jobs, or AngelList for tech-related positions. ๐Ÿ”

6. Company Research: Research companies you're interested in working for. Customize your application to show your genuine interest in their mission and values.๐Ÿ•ต๏ธโ€โ™‚๏ธ

7. Prepare for Interviews: Be ready for technical interviews. Practice coding challenges, algorithms, and data structures. Also, be prepared to discuss your past projects and problem-solving skills.๐Ÿ“

8. Soft Skills: Develop your soft skills like communication, teamwork, and problem-solving. Employers often look for candidates who can work well in a team and communicate effectively.๐Ÿ’ป

9. Internships and Freelancing: Consider internships or freelancing opportunities to gain practical experience and build your resume. ๐Ÿ 

10. Personal Branding: Maintain an online presence by sharing your work, insights, and thoughts on platforms like GitHub, personal blogs, or social media. This can help you get noticed by potential employers.๐Ÿ‘ฆ

11. Referrals: Reach out to your network and ask for referrals from people you know in the industry. Employee referrals are often highly valued by companies.๐ŸŒˆ

12. Persistence: The job search process can be challenging. Don't get discouraged by rejections. Keep applying, learning, and improving your skills.๐Ÿ’ฏ

13. Negotiate Offers: When you receive job offers, negotiate your salary and benefits. Research industry standards and be prepared to discuss your expectations.๐Ÿ“‰

Remember that the job search process can take time, so patience is key. By focusing on these steps and continuously improving your skills and network, you can increase your chances of receiving job offers as a developer.
Common Coding Mistakes to Avoid
Even experienced programmers make mistakes.


Undefined variables:
Ensure all variables are declared and initialized before use.

Type coercion:
Be mindful of JavaScript's automatic type conversion, which can lead to unexpected results.

Incorrect scope:
Understand the difference between global and local scope to avoid unintended variable access.

Logical errors:
Carefully review your code for logical inconsistencies that might lead to incorrect output.

Off-by-one errors:
Pay attention to array indices and loop conditions to prevent errors in indexing and iteration.

Infinite loops:
Avoid creating loops that never terminate due to incorrect conditions or missing exit points.

Example:
// Undefined variable error
let result = x + 5; // Assuming x is not declared

// Type coercion error
let age = "30";
let isAdult = age >= 18; // Age will be converted to a number

By being aware of these common pitfalls, you can write more robust and error-free code.

Do you have any specific coding mistakes you've encountered recently?
Do you know these symbols?
Technologies used by Netflix
SCREENSHOTS IN PYTHON
๐Ÿ’กUse ZIP function to iterate over multiple lists simultaneously ๐Ÿ’ก
IMPROVING API PERFORMANCE
DEVOPS CHEAT SHEET