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

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

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

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

    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

  • @siddhartharao8490
    @siddhartharao8490 8 месяцев назад +2

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

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

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

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

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

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

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

    Thanks, This is really helpful.

  • @shwetas4388
    @shwetas4388 6 месяцев назад +1

    Pls bring data analyst interview ques

  • @memesmacha61
    @memesmacha61 9 месяцев назад +1

    make more pyspark coding questions bro

  • @rishitajain4221
    @rishitajain4221 3 месяца назад +1

    How u have practice pyspark scenario based question.could u plz share content

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

      I am working on videos specific to spark scenario based theory ques where you might get some idea

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

    Bro, I am a bit confused, can you please give some info on the level of DSA asked for data engineer roles, i am quite good in sql and pyspark, but lack confidence while solving medium level questions on python leetcode as I have just started practising it, also what can be the level expected for interviews for DE role in faang companies

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

      @@shashwatshekhar6867 DSA level is quite simple. Brush on list string coding questions. Practice on leetcode

  • @Backupforsharedalbum
    @Backupforsharedalbum 10 месяцев назад

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

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

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

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

    Data engineer n data analyst r different?

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

      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

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

    Q2 ka ans galat h sayad

  • @BigDataWithSky
    @BigDataWithSky 9 месяцев назад +1

    Pls talk in English

    • @SarthakDasgupta-bp8xi
      @SarthakDasgupta-bp8xi  9 месяцев назад +3

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

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

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

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

      @@SarthakDasgupta-bp8xi Thank u so much!

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

    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