Live Big Data Mock Interview | WALMART | Technical Round | Spark, SQL, Python #interview

preview_player
ะŸะพะบะฐะทะฐั‚ัŒ ะพะฟะธัะฐะฝะธะต

I have trained over 20,000+ professionals in the field of Data Engineering in the last 5 years.

๐–๐š๐ง๐ญ ๐ญ๐จ ๐Œ๐š๐ฌ๐ญ๐ž๐ซ ๐’๐๐‹? ๐‹๐ž๐š๐ซ๐ง ๐’๐๐‹ ๐ญ๐ก๐ž ๐ซ๐ข๐ ๐ก๐ญ ๐ฐ๐š๐ฒ ๐ญ๐ก๐ซ๐จ๐ฎ๐ ๐ก ๐ญ๐ก๐ž ๐ฆ๐จ๐ฌ๐ญ ๐ฌ๐จ๐ฎ๐ ๐ก๐ญ ๐š๐Ÿ๐ญ๐ž๐ซ ๐œ๐จ๐ฎ๐ซ๐ฌ๐ž - ๐’๐๐‹ ๐‚๐ก๐š๐ฆ๐ฉ๐ข๐จ๐ง๐ฌ ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ!

"๐€ 8 ๐ฐ๐ž๐ž๐ค ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ ๐๐ž๐ฌ๐ข๐ ๐ง๐ž๐ ๐ญ๐จ ๐ก๐ž๐ฅ๐ฉ ๐ฒ๐จ๐ฎ ๐œ๐ซ๐š๐œ๐ค ๐ญ๐ก๐ž ๐ข๐ง๐ญ๐ž๐ซ๐ฏ๐ข๐ž๐ฐ๐ฌ ๐จ๐Ÿ ๐ญ๐จ๐ฉ ๐ฉ๐ซ๐จ๐๐ฎ๐œ๐ญ ๐›๐š๐ฌ๐ž๐ ๐œ๐จ๐ฆ๐ฉ๐š๐ง๐ข๐ž๐ฌ ๐›๐ฒ ๐๐ž๐ฏ๐ž๐ฅ๐จ๐ฉ๐ข๐ง๐  ๐š ๐ญ๐ก๐จ๐ฎ๐ ๐ก๐ญ ๐ฉ๐ซ๐จ๐œ๐ž๐ฌ๐ฌ ๐š๐ง๐ ๐š๐ง ๐š๐ฉ๐ฉ๐ซ๐จ๐š๐œ๐ก ๐ญ๐จ ๐ฌ๐จ๐ฅ๐ฏ๐ž ๐š๐ง ๐ฎ๐ง๐ฌ๐ž๐ž๐ง ๐๐ซ๐จ๐›๐ฅ๐ž๐ฆ."

๐‡๐ž๐ซ๐ž ๐ข๐ฌ ๐ก๐จ๐ฐ ๐ฒ๐จ๐ฎ ๐œ๐š๐ง ๐ซ๐ž๐ ๐ข๐ฌ๐ญ๐ž๐ซ ๐Ÿ๐จ๐ซ ๐ญ๐ก๐ž ๐๐ซ๐จ๐ ๐ซ๐š๐ฆ -

30 INTERVIEWS IN 30 DAYS- BIG DATA INTERVIEW SERIES

This mock interview series is launched as a community initiative under Data Engineers Club aimed at aiding the community's growth and development

Link of Free SQL & Python series developed by me are given below -

Don't miss out - Subscribe to the channel for more such informative interviews and unlock the secrets to success in this thriving field!

Social Media Links :

TIMESTAMPS : Questions Discussed
00:00 Introduction
02:05 Project Responsibilities
04:28 Incremental Methodology in CDC Mode
06:46 Scenario based question - SCD
11:23 Ranking Functions in SQL
12:33 Common Table Expressions
13:30 File Formats
15:52 Cache and Persist
17:05 Coding Questions

Music track: Retro by Chill Pulse
Background Music for Video (Free)

Tags
#mockinterview #bigdata #career #dataengineering #data #datascience #dataanalysis #productbasedcompanies #interviewquestions #apachespark #google #interview #faang #companies #amazon #walmart #flipkart #microsoft #azure #databricks #jobs
ะ ะตะบะพะผะตะฝะดะฐั†ะธะธ ะฟะพ ั‚ะตะผะต
ะšะพะผะผะตะฝั‚ะฐั€ะธะธ
ะะฒั‚ะพั€

For the SQL question, an easier approach would be like this:

with cte as(
select machine_id, process_id, max(timestamp)-min(timestamp) as time
from table
group by 1, 2
)

select machine id, average(time) avg_time
from cte
group by 1

gauravmaheshwari
ะะฒั‚ะพั€

sql question approach-
WITH a AS ( SELECT machine_id, process_id, activity_type, timestamp, ROW_NUMBER() OVER (partition by machine_id, process_id ORDER BY machine_id, process_id) AS rn FROM machine),

b as (select a1.machine_id, a1.process_id, a1.activity_type as activity_type1, a1.timestamp as timestamp1,
a2.activity_type as activity_type2, a2.timestamp as timestamp2, (a2.timestamp-a1.timestamp) as timestamp_diff
from a a1 inner join a a2 on a1.machine_id=a2.machine_id and a1.process_id=a2.process_id and a2.rn=a1.rn+1)

select round(avg(timestamp_diff), 3) as avf, machine_id from b group by machine_id order by machine_id;

souravdas-ktgg
ะะฒั‚ะพั€

Sumit sir please upload the python video itโ€™s been 10 days plz ๐Ÿ™

sandhyasandy
ะะฒั‚ะพั€

two approaches for the SQL question which came to my mind ..

SELF JOIN


SELECT
a1.machine_id as machine_id,
round(sum(a2.timestamp - a1.timestamp)/count(distinct(a1.process_id)), 3) as processing_time
FROM Activity a1 INNER JOIN Activity a2
ON a1.machine_id = a2.machine_id AND a1.process_id = a2.process_id
WHERE a1.activity_type = 'start' AND a2.activity_type = 'end'
GROUP BY a1.machine_id ;

CASE STATEMENT


SELECT
machine_id,
round(sum(case when activity_type = 'start' then -timestamp else timestamp end )/count(distinct(process_id)), 3)as processing_time
from Activity
group by machine_id ;

royalkumar
ะะฒั‚ะพั€

Reverse string on every occurrence of I letter
Avg of logged time

hdr-tech
ะะฒั‚ะพั€

Nice discussion, but we can't say it's data engineer mock interview.

shubhamyadav-vdgv
ะะฒั‚ะพั€

My Approach python Coding Question -

s = "stringity"

i = 0
res = ""
for str in range(len(s)):
if s[str] == 'i':
res += s[i:str][::-1]
i = str+1

print(res+s[i:])

vaibhavverma
ะะฒั‚ะพั€

First view, first like, first comment. ๐ŸŽ‰

SenthilKumarBDE
ะะฒั‚ะพั€

Yes sir please upload python videos we r waiting from long

laxmipoojamule
join shbcf.ru