E-Learning Courses Analytics Report Using Power BI
Project Overview The objective of this Power BI report is to analyze Udemy's online course offerings. Key insights will focus on the popularity of courses, pricing patterns, review trends, content duration, and subject categories. This report aims to help stakeholders identify popular courses, understand pricing...
Cracking the Data Science Job Market: Expert Tips for Advancing Your Career🧠📉
Navigating the Data Science Job Market: Tips for Career Advancement The data science field has experienced explosive growth over the past decade, and as businesses continue to rely on data-driven insights, the demand for skilled professionals remains high. However, with this increasing demand comes growing...
Advanced Excel Interview Questions Set - 2 Released
Intermediate Level What is a hyperlink, and how do you add a hyperlink? A hyperlink in Excel is a link that directs you to another location, such as a web page, a different worksheet, or a specific cell within the same worksheet. Example: To add...
Advanced Excel Interview Questions Set - 1 Released
Intermediate Level What is the difference between a range and a named range? A range in Excel refers to a selection of two or more cells. For example, “A1:A10” refers to a range of cells from A1 to A10. Ranges are often used in formulas,...
Python Interview Questions Set - 17 Released
Intermediate Level How to merge two DataFrames on a common column? df1 = pd.DataFrame({"A":[1,2,3], "B":[11,12,13]}) df2 = pd.DataFrame({"A":[1,2,4], "B":[21,22,23]}) new_df = pd.merge(df1, df2, how='inner', on='A') new_df A B_x B_y 0 1 11 21 1 2 12 22 How to apply a function to each element...
Python Interview Questions Set - 14 Released
Intermediate Level Print First 10 natural numbers using while loop cnt = 0 while (cnt := cnt + 1)
Python Interview Questions Set - 13 Released
Intermediate Level Display numbers divisible by 5 from a list lst_ = list(np.random.randint(10,99,100)) def isDivByFive(num): return (num%5==0) for n in lst_: if isDivByFive(n): print(n, end=",") Create the dictionary with number and its square which is leas then or equal to given number. ur_input = int(input("Enter...
Python Interview Questions Set - 8 Released
Intermediate Level Sum of Digits Program in Python Aproch 01 ur_input = input("Enter Some Number: ") # return str total_ = 0 for i in ur_input: total_ += int(i) print(total_) Aproch 02 ur_input = int(input("Enter Some Number: ")) # return type is int total_ =...
Python Interview Questions Set - 7 Released
Intermediate Level Importing Required Libraries import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sns np.random.seed(42) Python Program to Check Whether a Given Number is Even or Odd using Recursion def checkEvenOdd(num): if num < 2: return (num%2 ==...
Python Interview Questions Set - 4 Released
Intermediate Level What are comments and how can you add comments in Python? Comments in Python refer to a piece of text intended for information. It is especially relevant when more than one person works on a set of codes. It can be used to...
Recent Comments
Archives
Categories
Categories
- Inspiration (1)
- Style (1)
- Technical Blog (30)
- Tips & tricks (2)
- Uncategorized (25)