Live Data Engineering Coding Round Mock Interview | Apache Spark | Big Data Project

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024

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

  • @arunsundar3739
    @arunsundar3739 6 หลายเดือนก่อน +5

    talented youngsters, good questions & good answers, learnt a lot, thank you very much :)

    • @solondas96
      @solondas96 6 หลายเดือนก่อน +1

      Thank you 😊

  • @imranhossain1660
    @imranhossain1660 6 หลายเดือนก่อน +4

    select id,dept,salary,
    avg(Salary) over(partition by dept) as avg_sal,
    dense_rank() over(partition by dept order by salary desc) as rn
    from emp100

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

    for ele in s.split(' '):
    if ele in d:
    d[ele]+=1
    else:
    d[ele]=1
    for key,val in {i : d[i] for i in sorted(d,key=d.get,reverse=True)}.items():
    print(f'{key}|{val}')

  • @shilashm5691
    @shilashm5691 6 หลายเดือนก่อน +3

    job --> stages --> tasks , dag scheduler, task scheduler missing in explanation

  • @anupammishra2974
    @anupammishra2974 6 หลายเดือนก่อน +3

    S = """Data engineering is a good skill
    Data is a new Oil
    Data Enginering skill is massive"""

    words = S.split()
    dict1 = {}
    for i in words:
    dict1[i] = words.count(i)
    print(dict1)