Posts

GENERATE A QR CODE FOR RESUMES USING PYTHON

Image
Follow me on  LinkedIn ,  GitHub ,  YouTube GENERATE A QR CODE USING PYTHON -Anupam Shrivastava You can use the qrcode library. You need to install the qrcode library before running this code. You can do so by running the following command in your terminal or command prompt: This code generates a QR code for the URL "https://codingwithas.blogspot.com/" and saves it as a PNG image named "example.png" in the same directory as the Python script. You can open the image file to view the QR code. There are many other options and customizations available in the qrcode library, such as adding color to the QR code, adding a logo to the QR code, specifying the size of the QR code, and more. You can refer to the qrcode documentation for more information and examples. You can Scan it and check QRCODE FOR MY RESUME: Generating a QR code for your resume is a great way to make it easier for potential employers to access your professional information quickly and easily....

TECHNICAL CODING INTERVIEW QUESTIONS FOR A DATA ANALYST FRESHER

Image
Follow me on  LinkedIn ,  GitHub ,  YouTube SOME TECHNICAL CODING INTERVIEW QUESTIONS FOR A DATA ANALYST FRESHER -Anupam Shrivastava 1. Write a Python function to calculate the mean, median, and mode of a list of numbers. 2. Write a SQL query to find the top 5 products by sales revenue in a table named "sales_data", which has columns "product_id", "quantity_sold", and "unit_price". 3. Write a Python function to merge two sorted lists into a single sorted list. 4. Write a SQL query to calculate the percentage of orders that were delivered on time in a table named "orders", which has columns "order_id", "delivery_date", and "expected_delivery_date". 5. Write a Python function to find the most frequent item in a list. 6. Write a SQL query to calculate the average time between orders for each customer in a table named "orders", which has columns "order_id", "customer_id", and ...

10 DATA SCIENTIST INTERN INTERVIEW QUESTIONS WITH ANSWERS

Image
   Follow me on  LinkedIn ,  GitHub ,  YouTube 10 INTERVIEW QUESTIONS WITH ANSWERS & CODING EXAMPLES FOR DATA SCIENTIST INTERN ROLES -Anupam Shrivastava 1. What is your experience with data manipulation and analysis in Python? Answer: I have experience working with Python libraries like Pandas, Numpy, and Matplotlib for data manipulation, cleaning, and analysis. For example, I have used Pandas to merge and join datasets, remove duplicates and missing values, and transform data types. I have also used Numpy for numerical calculations and Matplotlib for data visualization. Code Example: 2. How do you handle missing values in a dataset? Answer: There are several ways to handle missing values, depending on the nature of the data and the analysis. One common approach is to remove any rows or columns with missing values using the dropna() method in Pandas. Another approach is to impute missing values with a mean, median, or mode value using the fillna() metho...

PYTHON PROGRAM TO GENERATE "HAPPY WOMEN'S DAY" USING MACHINE LEARNING

Image
                                                                                                    Follow me on  LinkedIn ,  GitHub ,  YouTube PYTHON PROGRAM THAT USES MACHINE LEARNING TO GENERATE A PERSONALIZED  "HAPPY WOMEN'S DAY"                                                                                    -Anupam Shrivastava Here's a Python program that uses machine learning to generate a personalized "Happy Wo...

10 Important Coding Interview Question for Python with Answers and Explanations

Image
                                                                                                              Follow me on  LinkedIn ,  GitHub ,  YouTube 10 IMPORTANT CODING INTERVIEW QUESTION FOR PYTHON WITH ANSWERS -Anupam Shrivastava Here are 10 important coding interview questions for Python along with sample answers and explanations: 1. Write a program to check if a given number is prime. Answer: Explanation: This program checks if a given number is prime by iterating through all numbers from 2 to the number itself, checking if any of them are factors of the number. If there are no factors, the number is prime. 2. Write a program to rever...