Deloitte USI Senior Data Engineer Interview Questions | SDE Interview Experience | 25 LPA

Sdílet
Vložit
  • čas přidán 13. 09. 2024
  • Hi everyone, I am Sarthak and I am working as a Senior Data Engineer. In this video I have explained in detail about my interview experience in Deloitte for Senior Data Engineer role
    Walmart Data Engineer Interview Experience
    • Walmart Data Engineer ...
    EY Data Engineer Interview Experience
    • EY Data Engineer Inter...
    Spark tutorial websites
    SparkByExample: sparkbyexample...
    Dataflair: data-flair.tra...
    Practice SQL on Leetcode
    leetcode.com/s...
    Song: Sappheiros - Dawn
    License: Creative Commons (CC BY 3.0) creativecommon...
    Music powered by BreakingCopyright: breakingcopyri...
    Leave a like if you find this video helpful.

Komentáře • 25

  • @SarthakDasgupta-bp8xi
    @SarthakDasgupta-bp8xi  Před 2 měsíci

    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
    czcams.com/video/YUnZKKao3Sg/video.html

  • @DEwithDhairy
    @DEwithDhairy Před 2 měsíci +1

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

  • @siddhartharao8490
    @siddhartharao8490 Před 4 měsíci

    Thanks for the brief explanation. Waiting for much interview questions on SQL Coding!

  • @sreeragmv5100
    @sreeragmv5100 Před měsícem

    Thanks, This is really helpful.

  • @shwetas4388
    @shwetas4388 Před měsícem +1

    Pls bring data analyst interview ques

  • @swapnilchavan8080
    @swapnilchavan8080 Před 4 měsíci

    very helpful info....and good explanation...

  • @lakshmiivaturi
    @lakshmiivaturi Před 2 měsíci

    Please upload pyspark and SQL coding questions with answers. And your explanations are to good and we can visualize it easily. Thank you for sharing your interview experience

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Před 2 měsíci

      Thanks for watching, I have recently started making videos to cover pyspark coding questions. Please check out my channel home page

  • @memesmacha61
    @memesmacha61 Před 5 měsíci +1

    make more pyspark coding questions bro

  • @tanmaymandal7173
    @tanmaymandal7173 Před 9 dny

    Q2 ka ans galat h sayad

  • @Backupforsharedalbum
    @Backupforsharedalbum Před 5 měsíci

    I had applied for NLA on Jan 19
    i didn't get any result so I applied to two other roles in Deloitte USI , And My resume was not shortlisted for those roles .
    After feb 10 i got mail from NLA that my resume is shortlisted and i got selected in NLA after all rounds .
    Now will this have any effect on my offer ?
    I had applied to those roles on Feb starting , Will it affect my offer ?
    Because i heard that the selected candidate should not have applied to any roles in deloitte USI in last 6 months , is that real ?
    But When i applied for NLA , It was my first application for Deloitte USI !
    Could my applications to other roles at Deloitte USI after Feb 10 which was rejected during resume screening, impact my Deloitte NLA offer? My NLA application was my first application for Deloite USI in Jan month and i got selected in NLA, received verbal offer too. Will this affect my Deloitte NLA Offer in future ?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Před 5 měsíci

      I would suggest better check with HR as soon as possible. I don't think this should create any problem in the joining process. But if not notified then in BGV you application will come up and they will question you on this

    • @Backupforsharedalbum
      @Backupforsharedalbum Před 5 měsíci

      @@SarthakDasgupta-bp8xi Sir , But Currently there's no HR contacting me !
      I only receive emails sir !
      Sir , But Will this affect my Offer ?
      I'm Scared and Nervous about this sir !
      But I have Proof sir , That NLA was my Very First Application and I got selected in NLA sir !

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Před 5 měsíci

      @@Backupforsharedalbum I dont think this will affect your offer as you have cleared NLA. But still try to get in touch with the company by mailing them to avoid any confusions.

  • @shwetas4388
    @shwetas4388 Před měsícem

    Data engineer n data analyst r different?

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Před měsícem

      Yes these two roles are quite different. DE creates the structure that transform source data into target so that information can be taken out of it valuable to the business. Now what the target data should be is decided by business and DA does some analysis on top of it to get that information. This is just top level idea

  • @BigDataWithSky
    @BigDataWithSky Před 4 měsíci +1

    Pls talk in English

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Před 4 měsíci +2

      Hey I am comfortable in English, but do you think it will increase my reach ? 🤔. I feel Indian viewers connect more with Hindi but do suggest

    • @BigDataWithSky
      @BigDataWithSky Před 4 měsíci

      @@SarthakDasgupta-bp8xi south Indian doesn't understand much in Hindi, Kindly do it in English so you can get international audience reach

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  Před 4 měsíci +1

      @@BigDataWithSky Yeah agreed. I'll try to make all videos in English only from now on

    • @BigDataWithSky
      @BigDataWithSky Před 4 měsíci

      @@SarthakDasgupta-bp8xi Thank u so much!

  • @adhirajmajumder
    @adhirajmajumder Před 11 dny

    import pandas as pd
    data1 = {
    "c1":[1,2,7],
    "c2":[2,4,6]
    }
    data2 = {
    "c3":[6,9],
    "c4":[4,8],
    "c5":[-2,0]
    }
    df1 = pd.DataFrame(data1)
    df2 = pd.DataFrame(data2)
    df = df1.join(df2, how="outer")
    print(df)
    c1 c2 c3 c4 c5
    0 1 2 6.0 4.0 -2.0
    1 2 4 9.0 8.0 0.0
    2 7 6 NaN NaN NaN