Walmart Data Engineer Interview Experience | Interview Questions | How to prepare | 30+ LPA

แชร์
ฝัง
  • เผยแพร่เมื่อ 5 ก.ย. 2024

ความคิดเห็น • 49

  • @SarthakDasgupta-bp8xi
    @SarthakDasgupta-bp8xi  2 หลายเดือนก่อน +1

    Hi everyone, if you are preparing for Data Engineer Interviews then do checkout the below playlist. In that I have covered important PySpark concepts and their coding questions
    th-cam.com/video/YUnZKKao3Sg/w-d-xo.html

  • @user-cv6gx6dq2l
    @user-cv6gx6dq2l 4 หลายเดือนก่อน +5

    def flat(l):
    for i in l:
    if type(i)==list:
    flat(i)
    else:
    re.append(i)

  • @fashionate6527
    @fashionate6527 3 หลายเดือนก่อน +4

    You explain well but please don't put music in background its distributing if possible please make video without background music

  • @ShivamSrivastava-e5n
    @ShivamSrivastava-e5n 5 วันที่ผ่านมา +1

    Coding Ques 2 will fail in one case where target value is 10 and in the list two times 5 are there. Remain in X and remain not is used will fail.

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  5 วันที่ผ่านมา

      @@ShivamSrivastava-e5n can you please post the ans that passes all the test cases. thanks in advance

  • @jjayeshpawar
    @jjayeshpawar 6 หลายเดือนก่อน

    Thanks for sharing and please continue making such videos along with complete roadmap and resources you followed.
    Just one correction in decorators : first add will get executed ==> value will become 7 and then main will be executed value will become 7-2=5.
    You can validate this by this code ;
    def fun1(fu):
    def inner(n):
    print("inner")
    return fu(n+2)
    return inner
    @fun1
    def fun(n):
    print("main")
    return n-2
    print(fun(5))

  • @GAURAVSHEKHAWAT
    @GAURAVSHEKHAWAT 27 วันที่ผ่านมา

    Reminder for myself to look at this video

  • @jawakar8266
    @jawakar8266 2 หลายเดือนก่อน

    Thanks for this content Sarthak!

  • @shubhambhandari431
    @shubhambhandari431 หลายเดือนก่อน

    7:42 bro output will be - b Danny
    9:32 it dense rank should be used, not row number

  • @neeleshchoudhary2038
    @neeleshchoudhary2038 7 หลายเดือนก่อน

    Thanks for sharing such a detailed video. Very useful for formualting a study plan.

  • @roshniagrawal4777
    @roshniagrawal4777 16 วันที่ผ่านมา

    def flatten_list(nested_list):
    flattened = []
    for item in nested_list:
    if isinstance(item, list):
    flattened.extend(flatten_list(item))
    else:
    flattened.append(item)
    return flattened
    # Example nested list
    lt = [1, [2, 3, [4, 5, 6, [7, 8, 9]]]]
    # Flatten the list
    flattened_list = flatten_list(lt)
    print(flattened_list)

  • @Aman-lv2ee
    @Aman-lv2ee 7 หลายเดือนก่อน

    Thank you bhai more making this video

  • @manasgupta5200
    @manasgupta5200 3 หลายเดือนก่อน

    Convert the list into a string and just replace every [, ] with empty string("") and than convert the string to list

  • @DeepakKumar-cx5tr
    @DeepakKumar-cx5tr หลายเดือนก่อน

    Thanks for sharing!

  • @DEwithDhairy
    @DEwithDhairy 2 หลายเดือนก่อน +2

    Follow my TH-cam channel for the SQL Pyspark DSA in python Oops in python Pandas scenarios based interview questions and answers preparation:
    youtube.com/@dewithdhairy

  • @chiluxr250
    @chiluxr250 หลายเดือนก่อน

    YOu have a list of list to depth n. write a program to normalise it:
    list(eval(str(b).replace(']','').replace('[','')))

  • @neeleshchoudhary2038
    @neeleshchoudhary2038 7 หลายเดือนก่อน +2

    def normalize(input):
    result = []
    for item in input:
    if isinstance(item,list):
    result.extend(normalize(item))
    else:
    result.append(item)
    return result
    input = [1,[2,[3,4],5,[6,7,8]]]
    print(normalize(input))

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  7 หลายเดือนก่อน

      Thanks for adding the solution 🙂....really helpful 😃

    • @GoodProgrammer92
      @GoodProgrammer92 4 หลายเดือนก่อน

      Same but a bit easier to understand solution if you are vary of recursion concept
      def helper(result, arr):
      res = []
      for item in arr:
      if isinstance(item, list):
      helper(res, item)
      else:
      res.append(item)
      result += res
      return result
      def normalize_depth(x):
      return helper([], x)
      input_arr = [1, 2, [3, 4, [5, 6, [7, 8, [10, 11], [13, 17]], [14, 18]], 15], 16]
      print(normalize_depth(input_arr))

  • @bhushankorg5606
    @bhushankorg5606 7 หลายเดือนก่อน +1

    Thanks for detailed explaination!
    Refferel 😂???

  • @artandcraftvalley19
    @artandcraftvalley19 24 วันที่ผ่านมา

    Nested loops is important in data engineering?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  13 วันที่ผ่านมา

      Yes absolutely. For DSA go with medium level questions in string and list

  • @suvrajitdeb3839
    @suvrajitdeb3839 6 หลายเดือนก่อน

    I watched ur videos.its very helpful. Do they ask on any cloud like azure or aws or any other data structures like stack queues or trees

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  6 หลายเดือนก่อน

      Cloud tools : They ask only if u have mentioned in your resume.
      DSA: string, list, tuples, linkedlist, stack and queue u should prepare just in case although mostly string and list they ask

    • @suvrajitdeb3839
      @suvrajitdeb3839 6 หลายเดือนก่อน

      ​@@SarthakDasgupta-bp8xithanks.
      do they ask to write the code in some compiler or in notepad

  • @rishabhchoubey3569
    @rishabhchoubey3569 2 วันที่ผ่านมา

    what base pay we can expect for 3-3.5 yrs ?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  2 วันที่ผ่านมา

      @@rishabhchoubey3569 19-20 base pay. But if your interview went well and also you have counter offer then you can go upto 25 as well

    • @rishabhchoubey3569
      @rishabhchoubey3569 2 วันที่ผ่านมา

      @@SarthakDasgupta-bp8xi I m getting low balled base they offering is 13.5 as I'm moving from service base company, what u suggest?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  2 วันที่ผ่านมา

      @@rishabhchoubey3569 yeah this can happen, your current CTC might be less. Walmart offers quite less compared to other product base. Ask them for 20 LPA base and that you will not counter. Meanwhile keep looking for other companies that can offer you more.

  • @rox_official9407
    @rox_official9407 หลายเดือนก่อน

    I want one on one session with you

  • @kunalsingh-gv9rc
    @kunalsingh-gv9rc 6 หลายเดือนก่อน

    Does referral helps in getting shortlisted ?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  6 หลายเดือนก่อน

      Referrals are the best way of getting shortlisted in my experience. You get preference when you are referred

  • @rajnandinipadhy2533
    @rajnandinipadhy2533 5 หลายเดือนก่อน

    Can u share your sample resume

  • @minana5730
    @minana5730 19 วันที่ผ่านมา

    Don’t put an English title if you’re not gonna talk in English in the video

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  13 วันที่ผ่านมา

      Done 👍. Checkout my latest videos 😁. Hope you find what you expected.

  • @sabesanj5509
    @sabesanj5509 4 หลายเดือนก่อน

    Thanks for the video bro. what happens if a candidate doesn't know about the java??

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  4 หลายเดือนก่อน

      Nothing really although you should know atleast one language mentioned in the JD and you should be well versed with OOP

  • @gaonkar_paresh
    @gaonkar_paresh 6 หลายเดือนก่อน

    after watching your video here I am really interested in data science now. Can you accept my request in Linkedn