walmart interview questions and answers | Data Engineering

Поділитися
Вставка
  • Опубліковано 20 сер 2024
  • In this video I have talked about questions and answer which was asked in walmart for data engineering role.
    Directly connect with me on:- topmate.io/man...
    My Gear:-
    Rode Mic:-- amzn.to/3RekC7a
    Boya M1 Mic-- amzn.to/3uW0nnn
    Wireless Mic:-- amzn.to/3TqLRhE
    Tripod1 -- amzn.to/4avjyF4
    Tripod2:-- amzn.to/46Y3QPu
    camera1:-- amzn.to/3GIQlsE
    camera2:-- amzn.to/46X190P
    Pentab (Medium size):-- amzn.to/3RgMszQ (Recommended)
    Pentab (Small size):-- amzn.to/3RpmIS0
    Mobile:-- amzn.to/47Y8oa4 ( Aapko ye bilkul nahi lena hai)
    Laptop -- amzn.to/3Ns5Okj
    Mouse+keyboard combo -- amzn.to/3Ro6GYl
    21 inch Monitor-- amzn.to/3TvCE7E
    27 inch Monitor-- amzn.to/47QzXlA
    iPad Pencil:-- amzn.to/4aiJxiG
    iPad 9th Generation:-- amzn.to/470I11X
    Boom Arm/Swing Arm:-- amzn.to/48eH2we
    My PC Components:-
    intel i7 Processor:-- amzn.to/47Svdfe
    G.Skill RAM:-- amzn.to/47VFffI
    Samsung SSD:-- amzn.to/3uVSE8W
    WD blue HDD:-- amzn.to/47Y91QY
    RTX 3060Ti Graphic card:- amzn.to/3tdLDjn
    Gigabyte Motherboard:-- amzn.to/3RFUTGl
    O11 Dynamic Cabinet:-- amzn.to/4avkgSK
    Liquid cooler:-- amzn.to/472S8mS
    Antec Prizm FAN:-- amzn.to/48ey4Pj

КОМЕНТАРІ • 71

  • @manish_kumar_1
    @manish_kumar_1  Рік тому

    Directly connect with me on:- topmate.io/manish_kumar25

  • @satyammeena-bu7kp
    @satyammeena-bu7kp 2 місяці тому +1

    Really helpful ! I faced same questions in Walmart Interview

  • @jjayeshpawar
    @jjayeshpawar 5 місяців тому

    Q.10
    for ind in range(1,len(l)):
    if l[ind-1] < a and l[ind] > 7:
    l.insert(ind,a)
    break
    print(l)

  • @insane_billa
    @insane_billa 11 місяців тому

    Wo sab to badhiya tha Bhai stack sunke bukhar choot gya mera , bro dhire thoda mujhe thoda time lag gya par samjh gya

  • @RahulP572
    @RahulP572 24 дні тому

    Solution for Q10 seems to be not working, here is the working solution:
    A = [2,3,7,9]
    B = 1
    index =len(A)
    for x in range(len(A)):
    if A[x] > B:
    index = x
    A = A[:index] + [B] + A[index:]
    break
    if index == len(A):
    A = A + [B]
    print(A)

  • @SumitKumar-hz5wj
    @SumitKumar-hz5wj Рік тому +1

    Much helpful for folks preparing for data engineering role. Thanks Manish Bhaiya

  • @bangalibangalore2404
    @bangalibangalore2404 Рік тому

    Thank you, Bina paise liye aise content daalne ke liye bohot bohot shukriya

  • @harshadborkar2550
    @harshadborkar2550 Рік тому

    @manishkumar we are loving your work , it's very helpful ❤

  • @HarshRajput-ve5td
    @HarshRajput-ve5td Рік тому +1

    Sir pls make separate video on movie theatre booking system, explain broadly if possible then make on MySQL server pls...

  • @RaviYadav-cx2pb
    @RaviYadav-cx2pb Рік тому

    Really gud information.. please kindly make a mini project for making data pipeline with Apache Kafka confluent

  • @vanib6123
    @vanib6123 8 місяців тому

    Great info ! Thank you for shairng.

  • @saikrishna8338
    @saikrishna8338 2 місяці тому

    I tried that 10th Q like below
    #################
    a = [2,3,4,7,9,10]
    n = 1
    pos = ""
    for i in range(len(a)):
    if a[i]>n:
    pos = i
    break
    if(pos!=""):
    a.insert(pos,n)
    else:
    a.append(n)
    print(a)

  • @anilchenchu1017
    @anilchenchu1017 Рік тому +1

    Sir nice video
    Can u make a video
    Ex: for one GB csv file how to decide number of worker nodes executors cores memory allocation for each executor etc etc

  • @soumyakantarath4551
    @soumyakantarath4551 8 місяців тому

    Thanks man , really helpful 👍

  • @bilal.rk09
    @bilal.rk09 Рік тому

    Interesting and very helpful!!

  • @BhakthiYoutube
    @BhakthiYoutube Рік тому +8

    Bro if possible do these videos more and that too in english

    • @gauravmathur56
      @gauravmathur56 Рік тому

      If he makes in English I can’t understand

    • @insane_billa
      @insane_billa 11 місяців тому

      Can I make it curated for you, I want to improve my leading skills

  • @gameply347
    @gameply347 10 місяців тому +1

    import math as m
    a=['[','{','(',')']
    count=0
    print(len(a))
    l_n1=reversed(range(m.ceil(len(a)/2))) #to iter from the middle to start
    l_n2=range(m.floor(len(a)/2),len(a)) #to iter from middle to end
    print(l_n1,l_n2)
    for i,j in zip(l_n1,l_n2):
    print(a[i],a[j])
    if a[i]=='(':
    if a[i]==chr(ord(a[j])-1):
    count+=1
    if a[i]=='{':
    if a[i]==chr(ord(a[j])-2):
    count+=1
    if a[i]=='[':
    if a[i]==chr(ord(a[j])-2):
    count+=1

    if count==(len(a)/2):
    print(True)
    else:
    print(False)
    this my code for parenthesis checking !!!

  • @adib4361
    @adib4361 Рік тому

    Bhai vo jo insert 7 at correct location vala question hai, jo aapne solution btaya usme how were they satisfied. O(N) solution diya aapne. We can do it using binary search in O(log N) because array is sorted. Ye poocha nhi unhone ki koi better approach hai ki nhi ?

    • @manish_kumar_1
      @manish_kumar_1  Рік тому

      They did not. But yes we can do it using binary search

  • @manjari_98
    @manjari_98 8 місяців тому

    Hi Manish, I have one question. I am technically sound in Java programming language but not having enough knowledge in python. Is it okay if we write the coding questions for Data Engineering interviews in our preferred language or do we need to write exclusively in Python?

  • @insane_billa
    @insane_billa 11 місяців тому

    Connect with me i can also provide you questions

  • @subiyasiddiqui2841
    @subiyasiddiqui2841 2 місяці тому

    Hey Manish
    Were there any screening round for you before the technical round

  • @ajourney179
    @ajourney179 10 місяців тому

    Hi Manish, what other questions were asked to you in HM last round ? anything related to tech or only behavioral ?

  • @prabalghosh2954
    @prabalghosh2954 Рік тому +1

    bhai i have 6 months exp in djnago and ruby on rails development domain. I want to work as a data engineer. I know ruby, java, python,numpy,pandas and POSTGRESQL. Now what should I do so that I can apply for jobs ? I never worked as a data engineer.How much time it will take and what more I have to learn to get data engineering job ?

    • @manish_kumar_1
      @manish_kumar_1  Рік тому +1

      What my video titled "how I bagged 12 offers" you will get to know what you are looking for

    • @prabalghosh2954
      @prabalghosh2954 Рік тому

      @@manish_kumar_1 But you have work experience in data engineering

  • @AnkitChoudhary-ri9jp
    @AnkitChoudhary-ri9jp 4 місяці тому

    Bhai aap sql padhao na, acha se alag aproach se jese python padaba rahaho

  • @gamex-animex6289
    @gamex-animex6289 10 місяців тому +1

    Is it possible to switch from business analyst to data engineer while having skill in SQL and python

  • @sandipansarkar9211
    @sandipansarkar9211 Рік тому

    finished watching

  • @raviyadav-dt1tb
    @raviyadav-dt1tb 8 місяців тому

    Hello can please share SQL question as we’ll

  • @erukullasrikanth15
    @erukullasrikanth15 Рік тому

    how to decide shuffle partition, could you please explain how do you ans this question in interview

    • @manish_kumar_1
      @manish_kumar_1  Рік тому

      It depends on data. So please ask the interviewer how you data looks like. There can be a case that he is partitioning the data based on Id column and one Id has way to much data than the other id's. So in that case salting will help.
      General thumb of rule for number of shuffle partition is to keep upto 4x time number of cores you have.

  • @user-oy9cc8dv8i
    @user-oy9cc8dv8i 2 місяці тому

    this was for fresher or for experienced person? Of how many year of experience was this for?

  • @insane_billa
    @insane_billa 11 місяців тому

    I believe he is a perfect developer. Hope he pings me 😊

  • @dkr1998
    @dkr1998 11 місяців тому

    Hi Manish, did HR give feedback regarding final result ? what improvement areas they told to focus on ?

    • @manish_kumar_1
      @manish_kumar_1  10 місяців тому +1

      Need to improve on coding skill. That was the feedback

  • @insane_billa
    @insane_billa 11 місяців тому

    Bhai slow course karo mere jaisa logo ke lie batao na

  • @sambitpati6129
    @sambitpati6129 Рік тому

    Hello manish, wanted to know where to practice and learn these python related program question like stack pop

  • @amareshvpatil6504
    @amareshvpatil6504 9 місяців тому

    Hi Manish
    Is it possible to switch from manual product QA to data engineer, after 5 years experience in QA

    • @manish_kumar_1
      @manish_kumar_1  8 місяців тому

      Yes you can do that. You will need to do a lot of practice on DE related tech stack

  • @Sharath_NK98
    @Sharath_NK98 7 місяців тому

    15:08 instead of complicating code can we do this ??
    a=[3,6,8,12,15]
    b=7
    a.append(b)
    print(a)
    a.sort()
    print(a)

    • @manish_kumar_1
      @manish_kumar_1  7 місяців тому +1

      Interview me aisa nhi Hota hai. You can't use any inbuilt function or library. They are testing you logical skill not just programming knowledge

  • @syedahmad4466
    @syedahmad4466 Рік тому

    Bhai data analyst k baare m padna kaha s atart s kre aur 0 hai sbme aur 7 month exp h signalling domain m

  • @bhaskarsinha9261
    @bhaskarsinha9261 Рік тому

    Sir, in data modeling question which one is the fact table

    • @manish_kumar_1
      @manish_kumar_1  Рік тому

      I will suggest you to search this on Google. You will get indepth answer there.

    • @kalaheera2869
      @kalaheera2869 11 місяців тому

      there is no fact table mentioned in this video .. generally in sql we follow normalisation ...fact table concept is more applicable in snowflake schema which is dw concept .

  • @vanmathiraj2617
    @vanmathiraj2617 Рік тому +1

    why not u posting videos in English

    • @manish_kumar_1
      @manish_kumar_1  Рік тому +1

      Sorry bro. This series will be in hindi only. May be in future I will upload in English too

  • @satyajeetmishra3156
    @satyajeetmishra3156 Рік тому

    Hi
    Is Hadoop really needed for data engineering?

  • @amantiwari998
    @amantiwari998 Рік тому

    Hello sir, I am a 3rd student and want to get into data engineering what to do ?

    • @manish_kumar_1
      @manish_kumar_1  Рік тому

      1 programming language- python (preferred one)
      2 Sql
      3 Spark and Hadoop basics ( The definitive guide spark)

    • @herman4975
      @herman4975 Рік тому

      Q10, wont it be easier just append and then sort?

    • @manish_kumar_1
      @manish_kumar_1  Рік тому +2

      @@herman4975 sorting will take minimum o(n logn) time complexity. And in interview I had to do with o(n) time complexity. What you said is correct but not an optimal solution. Hope I have answered your query

  • @user-sd4df3db3c
    @user-sd4df3db3c Рік тому

    What do they ask for 1 year experienced data engineer roles? Does data structure come into picture?

    • @manish_kumar_1
      @manish_kumar_1  Рік тому +1

      Easy questions aayenge coding ke. Baaki aapse expectation Kam hoga. May be easy to medium sql and easy coding

    • @user-sd4df3db3c
      @user-sd4df3db3c Рік тому

      @@manish_kumar_1 thank you.

  • @vaibhavverma1340
    @vaibhavverma1340 Рік тому +1

    Hello Manish Bhai , Could you please check my solution for Question-10 (Solved using pointer) ??
    arr = [3,6,8,12,15]
    #insert 7 at its correct location
    i = 7
    l = 0
    r= len(arr)-1
    while l

    • @saswataghosh6693
      @saswataghosh6693 10 місяців тому

      bro can you please explain the solution

  • @manjarimistry5941
    @manjarimistry5941 10 місяців тому

    Can we write same code in java?

  • @insane_billa
    @insane_billa 11 місяців тому

    Slow neta ji