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
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
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
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 ?
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
@@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 !
@@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.
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
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
Thanks
Thanks for the brief explanation. Waiting for much interview questions on SQL Coding!
very helpful info....and good explanation...
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
Thanks for watching, I have recently started making videos to cover pyspark coding questions. Please check out my channel home page
Thanks, This is really helpful.
Glad it was helpful! 😀
Pls bring data analyst interview ques
make more pyspark coding questions bro
How u have practice pyspark scenario based question.could u plz share content
I am working on videos specific to spark scenario based theory ques where you might get some idea
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
@@shashwatshekhar6867 DSA level is quite simple. Brush on list string coding questions. Practice on leetcode
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 ?
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
@@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 !
@@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.
Data engineer n data analyst r different?
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
Q2 ka ans galat h sayad
@@tanmaymandal7173 kyaa hai right ans?
Pls talk in English
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
@@SarthakDasgupta-bp8xi south Indian doesn't understand much in Hindi, Kindly do it in English so you can get international audience reach
@@BigDataWithSky Yeah agreed. I'll try to make all videos in English only from now on
@@SarthakDasgupta-bp8xi Thank u so much!
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