Пікірлер
@JohnDoe-to8vr
@JohnDoe-to8vr 10 сағат бұрын
I think this guy has enough knowledge to crack the interview. You don't need that much knowledge to solve real-world problems these days, especially in this AI era. We have ChatGPT and Claude for that. I don't know why people on KZbin are bragging about their DSA skills on the platform. In this AI era, anyone can become a developer if they have the grit for it, and this guy has it. I think you overreacted to him. In the end, all that matters is if you can create something valuable, either using AI or not. DSA was necessary at one time, but now it isn't. Now all you need is the will to do the work.
@ManrajStudios
@ManrajStudios 14 сағат бұрын
Tech burner bhai yaha ky kar rhe 😆
@ManrajStudios
@ManrajStudios 18 сағат бұрын
Your are very supportive bro - Question was too easy to implement 😅😅😅
@ManrajStudios
@ManrajStudios 19 сағат бұрын
All questions were too easy 😊
@dr.youtube7318
@dr.youtube7318 20 сағат бұрын
As an interviewer, you must remain calm and not be rude to any fresher. Tackling this type of Question may be challenging for freshers. Think about it, @Semicon Guy
@SemicolonGuy
@SemicolonGuy 17 сағат бұрын
Yeah, I'll be chill in real interviews but not in mocks. When I talked to the candidate, we decided to have a HARD interview to prepare for the worst.
@charuwaka1
@charuwaka1 Күн бұрын
In terms of behavior, it's important to remember that a person's attitude and conduct can impact their role just as much as their skills. When you join a company, about 40% of what matters is your skill set, while the remaining 60% comes down to factors like attitude, teamwork, and adaptability. If this interview discussion were monitored and reviewed, interviewer would be fired in a heart beat. I know this is just a mock interview, but focusing on these points can really make a difference in the long run
@SemicolonGuy
@SemicolonGuy 22 сағат бұрын
Indeed, for a professional interviewer, such an attitude would be inappropriate in a real interview.
@MuhammadBilal-hq3xn
@MuhammadBilal-hq3xn Күн бұрын
Learn a lot from it specially coercion
@LOL-jx4cm
@LOL-jx4cm 2 күн бұрын
future ka rehne dijiye kuke vo to hein nhi 🤣 -just for laugh
@gauravvsharma430
@gauravvsharma430 2 күн бұрын
this is actually challenging problem for 45 min
@heeradeo467
@heeradeo467 2 күн бұрын
this is not fresher interview question at all😂.
@bhargavgadhiya4811
@bhargavgadhiya4811 3 күн бұрын
1.Just create an array of all the sections like for vip array of 25 elements for common array of 64 elements using array.form. 2. Use array.map to list down the seats. 3.Use css display grid property to make the proper grid. That's it This question is complex for freshers btw😬
@VamkrishRavulwar
@VamkrishRavulwar 3 күн бұрын
Hi sir, maine BBA graduated hu and I'm doing full stack in web dev recently completed Basic, HTML, CSS & JS and moving forward to learning, and sir any suggestion you want to give me ?
@ygunashekar3909
@ygunashekar3909 3 күн бұрын
I know hot do webdesighns as basic to intermediate but I am not good in theory
@itsmeakash_
@itsmeakash_ 4 күн бұрын
Aj Table badla hai, Sheer abb Chuhha ban gaya
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
hahaha
@HarshJipkate
@HarshJipkate 4 күн бұрын
this one's much easier than train booking system you gave in previous interviews
@jay-20038
@jay-20038 4 күн бұрын
Done!! import React, { useState } from 'react' function DiwaliGift() { const [query, setQuery] = useState('') const [participantCollection, setParticipantCollection] = useState([]) const [assignGift, setAssignGift] = useState(false) const gifts = ['crackers', 'decoration', 'frame', 'mobile', 'laptop'] function handleGenrateGift() { console.log(gifts[Math.floor(Math.random() * gifts.length)]) return gifts[Math.floor(Math.random() * gifts.length)] } function handleAddparticipant() { setParticipantCollection(prev => [...prev, { id: crypto.randomUUID(), participantName: query, gift: null }]) setQuery('') } function commonUpdateGiftFun() { let copyArr = [...participantCollection] copyArr = copyArr.map((person) => { return { ...person, gift: handleGenrateGift() } }) setParticipantCollection(copyArr) } function handleAssignGift() { if (!assignGift && participantCollection.length > 0) { commonUpdateGiftFun() setAssignGift(true) } else { alert('Gift Are Already Assigned') } } function handleShuffleGift() { if (participantCollection.length > 0) { commonUpdateGiftFun() } } function handleReset() { let copyArr = [...participantCollection] copyArr = copyArr.map((person) => { return { ...person, gift: null } }) setParticipantCollection(copyArr) setAssignGift(false) } function handleRemovePerson(personId) { setParticipantCollection((prev) => prev.filter(person => person.id !== personId)) } return ( <div> <h1>Diwali Gift Exchange</h1> <div className='text-black flex items-center justify-center mt-10 gap-2'> <input type="text" value={query} onChange={(e) => setQuery(e.target.value)} placeholder='Enter Participant Name' className='pl-1 outline-none py-[5px] w-56' /> <div className='bg-gray-200 py-[5px] px-5 cursor-pointer' onClick={() => handleAddparticipant()}>Add Person</div> </div> <div className='flex flex-col items-start mt-5 gap-3'> { participantCollection && participantCollection.map((person) => { return ( <div className='flex items-center gap-3' key={person.id}> <p className='capitalize'>{person.participantName} - {person.gift == null ? 'No Gift Assigned' : `Gift-${person.gift}`}</p> <div className='bg-gray-400 py-[5px] px-5 cursor-pointer' onClick={() => handleRemovePerson(person.id)}>Remove</div> </div> ) }) } { participantCollection && participantCollection.length > 0 && ( <div className='flex gap-2'> <div className='bg-gray-400 py-[5px] px-5 cursor-pointer' onClick={() => handleAssignGift()}>Assign Gift</div> <div className='bg-gray-400 py-[5px] px-5 cursor-pointer' onClick={() => handleShuffleGift()}>Shuffle Gift</div> <div className='bg-gray-400 py-[5px] px-5 cursor-pointer' onClick={handleReset}>Reset</div> </div> ) } </div> </div> ) } export default DiwaliGift
@hiibrain
@hiibrain 4 күн бұрын
I don’t get the appeal of React, anyone can wrap this in 5 mins with vanilla JS.
@shubhamthaker9380
@shubhamthaker9380 4 күн бұрын
he definately isint a fresher
@vijaymaroju6340
@vijaymaroju6340 4 күн бұрын
So is it ok to learn DSA with Javascript? But I am unable to find any resources to learn DSA with Javascript. Can anyone suggest me.
@amitdahiya7425
@amitdahiya7425 5 күн бұрын
I see his English speaking skills are not that good , so is it a turnoff for the interviewer or it just fine if he can explain himself ?
@shubhamvyavhare5664
@shubhamvyavhare5664 5 күн бұрын
If your JavaScript and Problem solving skills are strong learning react or any other technology in 20 days no big deal...! Major reason most of the high paying companies asks DSA in their interview. I myself learned react in 3-4 weeks and got 3-4 paid internship offers (That was 2 years ago).
@MeekOfficial-me9cm
@MeekOfficial-me9cm 5 күн бұрын
I also wanna give a interview
@ShubhamXD
@ShubhamXD 5 күн бұрын
Ritik bhai please share codesandbox link
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
codesandbox.io/p/devbox/hungry-galois-zkp9rw
@binamralamsal
@binamralamsal 5 күн бұрын
46:40 Always use form for these kinds of tasks. It is necessary for accessibility. For example, with form tag you will get submitting on enter key.
@SemicolonGuy
@SemicolonGuy 5 күн бұрын
Good point
@aquestmusic1
@aquestmusic1 5 күн бұрын
Usne bas flex kia.. Dekh k hi lg rha hai boht mahino se react pe code krta hai !!
@ryan._.yuuki7
@ryan._.yuuki7 3 күн бұрын
Merko to lagra tha 2-3 din hua hai react pe code krte krte😭 itne simple questions pe itna sochna and glti Krna is beyond me.
@hanish3979
@hanish3979 5 күн бұрын
amazing logic building bro
@RED-wj2jb
@RED-wj2jb 5 күн бұрын
Where did he learn react from? Please reply 🙏
@vansh_choudharyy
@vansh_choudharyy 5 күн бұрын
Thanks a lot! for this amazing interview 😊
@yashpandey7
@yashpandey7 2 күн бұрын
Excellent interview, brother. It was amazing seeing your code and quick responses. Just one tip for all your next interviews: keep your laptop charging.☺
@vansh_choudharyy
@vansh_choudharyy 2 күн бұрын
@@yashpandey7 sure , thanks for tip 💛
@SemicolonGuy
@SemicolonGuy 5 күн бұрын
Free mentorship series 7 November se aa rhi hai ❤ Yha jaakr apply kro whatsapp.com/channel/0029VaIZR09JJhzUFR2UpC12
@iganic7574
@iganic7574 5 күн бұрын
Aapne to bola tha aab interview series band🤔🤨
@SemicolonGuy
@SemicolonGuy 5 күн бұрын
7 November se ayegi 1:1 mentorship
@vijaymaroju6340
@vijaymaroju6340 5 күн бұрын
Ah man!!! This video made me realize that I still have a long way to go in my preparation for FrontEnd interviews. I hope i I will become a professional developer one day.
@AyanAlam
@AyanAlam 7 күн бұрын
Bhai ne interview ke phele ai ka inline suggestion off nhi kiya ???🫡
@pupunjena1862
@pupunjena1862 7 күн бұрын
the interviewer talks shit...people like him should not be in industry
@jordan_heartz
@jordan_heartz 7 күн бұрын
Ritik bhai where are you from ??? i want to meet you..
@SemicolonGuy
@SemicolonGuy 7 күн бұрын
I am from NCR. where are you from?
@jordan_heartz
@jordan_heartz 6 күн бұрын
@@SemicolonGuy Bihar :D
@PiyushAcharya-i7c
@PiyushAcharya-i7c 8 күн бұрын
fuckin coding
@An_ony_mous
@An_ony_mous 8 күн бұрын
How to code, I'm actually interested? I'm in my first year ECE. I barely have time for coding right now. I want to do some coding certificate courses online.
@Amankhan-fj7fo
@Amankhan-fj7fo 8 күн бұрын
Sir can I give a mock React interview.
@mohammedthabrez4540
@mohammedthabrez4540 8 күн бұрын
ERROR the discount is absolute and not percent
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
yes yes
@adeebkhan7543
@adeebkhan7543 8 күн бұрын
If, in any real interview, any interviewer talks to you like that, say 'TATA BYE BYE' in the very first place and end the meeting. Coz it's not just about the interview, you are gonna work with that guy in future and that will be difficult for you.
@SemicolonGuy
@SemicolonGuy 7 күн бұрын
Yes true! And just to be clear it was a mock interview and it was already conveyed to the candidate that this is is going to be hard to prepare him for worst. In real interviews, obviously I will be more helpful until or unless it is a bar raiser round
@shivamdeulkar3636
@shivamdeulkar3636 9 күн бұрын
It's disappointing to see an interviewer like this in 2024. The candidate, likely a student looking for an internship, was understandably anxious and may have rushed through their preparation due to the pressure of getting a job. What's more surprising is how nervous the interviewer appeared. At the start of the video, they fumbled a bit while explaining the problem, which isn’t very professional. It’s important for the interviewer to be composed, as it sets a proper standard, especially when dealing with someone early in their career.
@SemicolonGuy
@SemicolonGuy 7 күн бұрын
Yes true! And just to be clear it was a mock interview and it was already conveyed to the candidate that this is is going to be hard to prepare him for worst. In real interviews, obviously I will be more helpful until or unless it is a bar raiser round
@harshittihty4349
@harshittihty4349 9 күн бұрын
React devs😂😂
@SuperGamer-wn6gp
@SuperGamer-wn6gp 9 күн бұрын
If this guy interviews again revive me.
@yogeshverma275
@yogeshverma275 9 күн бұрын
Interviewer was more nervous than candidate
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
haha! may be because of english you felt like this
@ArcadyArts
@ArcadyArts 9 күн бұрын
this gives me a little confidence boost.... as I was able to solve this question on the spot. Granted its a fairly simple question.
@bollywoodkol783
@bollywoodkol783 9 күн бұрын
country india hai lekhin bolni english kia ho raha hai, shayed wo banda confuse ho gaya
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
ha
@bollywoodkol783
@bollywoodkol783 3 күн бұрын
@@SemicolonGuy g bilkul
@S_a_a_n
@S_a_a_n 10 күн бұрын
Thanks brother for not replying my comments on your live session, socha reply de doge toh kuch help mil jayega, but 😢
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
sorry ji! yha puch lijiye kya puchna hai
@S_a_a_n
@S_a_a_n 3 күн бұрын
@@SemicolonGuy mein abhi 2nd year mein hoon, abb 5 dino se c language start kiya hoon, brother please suggest something, jisiki help se mein aur 2.5saal se kuch sikhke job le paun, atleast kuch toh roadmap de dijiye 2.5 year ke liye, Please try to give reply 🙏🏻 brother
@SemicolonGuy
@SemicolonGuy 3 күн бұрын
Ek kaam kro linkedin par msg kro. Yha mjss hojayega linkedin.com/in/ritikcodes
@priyanshunishad7402
@priyanshunishad7402 10 күн бұрын
Thanks for your motivation 🙏
@surajsule1133
@surajsule1133 10 күн бұрын
Bro 😅😅😅