
Monetize Telegram Mini App with Telega.io
Connect your app, set CPM, and watch your revenue grow!
Start monetizing
28.5

Advertising on the Telegram channel «Data Analytics - SQL, Python, Excel, AI & ChatGPT»
5.0
20
Computer science
Language:
English
2.4K
3
Global English-speaking audience in this telegram channel who are interested in learning about new things and data oriented stuff.
Share
Add to favorite
Channel temporarily not accepting requests
Choose another channel from recommendations or get a tailored list within your budget using AI
AI Channel Picker
Recent Channel Posts
Top 10 Excel Interview Questions with Answers ✅
1. Question: What is the difference between CONCATENATE and "&" in Excel?
Answer: CONCATENATE and "&" both combine text, but "&" is more concise. For example,
=A1&B1
achieves the same result as =CONCATENATE(A1, B1)
.
2. Question: How can you freeze rows and columns simultaneously in Excel?
Answer: Use the "Freeze Panes" option under the "View" tab. Select the cell below and to the right of the rows and columns you want to freeze, and then click on "Freeze Panes."
3. Question: Explain the VLOOKUP function and when would you use it?
Answer: VLOOKUP searches for a value in the first column of a range and returns a corresponding value in the same row from another column. It's useful for looking up information in a table based on a specific criteria.
4. Question: What is the purpose of the IFERROR function?
Answer: IFERROR is used to handle errors in Excel formulas. It returns a specified value if a formula results in an error, and the actual result if there's no error.
5. Question: How do you create a PivotTable, and what is its purpose?
Answer: To create a PivotTable, select your data, go to the "Insert" tab, and choose "PivotTable." It summarizes and analyzes data in a spreadsheet, allowing you to make sense of large datasets.
6. Question: Explain the difference between relative and absolute cell references.
Answer: Relative references change when you copy a formula to another cell, while absolute references stay fixed. Use a $
symbol to make a reference absolute (e.g., $A$1).
7. Question: What is the purpose of the INDEX and MATCH functions?
Answer: INDEX returns a value in a specified range based on the row and column number, while MATCH searches for a value in a range and returns its relative position. Combined, they provide a flexible way to look up data.
8. Question: How can you find and remove duplicate values in Excel?
Answer: Use the "Remove Duplicates" feature under the "Data" tab. Select the range containing duplicates, go to "Data" -> "Remove Duplicates," and choose the columns to check for duplicates.
9. Question: Explain the difference between a workbook and a worksheet.
Answer: A workbook is the entire Excel file, while a worksheet is a single sheet within that file. Workbooks can contain multiple worksheets.
10. Question: What is the purpose of the COUNTIF function?
Answer: COUNTIF counts the number of cells within a range that meet a specified condition. For example, =COUNTIF(A1:A10, ">50")
counts the cells in A1 to A10 that are greater than 50.
Free Excel Resources: https://t.me/excel_data
Hope it helps ✅1910
11:54
17.07.2025
AI/ML roadmap
Topic: Mathematics
- Subtopic: Linear Algebra
- Vectors, Matrices, Eigenvalues and Eigenvectors
- Subtopic: Calculus
- Differentiation, Integration, Partial Derivatives
- Subtopic: Probability and Statistics
- Probability Theory, Random Variables, Statistical Inference
Topic: Programming
- Subtopic: Python
- Python Basics, Libraries like NumPy, Pandas, Matplotlib
Topic: Machine Learning
- Subtopic: Supervised Learning
- Linear Regression, Logistic Regression, Decision Trees
- Subtopic: Unsupervised Learning
- Clustering, Dimensionality Reduction[1](https://i.am.ai/roadmap)
- Subtopic: Neural Networks and Deep Learning
- Feedforward Neural Networks, Convolutional Neural Networks, Recurrent Neural Networks
Topic: Specializations
- Subtopic: Natural Language Processing
- Text Preprocessing, Topic Modeling, Word Embeddings
- Subtopic: Computer Vision
- Image Processing, Object Detection, Image Segmentation
- Subtopic: Reinforcement Learning
- Markov Decision Processes, Q-Learning, Policy Gradients
Join for more: https://t.me/machinelearning_deeplearning
1985
13:35
17.07.2025
imageImage preview is unavailable
𝗧𝗼𝗽 𝗖𝗼𝗺𝗽𝗮𝗻𝗶𝗲𝘀 𝗟𝗶𝗸𝗲 𝗜𝗻𝗳𝗼𝘀𝘆𝘀 , 𝗚𝗲𝗻𝗽𝗮𝗰𝘁 ,𝗟&𝗧 ,𝗣𝗵𝗶𝗹𝗶𝗽𝘀 & 𝗢𝗿𝗮𝗰𝗹𝗲 𝗛𝗶𝗿𝗶𝗻𝗴 😍
Roles Hiring:- Data Analyst, Software Engineer & Associate
Job Location:- Across India/WFH
Qualification:- Graduate/Post Graduate
𝗔𝗽𝗽𝗹𝘆 𝗡𝗼𝘄👇:-
https://bit.ly/44qMX2k
Select your experience & Complete The Registration Process
Select the company name & apply for the role that matches you
1951
15:07
17.07.2025
Scenario based Interview Questions & Answers for Data Analyst
1. Scenario: You are working on a SQL database that stores customer information. The database has a table called "Orders" that contains order details. Your task is to write a SQL query to retrieve the total number of orders placed by each customer.
Question:
- Write a SQL query to find the total number of orders placed by each customer.
Expected Answer:
SELECT CustomerID, COUNT(*) AS TotalOrders
FROM Orders
GROUP BY CustomerID;
2. Scenario: You are working on a SQL database that stores employee information. The database has a table called "Employees" that contains employee details. Your task is to write a SQL query to retrieve the names of all employees who have been with the company for more than 5 years.
Question:
- Write a SQL query to find the names of employees who have been with the company for more than 5 years.
Expected Answer:
SELECT Name
FROM Employees
WHERE DATEDIFF(year, HireDate, GETDATE()) > 5;
Power BI Scenario-Based Questions
1. Scenario: You have been given a dataset in Power BI that contains sales data for a company. Your task is to create a report that shows the total sales by product category and region.
Expected Answer:
- Load the dataset into Power BI.
- Create relationships if necessary.
- Use the "Fields" pane to select the necessary fields (Product Category, Region, Sales).
- Drag these fields into the "Values" area of a new visualization (e.g., a table or bar chart).
- Use the "Filters" pane to filter data as needed.
- Format the visualization to enhance clarity and readability.
2. Scenario: You have been asked to create a Power BI dashboard that displays real-time stock prices for a set of companies. The stock prices are available through an API.
Expected Answer:
- Use Power BI Desktop to connect to the API.
- Go to "Get Data" > "Web" and enter the API URL.
- Configure the data refresh settings to ensure real-time updates (e.g., setting up a scheduled refresh or using DirectQuery if supported).
- Create visualizations using the imported data.
- Publish the report to the Power BI service and set up a data gateway if needed for continuous refresh.
3. Scenario: You have been given a Power BI report that contains multiple visualizations. The report is taking a long time to load and is impacting the performance of the application.
Expected Answer:
- Analyze the current performance using Performance Analyzer.
- Optimize data model by reducing the number of columns and rows, and removing unnecessary calculations.
- Use aggregated tables to pre-compute results.
- Simplify DAX calculations.
- Optimize visualizations by reducing the number of visuals per page and avoiding complex custom visuals.
- Ensure proper indexing on the data source.
Free SQL Resources: t.me/mysqldata
Like if you need more similar content
Hope it helps :)
2102
17:21
17.07.2025
imageImage preview is unavailable
𝗙𝗥𝗘𝗘 𝗥𝗲𝘀𝗼𝘂𝗿𝗰𝗲𝘀 𝗧𝗼 𝗖𝗿𝗮𝗰𝗸 𝗬𝗼𝘂𝗿 𝗡𝗲𝘅𝘁 𝗜𝗻𝘁𝗲𝗿𝘃𝗶𝗲𝘄 😍
Preparing for coding interviews? These free resources will help you crack your dream job! 📌
Ace Your Next Interview with These FREE Resources!👨💻
𝐋𝐢𝐧𝐤👇:-
https://pdlink.in/3FjrIVX
All The Best 🎊
1
10:00
18.07.2025
Don't waste your lot of time when learning data analysis.
Here's how you may start your Data analysis journey
1️⃣ - Avoid learning a programming language (e.g., SQL, R, or Python) for as long as possible.
This advice might seem strange coming from a former software engineer, so let me explain.
The vast majority of data analyses conducted each day worldwide are performed in the "solo analyst" scenario.
In this scenario, nobody cares about how the analysis was completed.
Only the results matter.
Also, the analysis methods (e.g., code) are rarely shared in this scenario.
2️⃣ Use Microsoft Excel for as long as possible.
Again, on the surface, strange advice from someone who loves SQL and Python.
When I first started learning data analysis, I ignored Microsoft Excel.
I was a coder, and I looked down on Excel.
I was 100% wrong.
Over the years, Excel has become an exceedingly powerful data analysis tool.
For many professionals, it can be all the analytical tooling they need.
For example, Excel is a wonderful tool for visually analyzing data (e.g., PivotCharts).
You can use Excel to conduct powerful Diagnostic Analytics.
The simple reality is that many professionals will never hit Excel's data limit - especially if they have a decent laptop.
3️⃣ Microsoft Excel might be your hammer, but not every problem is a nail.
Please, please, please use Excel where it makes sense!
If you reach a point where Excel doesn't make sense, know that you can quickly move on to technologies that are better suited for your needs....
#dataanalysis
4️⃣ SQL is your friend.
If you're unfamiliar, SQL is the language used to query databases.
After Microsoft Excel, SQL is the world's most commonly used data technology.
SQL is easily integrated into Excel, allowing you to leverage the power of the database server to acquire and wrangle data.
The results of all this goodness then show up in your workbook.
Also, SQL is straightforward for Excel users to learn.
5️⃣ Python in Excel.
Microsoft is providing you with just what you need to scale beyond Excel limitations.
At first, you use Python in Excel because it's the easiest way to scale and tap into a vast amount of DIY data science goodness.
As 99% of the code you write for Python in Excel translates to any tool, you now have a path to move off of Excel if needed.
For example, Jupyter Notebooks and VS Code.
Hope it helps :)
1
11:01
18.07.2025
5 Most Used Excel Functions by Data Analysts
🧵⬇️
1️⃣ VLOOKUP / XLOOKUP:
VLOOKUP is used to look up values in a table or range by row, making it useful for merging datasets or retrieving specific data.
XLOOKUP (newer and more versatile) allows searching both horizontally and vertically and supports approximate matches.
2️⃣ INDEX-MATCH:
The INDEX-MATCH combination is often preferred over VLOOKUP for more flexibility. INDEX retrieves a value from a specified cell range, while MATCH identifies its position. Together, they allow more complex lookups, especially when the lookup column isn’t the leftmost column.
3️⃣ SUMIF / SUMIFS:
SUMIF and SUMIFS allow summing values based on single or multiple conditions, making it easy to analyze specific segments of data, such as summing revenue by region or time period.
4️⃣ COUNTIF / COUNTIFS:
COUNTIF and COUNTIFS are similar to SUMIF but are used for counting cells that meet specific criteria. These functions are helpful for calculating frequencies, such as counting occurrences of a certain value in a dataset.
5️⃣ Pivot Tables:
Pivot Tables aren’t a function but are an essential Excel tool for data analysts. They enable quick summarization, aggregation, and exploration of large datasets, allowing analysts to generate insights without complex formulas.
Like for more ❤️
1
11:26
18.07.2025
imageImage preview is unavailable
Data Analyst Checklist ✅
1
13:24
18.07.2025
Top 10 Python functions that are commonly used in data analysis
import pandas as pd: This function is used to import the Pandas library, which is essential for data manipulation and analysis.
read_csv(): This function from Pandas is used to read data from CSV files into a DataFrame, a primary data structure for data analysis.
head(): It allows you to quickly preview the first few rows of a DataFrame to understand its structure.
describe(): This function provides summary statistics of the numeric columns in a DataFrame, such as mean, standard deviation, and percentiles.
groupby(): It's used to group data by one or more columns, enabling aggregation and analysis within those groups.
pivot_table(): This function helps in creating pivot tables, allowing you to summarize and reshape data for analysis.
fillna(): Useful for filling missing values in a DataFrame with a specified value or a calculated one (e.g., mean or median).
apply(): This function is used to apply custom functions to DataFrame columns or rows, which is handy for data transformation.
plot(): It's part of the Matplotlib library and is used for creating various data visualizations, such as line plots, bar charts, and scatter plots.
merge(): This function is used for combining two or more DataFrames based on a common column or index, which is crucial for joining datasets during analysis.
These functions are essential tools for any data analyst working with Python for data analysis tasks.
Hope it helps :)
1
17:10
18.07.2025
imageImage preview is unavailable
Greetings from PVR Cloud Tech!! 🌈
We will be starting Full Stack Data Engineering on 19th July 2025, from 10:00 AM to 12:00 PM IST (Saturday).
These sessions are exclusively designed for beginners entering the software industry and individuals transitioning from non-IT to IT backgrounds. Data engineers are the backbone of modern businesses.
✅ Course Content :
https://drive.google.com/file/d/1yejI95UAC5DdD2X83Qiu14pnfpUVX6_l/view?usp=sharing
🔥 Interested candidates, please fill out the form below and join the WhatsApp Group.
https://forms.gle/B2JD2ZUvpwfUtPZN6
https://chat.whatsapp.com/Cdr0oDSoaGZIyoIAkmlOAa
https://www.whatsapp.com/channel/0029Vb60rGU8V0thkpbFFW2n
Please share these details with your friends as these sessions may help them transform their careers, and you will be a part of it by providing information.
Thanks,
Team,PVR Cloud Tech
+91-9346060794
1
17:53
18.07.2025
close
New items
Selected
0
channels for:$0.00
Subscribers:
0
Views:
lock_outline
Add to CartBuy for:$0.00
Комментарий