Make my trip Frontend interview experience | React and Javascript

  Рет қаралды 14,770

Akash Ingole

Akash Ingole

Күн бұрын

Hey everyone, In this video I have shared my frontend interview experience with Mmt.
This video covers the following topics -
1. How I got the call
2. How many rounds were there ?
3. Tips on how to answer questions.
4. All the Questions along with answers covered in detail.
5. Must watch React coding question.
If this video was helpful, give it a thumbs up and subscribe to my channel for more such videos. 🔔
Subscribe here - / devchannelbyakashingole
Oauth 2.0 -
auth0.com/intr...
Progressive hydration -
www.patterns.d...
Airtel Frontend Interview -
• Airtel Frontend Interv...
Gradeup Frontend Interview -
• Gradeup (BYJU'S Exam P...
Debouncing with React js
• Search in React using ...
Cheers,
Akash Ingole
Would love to Stay Connected with you ❤️
Instagram - / akashingoleofficial
#frontendinterview #reactjsinterview #reactjs #javascript

Пікірлер: 50
@akashingole
@akashingole 2 жыл бұрын
Don't forget to subscribe 🙌 Thank you for watching... Have a great day 😇 -AI
@phaddu7737
@phaddu7737 2 жыл бұрын
How many years of experience was this interview for, as I'm preparing for one it would be helpful to know.
@tanyagupta264
@tanyagupta264 2 жыл бұрын
In the react timer question, you should not be removing dependency array. That means with every second, you are creating new interval and clearing the old one. Which actually loses the purpose of having an interval in first place (it is behaving more like a setTimeout). Instead try setCount((count) => count + 1) inside your interval method and add back empty dependency array so that your set method picks up the latest count value while incrementing
@manishkumarprasad1911
@manishkumarprasad1911 Жыл бұрын
You are right
@ankitmehrotra8519
@ankitmehrotra8519 2 жыл бұрын
This will work - setCount(c => c+1), with previous value implement you can keep empty dependency array.
@MrK-nb7xr
@MrK-nb7xr 2 жыл бұрын
Really .. your video greatly helps man, hats off ... Can you make video about yourself , your current company , Past experience and how much data structures needed to crack the frontend interview .... Keep on attending the interview and share your experiences ..
@imac_
@imac_ 2 жыл бұрын
Extremely easy solution for moving 0's at last ---> let arr = [8, 10, 5, 0, 9, 4, 0, 6, 3]; let last_index = arr.length; for (let i of arr) { if (i == 0) { arr.splice(last_index, 0, i); arr.splice(arr.indexOf(i), 1); } } console.log(arr);
@VipulDessaiBadGAMERbaD
@VipulDessaiBadGAMERbaD 2 жыл бұрын
This is good but needs extra memory
@imac_
@imac_ 2 жыл бұрын
@@VipulDessaiBadGAMERbaD Hi Brother, I've updated my answer, I have corrected the mistake and now its an Efficient in terms of both Time and Space Complexity. Thanks for pointing the mistake.
@VipulDessaiBadGAMERbaD
@VipulDessaiBadGAMERbaD 2 жыл бұрын
splice has its own time complexity of O(n) and on top of that if you use again arr.indexOf that also has O(n), so this might end up consuming more time, the solution is pretty simple using two pointers
@thebattinson1278
@thebattinson1278 Жыл бұрын
More egelant and simpler : function moveZero(arr) { return [...arr.filter(e => e>0) , ...arr.filter(e => e===0) ] }
@thebattinson1278
@thebattinson1278 Жыл бұрын
Another solution for the first one : function moveZero1(arr) { return [...arr.filter(e => e>0) , ...arr.filter(e => e===0) ] }
@abhishekbanda97
@abhishekbanda97 7 ай бұрын
function addEle(arr,num){ let a = [] arr.reduce((prev,curr) => { a.push(prev+curr) return curr; }) if(a.includes(num)){ return true }else{ return false } } console.log(addEle([2,1,3,6],4)) this one also working
@rounak308
@rounak308 2 жыл бұрын
need more video like these in js.interview question analysis etc
@sankatsiddhartha2649
@sankatsiddhartha2649 2 жыл бұрын
Answer to the question move zeros at end question No Need for dual foreach loop: const arr = [1, 2, 3, 0, 5, 6, 0, 10, 12]; function moveZerosAtLastPos(arr) { const nonZeroItems = []; const zeroItems = []; [].forEach.call(arr, (item) => { item !== 0 ? nonZeroItems.push(item) : zeroItems.push(item); }); return nonZeroItems.concat(zeroItems); } const result = moveZerosAtLastPos(arr); console.log(result); 😆😆
@soumyaranjanpanda7532
@soumyaranjanpanda7532 2 жыл бұрын
This was really helpful buddy !! Thank you 🙂
@ankushladani496
@ankushladani496 2 жыл бұрын
Thank you sir Continue this series...
@devashishpujari
@devashishpujari 2 жыл бұрын
Your video content is really helpful ❤️. Can't we use JS functions? like.. filter() method to get an array of non zero elements and then append 0s till the arr.length 🤔
@digvijaysingh9028
@digvijaysingh9028 2 жыл бұрын
No Because using inbuilt functions are not allowed mostly Secondly Filter method behind the scene runs loop and it will be O(n)
@rahulkashyap-jp1vt
@rahulkashyap-jp1vt 2 жыл бұрын
very helpful video, thanks again
@yoguy515
@yoguy515 2 жыл бұрын
all the zeros to the end console.log( array.sort().reverse())
@VipulDessaiBadGAMERbaD
@VipulDessaiBadGAMERbaD 2 жыл бұрын
Any sorting algorithm is O(n Log n), his solution in O(n)
@amansaxena4446
@amansaxena4446 Жыл бұрын
Thanks akash for sharing your experience.
@akashingole
@akashingole Жыл бұрын
Glad to hear that 🙌🏻
@akj3344
@akj3344 2 жыл бұрын
What were the experience requirements for this job? And how much experience do you have? Would help us to know
@abhijeetkaushal1343
@abhijeetkaushal1343 10 ай бұрын
Bhai were you selected? CTC they were offering? I have different approaches but yours also works so good
@rahulkrishnanr758
@rahulkrishnanr758 2 жыл бұрын
bro is this sde1 or sde2 what was the experience ?
@aniketsriwastva6345
@aniketsriwastva6345 Жыл бұрын
Great explanation
@saitejagatadi9711
@saitejagatadi9711 7 ай бұрын
Thank you so much 😊
@karann3335
@karann3335 2 жыл бұрын
bro you are genius
@sohailbasha7781
@sohailbasha7781 Жыл бұрын
U have attest mention the years of experience so tahg we get an idea
@akashingole
@akashingole Жыл бұрын
3+
@Ravi_Goyal
@Ravi_Goyal 2 жыл бұрын
Can we use python to solve coding questions in frontend interview?
@sahukarisantosh4655
@sahukarisantosh4655 2 жыл бұрын
the 2nd question asked for me also
@nishantsharma7267
@nishantsharma7267 2 жыл бұрын
Nice 👍
@bhagya12335
@bhagya12335 2 жыл бұрын
Can I know how many years of experience you have in front end
@juhibhardwaj6275
@juhibhardwaj6275 2 жыл бұрын
Hii Akash Ingole, Could you please. Tell me how many rounds were there...?? Can you tell me how many rounds on DS or coding and how many rounds on React Js
@akashingole
@akashingole 2 жыл бұрын
Total 3 rounds including DS and React
@HighEntertainer
@HighEntertainer 6 ай бұрын
3+ year for people wondering
@SCRIPTSAG
@SCRIPTSAG Жыл бұрын
What package you got it
@shubhammehra8300
@shubhammehra8300 2 жыл бұрын
experience requirements??
@sahukarisantosh4655
@sahukarisantosh4655 2 жыл бұрын
where i get that dsa questions
@VipulDessaiBadGAMERbaD
@VipulDessaiBadGAMERbaD 2 жыл бұрын
Leet code
@coading1216
@coading1216 2 жыл бұрын
Bhai how do you apply for this companys?
@akashingole
@akashingole 2 жыл бұрын
Got the call from HR
@virajlohate
@virajlohate 2 жыл бұрын
@@akashingole how to get call from HR?
@RohitSinghofficial
@RohitSinghofficial 2 жыл бұрын
Bhai kitne interviews dega :D :p
@RohitSinghofficial
@RohitSinghofficial 2 жыл бұрын
just kidding.. keep doing it..
@Viral_Shorts_v
@Viral_Shorts_v Жыл бұрын
here to shortes way to shift zeros- const funShifZero =(arr)=>{ const tempArr1=[] const tempArr0=[] for(let i = 0; i
@aigaming019
@aigaming019 Жыл бұрын
Very useful 😊
Airtel Frontend Interview Questions | React and Javascript
39:57
Akash Ingole
Рет қаралды 14 М.
Or is Harriet Quinn good? #cosplay#joker #Harriet Quinn
00:20
佐助与鸣人
Рет қаралды 47 МЛН
Whoa
01:00
Justin Flom
Рет қаралды 55 МЛН
Bend The Impossible Bar Win $1,000
00:57
Stokes Twins
Рет қаралды 42 МЛН
Infosys|| REACT JS live interview experience with MNC|| 3 years|| React js
25:29
🔴 React Interview Experience 🔥 (Live Coding 💻) | MUST WATCH
27:32
Module Federation in React | React Micro Frontend
13:24
Akash Ingole
Рет қаралды 1,9 М.
This react interview challenge was awesome to solve
31:13
Web Dev Cody
Рет қаралды 50 М.
Or is Harriet Quinn good? #cosplay#joker #Harriet Quinn
00:20
佐助与鸣人
Рет қаралды 47 МЛН