Data Analyst Jobs
89.4K subscribers
89 photos
6 files
3.19K links
๐Ÿ† Be the first one to know about the latest data analyst, data scientist, data engineer & business analyst job openings.

๐Ÿ† Learn everything about data analytics

Ads/ Promotions: @love_data
Download Telegram
Data Analyst INTERVIEW QUESTIONS AND ANSWERS
๐Ÿ‘‡๐Ÿ‘‡

1.Can you name the wildcards in Excel?

Ans: There are 3 wildcards in Excel that can ve used in formulas.

Asterisk (*) โ€“ 0 or more characters. For example, Ex* could mean Excel, Extra, Expertise, etc.

Question mark (?) โ€“ Represents any 1 character. For example, R?ain may mean Rain or Ruin.

Tilde (~) โ€“ Used to identify a wildcard character (~, *, ?). For example, If you need to find the exact phrase India* in a list. If you use India* as the search string, you may get any word with India at the beginning followed by different characters (such as Indian, Indiana). If you have to look for Indiaโ€ exclusively, use ~.

Hence, the search string will be india~*. ~ is used to ensure that the spreadsheet reads the following character as is, and not as a wildcard.


2.What is cascading filter in tableau?

Ans: Cascading filters can also be understood as giving preference to a particular filter and then applying other filters on previously filtered data source. Right-click on the filter you want to use as a main filter and make sure it is set as all values in dashboard then select the subsequent filter and select only relevant values to cascade the filters. This will improve the performance of the dashboard as you have decreased the time wasted in running all the filters over complete data source.


3.What is the difference between .twb and .twbx extension?

Ans:
A .twb file contains information on all the sheets, dashboards and stories, but it wonโ€™t contain any information regarding data source. Whereas .twbx file contains all the sheets, dashboards, stories and also compressed data sources. For saving a .twbx extract needs to be performed on the data source. If we forward .twb file to someone else than they will be able to see the worksheets and dashboards but wonโ€™t be able to look into the dataset.


4.What are the various Power BI versions?

Power BI Premium capacity-based license, for example, allows users with a free license to act on content in workspaces with Premium capacity. A user with a free license can only use the Power BI service to connect to data and produce reports and dashboards in My Workspace outside of Premium capacity. They are unable to exchange material or publish it in other workspaces. To process material, a Power BI license with a free or Pro per-user license only uses a shared and restricted capacity. Users with a Power BI Pro license can only work with other Power BI Pro users if the material is stored in that shared capacity. They may consume user-generated information, post material to app workspaces, share dashboards, and subscribe to dashboards and reports. Pro users can share material with users who donโ€™t have a Power BI Pro subscription while workspaces are at Premium capacity.

ENJOY LEARNING ๐Ÿ‘๐Ÿ‘
โค14
If youโ€™re a Data Analyst, chances are you use ๐’๐๐‹ every single day. And if youโ€™re preparing for interviews, youโ€™ve probably realized that it's not just about writing queries it's about writing smart, efficient, and scalable ones.

1. ๐๐ซ๐ž๐š๐ค ๐ˆ๐ญ ๐ƒ๐จ๐ฐ๐ง ๐ฐ๐ข๐ญ๐ก ๐‚๐“๐„๐ฌ (๐‚๐จ๐ฆ๐ฆ๐จ๐ง ๐“๐š๐›๐ฅ๐ž ๐„๐ฑ๐ฉ๐ซ๐ž๐ฌ๐ฌ๐ข๐จ๐ง๐ฌ)

Ever worked on a query that became an unreadable monster? CTEs let you break that down into logical steps. You can treat them like temporary views โ€” great for simplifying logic and improving collaboration across your team.

2. ๐”๐ฌ๐ž ๐–๐ข๐ง๐๐จ๐ฐ ๐…๐ฎ๐ง๐œ๐ญ๐ข๐จ๐ง๐ฌ

Forget the mess of subqueries. With functions like ROW_NUMBER(), RANK(), LEAD() and LAG(), you can compare rows, rank items, or calculate running totals โ€” all within the same query. Total

3. ๐’๐ฎ๐›๐ช๐ฎ๐ž๐ซ๐ข๐ž๐ฌ (๐๐ž๐ฌ๐ญ๐ž๐ ๐๐ฎ๐ž๐ซ๐ข๐ž๐ฌ)

Yes, they're old school, but nested subqueries are still powerful. Use them when you want to filter based on results of another query or isolate logic step-by-step before joining with the big picture.

4. ๐ˆ๐ง๐๐ž๐ฑ๐ž๐ฌ & ๐๐ฎ๐ž๐ซ๐ฒ ๐Ž๐ฉ๐ญ๐ข๐ฆ๐ข๐ณ๐š๐ญ๐ข๐จ๐ง

Query taking forever? Look at your indexes. Index the columns you use in JOINs, WHERE, and GROUP BY. Even basic knowledge of how the SQL engine reads data can take your skills up a notch.

5. ๐‰๐จ๐ข๐ง๐ฌ ๐ฏ๐ฌ. ๐’๐ฎ๐›๐ช๐ฎ๐ž๐ซ๐ข๐ž๐ฌ

Joins are usually faster and better for combining large datasets. Subqueries, on the other hand, are cleaner when doing one-off filters or smaller operations. Choose wisely based on the context.

6. ๐‚๐€๐’๐„ ๐’๐ญ๐š๐ญ๐ž๐ฆ๐ž๐ง๐ญ๐ฌ:

Want to categorize or bucket data without creating a separate table? Use CASE. Itโ€™s ideal for conditional logic, custom labels, and grouping in a single query.

7. ๐€๐ ๐ ๐ซ๐ž๐ ๐š๐ญ๐ข๐จ๐ง๐ฌ & ๐†๐‘๐Ž๐”๐ ๐๐˜

Most analytics questions start with "how many", "whatโ€™s the average", or "which is the highest?". SUM(), COUNT(), AVG(), etc., and pair them with GROUP BY to drive insights that matter.

8. ๐ƒ๐š๐ญ๐ž๐ฌ ๐€๐ซ๐ž ๐€๐ฅ๐ฐ๐š๐ฒ๐ฌ ๐“๐ซ๐ข๐œ๐ค๐ฒ

Time-based analysis is everywhere: trends, cohorts, seasonality, etc. Get familiar with functions like DATEADD, DATEDIFF, DATE_TRUNC, and DATEPART to work confidently with time series data.

9. ๐’๐ž๐ฅ๐Ÿ-๐‰๐จ๐ข๐ง๐ฌ & ๐‘๐ž๐œ๐ฎ๐ซ๐ฌ๐ข๐ฏ๐ž ๐๐ฎ๐ž๐ซ๐ข๐ž๐ฌ ๐Ÿ๐จ๐ซ ๐‡๐ข๐ž๐ซ๐š๐ซ๐œ๐ก๐ข๐ž๐ฌ

Whether it's org charts or product categories, not all data is flat. Learn how to join a table to itself or use recursive CTEs to navigate parent-child relationships effectively.


You donโ€™t need to memorize 100 functions. You need to understand 10 really well and apply them smartly. These are the concepts I keep going back to not just in interviews, but in the real world where clarity, performance, and logic matter most.
โค4
SAKU is hiring Data Analyst ๐Ÿš€

Experience : 0-2 Years
Location : Gurugram

Apply link : https://www.linkedin.com/jobs/view/4282451021

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
โค3
EXL is hiring Data Scientist ๐Ÿš€

Experience : 2 Years
Location : India ( Remote )

Apply link : https://www.linkedin.com/jobs/view/4266437972

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
โค1๐Ÿ‘1
Bain & Company is hiring Analyst ๐Ÿš€

Experience : 0-1 Years
Location : Gurugram

Apply link. : https://careers.bain.com/jobs/FolderDetail?folderId=97095&source=Linked-In

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
โค2
What seperates a good ๐——๐—ฎ๐˜๐—ฎ ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜€๐˜ from a great one?

The journey to becoming an exceptional data analyst requires mastering a blend of technical and soft skills.

โ˜‘ Technical skills:
- Querying Data with SQL
- Data Visualization (Tableau/PowerBI)
- Data Storytelling and Reporting
- Data Exploration and Analytics
- Data Modeling

โ˜‘ Soft Skills:
- Problem Solving
- Communication
- Business Acumen
- Curiosity
- Critical Thinking
- Learning Mindset

But how do you develop these soft skills?

โ—† Tackle real-world data projects or case studies. The more complex, the better.

โ—† Practice explaining your analysis to non-technical audiences. If they understand, youโ€™ve nailed it!

โ—† Learn how industries use data for decision-making. Align your analysis with business outcomes.

โ—† Stay curious, ask 'why,' and dig deeper into your data. Donโ€™t settle for surface-level insights.

โ—† Keep evolving. Attend webinars, read books, or engage with industry experts regularly.
โค5
Data Visualization & Analytics Specialist who brings both technical depth and business alignment.

Hereโ€™s what weโ€™re looking for:
Strong experience (5-6 yrs) in designing dashboards and visualizations using tools like Power BI, Qlik, or Tableau, with the ability to turn raw data into clear, impactful stories.
Solid hands-on skills in Python (5+ yrs) with a strong grasp of Pandas/Polars and experience building/managing data pipelines (Python/SQL).
Good understanding of data management and transformation using multi-source datasets, with advanced skills in Excel and PowerPoint for quick-turnaround reporting.
Comfortable working in Agile delivery models, including backlog management, user story writing, and tracking through Jira/Rally.
Strong communicator with the ability to collaborate across teams and geographies, manage stakeholders, and align on shared outcomes.
Exposure to GenAI use cases, SharePoint/Nintex workflows would be  an added advantage.

Location: Bangalore/Pune
Immediate Joiners only!
Send your resume to sakshi.agrawal3@in.ey.com
American Express is hiring!
Position: Analyst - Data Analytics
Qualifications: Bachelorโ€™s/ Masterโ€™s Degree
Salary: 6.5 - 13 LPA (Expected)
Experience: Freshers/ Experienced
Location: Work From Home/ Office

๐Ÿ“ŒApply Now: https://aexp.eightfold.ai/careers/job/30549859?hl=en

https://aexp.eightfold.ai/careers/job/30449111?hl=en

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
โค2
Zelis is hiring Business Analyst

For 2022, 2023, 2024 grads
Location: Hyderabad

https://zelis.wd1.myworkdayjobs.com/ZelisCareers/job/India-Hyderabad/Business-Analyst_JR108647?source=LinkedIn
โค1๐Ÿ‘1
OLX India is hiring Business Analyst ๐Ÿš€

Experience : 1-2 Year
Location : Gurugram

Apply link : https://www.linkedin.com/jobs/view/4281228951

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
โค1
๐——๐—ฎ๐˜๐—ฎ ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜๐—ถ๐—ฐ๐˜€ ๐—ฅ๐—ผ๐—ฎ๐—ฑ๐—บ๐—ฎ๐—ฝ

๐Ÿญ. ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ด ๐—Ÿ๐—ฎ๐—ป๐—ด๐˜‚๐—ฎ๐—ด๐—ฒ๐˜€: Master Python, SQL, and R for data manipulation and analysis.

๐Ÿฎ. ๐——๐—ฎ๐˜๐—ฎ ๐— ๐—ฎ๐—ป๐—ถ๐—ฝ๐˜‚๐—น๐—ฎ๐˜๐—ถ๐—ผ๐—ป ๐—ฎ๐—ป๐—ฑ ๐—ฃ๐—ฟ๐—ผ๐—ฐ๐—ฒ๐˜€๐˜€๐—ถ๐—ป๐—ด: Use Excel, Pandas, and ETL tools like Alteryx and Talend for data processing.

๐Ÿฏ. ๐——๐—ฎ๐˜๐—ฎ ๐—ฉ๐—ถ๐˜€๐˜‚๐—ฎ๐—น๐—ถ๐˜‡๐—ฎ๐˜๐—ถ๐—ผ๐—ป: Learn Tableau, Power BI, and Matplotlib/Seaborn for creating insightful visualizations.

๐Ÿฐ. ๐—ฆ๐˜๐—ฎ๐˜๐—ถ๐˜€๐˜๐—ถ๐—ฐ๐˜€ ๐—ฎ๐—ป๐—ฑ ๐— ๐—ฎ๐˜๐—ต๐—ฒ๐—บ๐—ฎ๐˜๐—ถ๐—ฐ๐˜€: Understand Descriptive and Inferential Statistics, Probability, Regression, and Time Series Analysis.

๐Ÿฑ. ๐— ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด: Get proficient in Supervised and Unsupervised Learning, along with Time Series Forecasting.

๐Ÿฒ. ๐—•๐—ถ๐—ด ๐——๐—ฎ๐˜๐—ฎ ๐—ง๐—ผ๐—ผ๐—น๐˜€: Utilize Google BigQuery, AWS Redshift, and NoSQL databases like MongoDB for large-scale data management.

๐Ÿณ. ๐— ๐—ผ๐—ป๐—ถ๐˜๐—ผ๐—ฟ๐—ถ๐—ป๐—ด ๐—ฎ๐—ป๐—ฑ ๐—ฅ๐—ฒ๐—ฝ๐—ผ๐—ฟ๐˜๐—ถ๐—ป๐—ด: Implement Data Quality Monitoring (Great Expectations) and Performance Tracking (Prometheus, Grafana).

๐Ÿด. ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜๐—ถ๐—ฐ๐˜€ ๐—ง๐—ผ๐—ผ๐—น๐˜€: Work with Data Orchestration tools (Airflow, Prefect) and visualization tools like D3.js and Plotly.

๐Ÿต. ๐—ฅ๐—ฒ๐˜€๐—ผ๐˜‚๐—ฟ๐—ฐ๐—ฒ ๐— ๐—ฎ๐—ป๐—ฎ๐—ด๐—ฒ๐—ฟ: Manage resources using Jupyter Notebooks and Power BI.

๐Ÿญ๐Ÿฌ. ๐——๐—ฎ๐˜๐—ฎ ๐—š๐—ผ๐˜ƒ๐—ฒ๐—ฟ๐—ป๐—ฎ๐—ป๐—ฐ๐—ฒ ๐—ฎ๐—ป๐—ฑ ๐—˜๐˜๐—ต๐—ถ๐—ฐ๐˜€: Ensure compliance with GDPR, Data Privacy, and Data Quality standards.

๐Ÿญ๐Ÿญ. ๐—–๐—น๐—ผ๐˜‚๐—ฑ ๐—–๐—ผ๐—บ๐—ฝ๐˜‚๐˜๐—ถ๐—ป๐—ด: Leverage AWS, Google Cloud, and Azure for scalable data solutions.

๐Ÿญ๐Ÿฎ. ๐——๐—ฎ๐˜๐—ฎ ๐—ช๐—ฟ๐—ฎ๐—ป๐—ด๐—น๐—ถ๐—ป๐—ด ๐—ฎ๐—ป๐—ฑ ๐—–๐—น๐—ฒ๐—ฎ๐—ป๐—ถ๐—ป๐—ด: Master data cleaning (OpenRefine, Trifacta) and transformation techniques.

Data Analytics Resources
๐Ÿ‘‡๐Ÿ‘‡
https://t.me/sqlspecialist

Hope this helps you ๐Ÿ˜Š
โค6
SQL isn't easy!

Itโ€™s the powerful language that helps you manage and manipulate data in databases.

To truly master SQL, focus on these key areas:

0. Understanding the Basics: Get comfortable with SQL syntax, data types, and basic queries like SELECT, INSERT, UPDATE, and DELETE.


1. Mastering Data Retrieval: Learn advanced SELECT statements, including JOINs, GROUP BY, HAVING, and subqueries to retrieve complex datasets.


2. Working with Aggregation Functions: Use functions like COUNT(), SUM(), AVG(), MIN(), and MAX() to summarize and analyze data efficiently.


3. Optimizing Queries: Understand how to write efficient queries and use techniques like indexing and query execution plans for performance optimization.


4. Creating and Managing Databases: Master CREATE, ALTER, and DROP commands for building and maintaining database structures.


5. Understanding Constraints and Keys: Learn the importance of primary keys, foreign keys, unique constraints, and indexes for data integrity.


6. Advanced SQL Techniques: Dive into CASE statements, CTEs (Common Table Expressions), window functions, and stored procedures for more powerful querying.


7. Normalizing Data: Understand database normalization principles and how to design databases to avoid redundancy and ensure consistency.


8. Handling Transactions: Learn how to use BEGIN, COMMIT, and ROLLBACK to manage transactions and ensure data integrity.


9. Staying Updated with SQL Trends: The world of databases evolvesโ€”stay informed about new SQL functions, database management systems (DBMS), and best practices.

โณ With practice, hands-on experience, and a thirst for learning, SQL will empower you to unlock the full potential of data!

You can read detailed article here

I've curated essential SQL Interview Resources๐Ÿ‘‡
https://t.me/DataSimplifier

Share with credits: https://t.me/sqlspecialist

Hope it helps :)
โค4
Meesho is hiring!
Position: Business Analyst, Analysts
Qualification: Bachelorโ€™s/ Masterโ€™s/ MBA
Salary: 6.6 - 12 LPA (Expected)
Location: Bangalore, India

๐Ÿ“ŒApply Now: https://www.meesho.io/jobs/lead-business-analyst?id=c5c9c405-9daa-45cb-b990-7b608f5d695a

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
๐Ÿ‘2
How you can learn Data Analytics in 28 days:

Week 1: Excel
โ€ข Learn functions (VLOOKUP, Pivot Tables)
โ€ข Clean and format data
โ€ข Analyze trends

Week 2: SQL
โ€ข Learn SELECT, WHERE, JOIN
โ€ข Query real datasets
โ€ข Aggregate and filter data

Week 3: Power BI/Tableau
โ€ข Build dashboards
โ€ข Create data visualizations
โ€ข Tell stories with data

Week 4: Real-World Project
โ€ข Analyze a data
โ€ข Share insights
โ€ข Build a portfolio
One skill at a time โ†’ Real progress in a month! Start today
Essential Skills Excel for Data Analysts ๐Ÿš€

1๏ธโƒฃ Data Cleaning & Transformation

Remove Duplicates โ€“ Ensure unique records.
Find & Replace โ€“ Quick data modifications.
Text Functions โ€“ TRIM, LEN, LEFT, RIGHT, MID, PROPER.
Data Validation โ€“ Restrict input values.

2๏ธโƒฃ Data Analysis & Manipulation

Sorting & Filtering โ€“ Organize and extract key insights.
Conditional Formatting โ€“ Highlight trends, outliers.
Pivot Tables โ€“ Summarize large datasets efficiently.
Power Query โ€“ Automate data transformation.

3๏ธโƒฃ Essential Formulas & Functions

Lookup Functions โ€“ VLOOKUP, HLOOKUP, XLOOKUP, INDEX-MATCH.
Logical Functions โ€“ IF, AND, OR, IFERROR, IFS.
Aggregation Functions โ€“ SUM, AVERAGE, MIN, MAX, COUNT, COUNTA.
Text Functions โ€“ CONCATENATE, TEXTJOIN, SUBSTITUTE.

4๏ธโƒฃ Data Visualization
Charts & Graphs โ€“ Bar, Line, Pie, Scatter, Histogram.

Sparklines โ€“ Miniature charts inside cells.
Conditional Formatting โ€“ Color scales, data bars.
Dashboard Creation โ€“ Interactive and dynamic reports.

5๏ธโƒฃ Advanced Excel Techniques
Array Formulas โ€“ Dynamic calculations with multiple values.
Power Pivot & DAX โ€“ Advanced data modeling.
What-If Analysis โ€“ Goal Seek, Scenario Manager.
Macros & VBA โ€“ Automate repetitive tasks.

6๏ธโƒฃ Data Import & Export
CSV & TXT Files โ€“ Import and clean raw data.
Power Query โ€“ Connect to databases, web sources.
Exporting Reports โ€“ PDF, CSV, Excel formats.

Here you can find some free Excel books & useful resources: https://t.me/excel_data

Hope it helps :)

#dataanalyst
โค10
S&P Global is hiring!
Position: Data Analyst
Qualification: Bachelorโ€™s/ Masterโ€™s Degree
Salary: 5 - 9 LPA (Expected)
Experienc๏ปฟe: Freshers/ Experienced
Location: Bangalore; Gurgaon; Hyderabad; Mumbai, India

๐Ÿ“ŒApply Now: https://careers.spglobal.com/jobs/317870

๐Ÿ‘‰ WhatsApp Channel: https://whatsapp.com/channel/0029VaI5CV93AzNUiZ5Tt226

๐Ÿ‘‰ Telegram Channel: https://t.me/addlist/4q2PYC0pH_VjZDk5

Like for more such opportunities โค๏ธ

All the best! ๐Ÿ‘๐Ÿ‘
๐Ÿ‘2๐Ÿ˜1
๐†๐„ ๐€๐ž๐ซ๐จ๐ฌ๐ฉ๐š๐œ๐ž ๐ˆ๐ง๐ญ๐ž๐ซ๐ง๐ฌ๐ก๐ข๐ฉ, ๐Ÿ๐ŸŽ๐Ÿ๐Ÿ“!
Positio: Data Science Intern
Qualification: Bachelorโ€™s/ Masterโ€™s Degree
Salary: โ‚น 30,000 - โ‚น 50,000 Per Month (Expected)
Batch: 2024/ 2025/ 2026/ 2027
Experienc: Freshers
Locatio: Bengaluru, India

๐Ÿ“ŒApply Now: https://careers.geaerospace.com/global/en/job/R5016107/DT-Data-Science-Intern

๐Ÿ‘‰WhatsApp Channel: https://whatsapp.com/channel/0029Vaxjq5a4dTnKNrdeiZ0J

๐Ÿ‘‰Telegram Link: https://t.me/addlist/ID95piZJZa0wYzk5

All the best ๐Ÿ‘๐Ÿ‘
โค1๐Ÿ‘1
Collegedunia is hiring Data Analyst ๐Ÿš€

Freshers are eligible โœ…
Location : Gurugram
CTC : 4.5 LPA

Apply link : https://www.linkedin.com/jobs/view/4281798892

๐Ÿ‘‰WhatsApp Channel: https://whatsapp.com/channel/0029Vaxjq5a4dTnKNrdeiZ0J

๐Ÿ‘‰Telegram Link: https://t.me/addlist/ID95piZJZa0wYzk5

All the best ๐Ÿ‘๐Ÿ‘
McKinsey & Company is hiring Data Scientist ๐Ÿš€

Experience : 2+ Years
Location : Bangalore

Apply link : http://www.mckinsey.com/careers/search-jobs/jobs/datascientist-95589?appsource=LinkedIn

๐Ÿ‘‰WhatsApp Channel: https://whatsapp.com/channel/0029Vaxjq5a4dTnKNrdeiZ0J

๐Ÿ‘‰Telegram Link: https://t.me/addlist/ID95piZJZa0wYzk5

All the best ๐Ÿ‘๐Ÿ‘
โค4๐Ÿ‘1
Capegemini is hiring Data Analyst

For 2023, 2024, 2025 grads
Location: Pune

https://careers.capgemini.com/job/Pune-Data-Analyst-B/1229271701/?feedId=388933

๐Ÿ‘‰WhatsApp Channel: https://whatsapp.com/channel/0029Vaxjq5a4dTnKNrdeiZ0J

๐Ÿ‘‰Telegram Link: https://t.me/addlist/ID95piZJZa0wYzk5

All the best ๐Ÿ‘๐Ÿ‘
If you are targeting your first Data Analyst job then this is why you should avoid guided projects

The common thing nowadays is "Coffee Sales Analysis" and "Pizza Sales Analysis"

I don't see these projects as PROJECTS

But as big RED flags

We are showing our SKILLS through projects, RIGHT?

Then what's WRONG with these projects?

Don't think from YOUR side

Think from the HIRING team's side

These projects have more than a MILLION views on YouTube

Even if you consider 50% of this NUMBER

Then just IMAGINE how many aspiring Data Analysts would have created this same project

Hiring teams see hundreds of resumes and portfolios on a DAILY basis

Just imagine how many times they would have seen the SAME titles of projects again and again

They would know that these projects are PUBLICLY available for EVERYONE

You have simply copied pasted the ENTIRE project from YouTube

So now if I want to hire a Data Analyst then how would I JUDGE you or your technical skills?

What is the USE of Pizza or Coffee sales analysis projects for MY company?

By doing such guided projects, you are involving yourself in a big circle of COMPETITION

I repeat, there were more than a MILLION views

So please AVOID guided projects at all costs

Guided projects are good for your personal PRACTICE and LinkedIn CONTENT

But try not to involve them in your PORTFOLIO or RESUME
โค12