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

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 53

  • @SarthakDasgupta-bp8xi
    @SarthakDasgupta-bp8xi  4 месяца назад +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
    ruclips.net/video/YUnZKKao3Sg/видео.html

  • @fashionate6527
    @fashionate6527 5 месяцев назад +5

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

  • @saibaba-r9r
    @saibaba-r9r 6 месяцев назад +6

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

  • @GAURAVSHEKHAWAT
    @GAURAVSHEKHAWAT 2 месяца назад +1

    Reminder for myself to look at this video

  • @jjayeshpawar
    @jjayeshpawar 8 месяцев назад

    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))

  • @DEwithDhairy
    @DEwithDhairy 4 месяца назад +3

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

  • @neeleshchoudhary2038
    @neeleshchoudhary2038 9 месяцев назад

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

  • @jawakar8266
    @jawakar8266 3 месяца назад

    Thanks for this content Sarthak!

  • @Aman-lv2ee
    @Aman-lv2ee 9 месяцев назад

    Thank you bhai more making this video

  • @shubhambhandari431
    @shubhambhandari431 2 месяца назад

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

  • @ajaykumargaudo6685
    @ajaykumargaudo6685 День назад

    Hey, I think the answer for OOPS question 2 should be 'b Rahul'. Please correct me, If I am wrong 🙏🙏

  • @ShivamSrivastava-e5n
    @ShivamSrivastava-e5n Месяц назад +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  Месяц назад

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

  • @suvrajitdeb3839
    @suvrajitdeb3839 7 месяцев назад

    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  7 месяцев назад

      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 7 месяцев назад

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

  • @roshniagrawal4777
    @roshniagrawal4777 2 месяца назад

    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)

  • @bhushankorg5606
    @bhushankorg5606 8 месяцев назад +1

    Thanks for detailed explaination!
    Refferel 😂???

  • @DeepakKumar-cx5tr
    @DeepakKumar-cx5tr 3 месяца назад

    Thanks for sharing!

  • @manasgupta5200
    @manasgupta5200 4 месяца назад

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

  • @neeleshchoudhary2038
    @neeleshchoudhary2038 9 месяцев назад +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  9 месяцев назад

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

    • @GoodProgrammer92
      @GoodProgrammer92 6 месяцев назад

      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))

  • @artandcraftvalley19
    @artandcraftvalley19 2 месяца назад

    Nested loops is important in data engineering?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Месяц назад

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

  • @chiluxr250
    @chiluxr250 3 месяца назад

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

  • @kunalsingh-gv9rc
    @kunalsingh-gv9rc 7 месяцев назад

    Does referral helps in getting shortlisted ?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  7 месяцев назад

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

  • @rox_official9407
    @rox_official9407 3 месяца назад

    I want one on one session with you

  • @rishabhchoubey3569
    @rishabhchoubey3569 Месяц назад

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

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Месяц назад

      @@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

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Месяц назад

      @@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.

    • @tedduharish7474
      @tedduharish7474 25 дней назад

      what is base pay

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  25 дней назад

      @@tedduharish7474 mine was 19 approx minus pf

  • @rajnandinipadhy2533
    @rajnandinipadhy2533 7 месяцев назад

    Can u share your sample resume

  • @minana5730
    @minana5730 2 месяца назад

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

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Месяц назад

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

  • @AMARJEETKAUR-m4v
    @AMARJEETKAUR-m4v Месяц назад

    Ya toh maine boht zyada padh liya hey ya fir ye waala interview sach mey boht easy tha , but kya farak padta hey job toh fir bhi nahi hey 🥲🥲

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Месяц назад

      @@AMARJEETKAUR-m4v yes yeh easy thaa but paisa bhi kam dete hai compared to.other product based. Infact ab aur kam kardia hai.

  • @sabesanj5509
    @sabesanj5509 6 месяцев назад

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

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  6 месяцев назад

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