React JS Live Coding Interview 2023 - Cracking the Interview (Mock practice)

  Рет қаралды 512,249

Coder Dost

Coder Dost

Күн бұрын

Пікірлер: 257
@coderdost
@coderdost Жыл бұрын
Code : codesandbox.io/s/delicate-river-8zur7n
@kanjarlanarasimha2605
@kanjarlanarasimha2605 Жыл бұрын
Sir in your code why we need countries [country] && in second select drop-down tag please clarify my doubt sir
@arpityadav7290
@arpityadav7290 Жыл бұрын
For short-circuit Means jab tak country select ni hogi tab tak country state blank rhegi toh error through karegi isliye && means aagar country state me value hai toh he vo aage move karegi
@ravivishnoliya7316
@ravivishnoliya7316 10 ай бұрын
no use of useeffect here
@gauravdwivedi-h5t
@gauravdwivedi-h5t 6 ай бұрын
Do we really need useEffect in this code?
@WaqarAhmad-qz8mv
@WaqarAhmad-qz8mv Жыл бұрын
Good that you are suggesting, not like other interviewer who just stay silent and think that you know nothing
@pervert_kun
@pervert_kun Жыл бұрын
This wasn't good either lol
@anshupatel8087
@anshupatel8087 Жыл бұрын
😂😂
@dheerajsingh568
@dheerajsingh568 3 ай бұрын
Apna bana hai😂😂😂
@SunilparajuliKenshin
@SunilparajuliKenshin Жыл бұрын
while i might not know the syntax at the but as soon as i saw the questions what he can do it is: first map to generate options selection for country, based on country code i.e. "in" , upon selection of first item, he could filter the map to get selected country & selected cities in 2nd dropdown.
@shubhamgoyal1547
@shubhamgoyal1547 Жыл бұрын
A good strategy is to talk though your thought process. That way its easier for the interviewer to help and understand.
@stefumies
@stefumies 3 ай бұрын
Getting the candidate to explain also filters out the pure recall knowledge from the actual understanding.
@SivaAbhilash
@SivaAbhilash Жыл бұрын
People are who are looking jobs are busy how to crack interviews and people who are working as freelancers busy in developing applications using gpt-4 only difference both of them is person came for interview will work like a machine and freelancer will make machines work.interview is just a process of filtering competition not knowledge .alteast this youtuber is supporting sharing this video to lower the pressure of candidates going for interview 🎉
@coderdost
@coderdost Жыл бұрын
Great line .. interviews is just process of filtering… makes no sense for knowledge
@sreeharinallapaneni1726
@sreeharinallapaneni1726 Жыл бұрын
That's a good approach, For second dropdown, you can try filter the countries with the selected country and extract the cities property and chain that output to map function... like below {country && countries .filter((c) => c.name === country)[0] .cities.map((city, i) => { return ( {city} ); })}
@coderdost
@coderdost Жыл бұрын
👍
@hariacharya2534
@hariacharya2534 Жыл бұрын
More comprehensive would be to store the cities of selected country in the state.
@liamwelsh5565
@liamwelsh5565 Жыл бұрын
Using the index is more efficient. Your approach is O(c * n) where c is country and n is the number of cities in c. Using the index results in O(n) where n is the number of cities.
@nikeshgupta1241
@nikeshgupta1241 Жыл бұрын
@@hariacharya2534In that case you have to handle a case can read property of undefined
@hariacharya2534
@hariacharya2534 Жыл бұрын
@@nikeshgupta1241 how undefined? Set initial value in state to first item of array initially. Add on change event to update it. It's straight forward.
@subhasisdas9916
@subhasisdas9916 10 ай бұрын
I'm very impressed with that interview er. He's very helpful❤
@PaulGreen-lk1ym
@PaulGreen-lk1ym Жыл бұрын
A very informative video on how 2 guys are looking for a typo in the code for about of 15 minutes. Ty😁
@coderdost
@coderdost Жыл бұрын
Happens all the time in coding
@ahndeux
@ahndeux Жыл бұрын
No stress.. No stress... YOU'RE DOING IT WRONG!! No stress.. No stress... YOUR SELECT STATEMENT IS BAD! No stress... No stress...
@k303k
@k303k Жыл бұрын
Hi sir! This is very helpful.Pls create more react interview codings in the future.
@rsdeathgaming5027
@rsdeathgaming5027 Жыл бұрын
The question was very helpful for those who prepare for Interview I'm also preparing and I followed your whole playlist.. Thanks for the sharing valuable information sir 🙏
@coderdost
@coderdost Жыл бұрын
Great 👍🏻
@rajubojja2446
@rajubojja2446 Жыл бұрын
import "./styles.css"; import {useState} from 'react'; const countryArrays = [ { country:"India", value:"In", cities:["Telangana","AndhraPradesh","Rajasthan","Maharashtra"] }, { country:"Pakistan", value:"Pak", cities:["Pak-One","Pak-Two","Pak-Three"] } ] export default function App() { const [array,setArray] = useState(countryArrays); const [state,setState] = useState([]) const changeStates=(e)=>{ const filtered = array.filter((item)=>item.value == e) setState(filtered[0].cities) console.log(state) } return ( changeStates(e.target.value)}> { array.map((item,index)=>( {item.country} )) } { state.map((item)=>( {item} )) } ); } I tried
@abhayraut5659
@abhayraut5659 Жыл бұрын
const changeStates=(e)=>{ const filtered = array.find((item)=>item.value.toString() === e.toString()) setState(filtered.cities) } console.log(state)
@iamkamal5960
@iamkamal5960 Жыл бұрын
Great work Sir!! Video would be way better if you could explain the code at the end, will really help beginners.
@hadeedtmgggg5837
@hadeedtmgggg5837 Жыл бұрын
Bro he is mapping in the array and on the left hand he is displaying cities and in select on onchange the index of the country is set into set country and down below he is displaying cities when the index of the country change down below the country index change and the city element is changed like if country is India when it will change the index changed from 0 to 1 and it set in to country after that the other element access the 1 index object and display it's cities list❣️
@Chandrashekhar_5555
@Chandrashekhar_5555 Жыл бұрын
@Portal Solve yes go for it
@siddharthjoshi3328
@siddharthjoshi3328 Жыл бұрын
​@Portal Solve Abhi tak explain nahi kiya
@thequantum-plator
@thequantum-plator Жыл бұрын
@Portal Solve jab aata nhi h toh udna mat
@Cyrus_San
@Cyrus_San Жыл бұрын
@@Chandrashekhar_5555 Can I explain it ?
@aparnas1613
@aparnas1613 Жыл бұрын
const [country, setCountry] = useState(0) Loads cities in India on initial render :)
@coderdost
@coderdost Жыл бұрын
Great
@arpityadav7290
@arpityadav7290 Жыл бұрын
Helps me a lot i am copying the question code by watching video and then a get this code sandbox link .
@anuragsonkar3227
@anuragsonkar3227 7 ай бұрын
35 mins 😅 : export default function App() { const [country, setCountry] = useState(""); const [cities, setCities] = useState([]); function handleChange(e) { const selectedCountry = e.target.value; setCountry(selectedCountry); const filterCities = countries.find((ele) => ele.value === selectedCountry); setCities(filterCities ? filterCities.cities : []); } return ( { handleChange(e); }} > Select country {countries.map((ele) => ( {ele.name} ))} {/** set cities */} {cities.map((ele) => ( {ele} ))} ); }
@quickgyan5152
@quickgyan5152 Жыл бұрын
That are valuable interview questions that's help to grap the opportunity for job
@harshagarwal7832
@harshagarwal7832 11 ай бұрын
This same question was ask in my interview and I live coded this in a great was the interviewer was impressed and I got a offer from the company thanku sir for this types of video☺️
@pbarmyff
@pbarmyff 10 ай бұрын
Whats your package
@harshagarwal7832
@harshagarwal7832 8 ай бұрын
@@pbarmyff That was only internship giving 15k per month for 6th months
@PunkSage
@PunkSage 9 ай бұрын
The main issue is that the interviewee started by immediately writing the final code. It's usually better to start with a mock-up of the data and then add dynamic values with React. This way, we wouldn't waste so much time fixing small errors like closing brackets. I would give this person a 7/10 for their technique. Although they got the expected result, the way they did it wasn't very impressive.
@dheerajsingh568
@dheerajsingh568 3 ай бұрын
Just do, {country && {countries[country].cities.map(city => {city})} }
@How2-port8080
@How2-port8080 Жыл бұрын
Great for helping students..🙏
@clashingtv2527
@clashingtv2527 8 ай бұрын
For me 1st set the the country in state and its index! And default is blank or null! For second! I checked that if state empty then disabled! Bot are done by onChange! 2nd After setting the country and index enable the drop-down! And map the city 😁
@AyushRawat-v8m
@AyushRawat-v8m 3 ай бұрын
{country && { countries.filter(({value}) => value === country).flatMap((filteredCountry)=>filteredCountry.cities).map((city)=>{ return {city} }) } } chaining for second list and conditional render piece of cake
@ARUNK-m7j
@ARUNK-m7j 5 күн бұрын
const [country,setCountry]=useState(0) this is the best way to initialize for the above code, instead of object with empty values
@CodingInterviewTV
@CodingInterviewTV 10 ай бұрын
I've been asked about tools to use during the coding interview to get answers without the interviewer noticing, came across Coding Interview Champ not sure how good they are but looks interesting
@arjukumbhakar9398
@arjukumbhakar9398 5 ай бұрын
Woww❤ I'm impressed with the humbleness of the Interviewer ❤😊
@bishwajeetpandey1570
@bishwajeetpandey1570 Жыл бұрын
Wow so much helpful, i need more questions like this to practice
@coderdost
@coderdost Жыл бұрын
Sure. We will try more videos with more questions
@karanbhoite9552
@karanbhoite9552 Жыл бұрын
There is one bug , while sending values to backend country's value would be 0 coz setting index to value of country while doing onchange, This one is not proper solution i guess below answer would help you all While doing onchange on country select {item.name} While rendering cities countries.find((item)=>country===item.name)?. cities?.map()
@coderdost
@coderdost Жыл бұрын
yes the candidate just finished it, all edge cases not discussed.
@karanbhoite9552
@karanbhoite9552 Жыл бұрын
@@coderdost keep uploading this kind of videos, I am also preparing for the interview its really helpful
@pankajsuryavanshi8332
@pankajsuryavanshi8332 Жыл бұрын
Waiting for next episode. Saved this playlist
@littleshorts6969
@littleshorts6969 Жыл бұрын
*15 mins and a government website*
@imnawasthi
@imnawasthi Жыл бұрын
I have a slight confusion in this video, maybe i am wrong, but he created a state that accepts an object, then assigns a index(option's value) to it. Is it possible or i misunderstood something?
@coderdost
@coderdost Жыл бұрын
I think he changed it in between but due to scrolling of code editor, it was not visible. your confusion is correct and candidate changed approach in between,
@iftekhar_ansari
@iftekhar_ansari Жыл бұрын
Take index instead of taking value
@blackpurple9163
@blackpurple9163 Жыл бұрын
I was stressed to watch him try and fix his mistakes, it's even know difficult when someone is watching
@coderdost
@coderdost Жыл бұрын
yes real life stress handling is biggest part of interviews.
@pankajkthakur8042
@pankajkthakur8042 Жыл бұрын
Onchange filter out the selected country object and amp other dropdown with filtered cities. Its an easy problem … i am giving interview they ask to call api and show some hierarchy level drop-down or create multiple components set data in context apis
@coderdost
@coderdost Жыл бұрын
In live interview over screen-shared or timed-assignments ?
@vikhyatsingh9434
@vikhyatsingh9434 6 күн бұрын
I thought he had to make one dropdown and on selecting any item, there should be another dropdown attached to that option. But he made two separate dropdown
@Coder900
@Coder900 2 ай бұрын
Yes that was a good solution but there was a mistake that he did. He used country'sIndex as a value in second selectbox and you can check when he's selecting pak then karachi is automatically getting selected. Thats a note for viewers too although I know manny of you have figured it out. Great work though
@hashirmughal5625
@hashirmughal5625 Жыл бұрын
wow love from Pakistan sir you are great😍😍😍😍😍😍
@bardenishi4312
@bardenishi4312 Жыл бұрын
Outstanding !
@AhmadAli-wt8zy
@AhmadAli-wt8zy Жыл бұрын
We can also use useEffect hook and add country as a dependency. So when ever country changes it will run and change the city dropdown. Am I correct?
@geetasarayaarts867
@geetasarayaarts867 11 ай бұрын
Yes of course.but no need of adding useEffect hook here
@JonnyWarker-y7d
@JonnyWarker-y7d 6 ай бұрын
The intervewee is really great
@malag6358
@malag6358 4 ай бұрын
Can You make Vedios for 3+ years Problem Solving Interview Questions
@mark-cr4by
@mark-cr4by Жыл бұрын
Nice thats a lot of pressure
@AhmadKhujair
@AhmadKhujair Жыл бұрын
i thought you were asking for nested type dropdown
@coderdost
@coderdost Жыл бұрын
No simple one only. Generally interviewer increases complexity on completion of each step
@musicinc7851
@musicinc7851 Жыл бұрын
He could have used a state variable for cities and then simply update the state.
@DESTRUCTION1347
@DESTRUCTION1347 8 ай бұрын
Sidha filter lagate aap second map ka new array aata uspe
@shardulchaudhary3366
@shardulchaudhary3366 5 ай бұрын
I cracked internship with your help
@technicalrobot9685
@technicalrobot9685 Жыл бұрын
The Correct Answer: import "./App.css"; import {useState} from "react"; const countries = [ { name: 'India', value: 'IN', cities:[ 'Delhi', 'Mumbai' ] }, { name: 'Pak', value: 'PK', cities:[ 'Lahore', 'Karachi' ] }, { name: 'Bangladesh', value: 'BD', cities:[ 'Dhaka', 'Chittagong' ] }, ]; function App() { const [country, setCountry] = useState(0); return ( { console.log(e.target.value); setCountry(e.target.value); }} > --Select Country-- { countries.map((item, index) => { return {item.name} })} { countries[country].cities.map((item, index) => { return {item} })} ); } export default App;
@user121304
@user121304 Жыл бұрын
Thanks! I have a question, What does countries[country] mean? I read the comments and it said he used it for index. I tried to change it to i or index and I am getting undefined error. Why is it so? Please explain. Thanks :)
@technicalrobot9685
@technicalrobot9685 Жыл бұрын
@@user121304 you have to initialize accordingly useState() function for that
@turantech
@turantech Жыл бұрын
Typing and not talking is huge red flag. You should explain what are you doing! At least in US we do it
@VishalSharma-rn7mt
@VishalSharma-rn7mt 11 ай бұрын
Awesome example
@kiranmuttanwar8275
@kiranmuttanwar8275 9 ай бұрын
@coderdost what was the exp if that person? I mean at what level tvis kind of question are asked for freshee 1to 2year or more than that if you could tell
@anushree__12021
@anushree__12021 8 ай бұрын
I am a fresher.. during interview, interviewer asked to bring the file of other folder the to project directory using react code. I got reject in interview. Can anyone say what is the solution? Can we use import for this?
@vinothkumarv9722
@vinothkumarv9722 Жыл бұрын
Its Awesome :) thanks sir
@vikasbhatiwal4878
@vikasbhatiwal4878 Жыл бұрын
in your codesandbox . you checked for countries[country]&&, but the candidate didn't..... though his cide is working but when i dont'check countries[country]&& my console shows can't read property of undefined (reading cities. ) Please explanin the reason
@coderdost
@coderdost Жыл бұрын
I think candidate has changed the code later on . So may be some initial value of countries was there at top not visible may be in video..
@ForLearning-jf1li
@ForLearning-jf1li 10 ай бұрын
please make some more videos like this
@anuragtiwari6910
@anuragtiwari6910 Жыл бұрын
sir if possible please pin the codesandbox link for these interviews.... it helps us to try /edit these challenges practically
@coderdost
@coderdost Жыл бұрын
but problem is everyone edits it... codesandbox.io/s/delicate-river-8zur7n
@anuragtiwari6910
@anuragtiwari6910 Жыл бұрын
@@coderdost i think there is a option to lock the sandbox...so that the other person can only fork it for self editing ...and not change the orignal sandbox..like in many udemy courses
@coderdost
@coderdost Жыл бұрын
@@anuragtiwari6910 Thanks. will check this next time while sharing code.
@AhmadRaza-uo8ze
@AhmadRaza-uo8ze 11 ай бұрын
Now I feel good that I am not a noob
@dilshadzm313
@dilshadzm313 Жыл бұрын
How much will the payroll for this type of interview ? I'm doing way more complex problems than this and I'm getting 15k per month it's a startup company and they didn't even conduct a coding interview they just asked a few questions and recruited me
@coderdost
@coderdost Жыл бұрын
this was a live interview, where you have to code in front on someone in given time, so question was easy, but people are more nervous. Also they have to code on an online editor not their VScode. Payroll is very much dependent on your experience + city. for a fresher companies can pay very low. But after 1-2 year of experience the real worth of your work will be valued.
@asifali_official3137
@asifali_official3137 Жыл бұрын
great work sir ❤
@mythic_binod
@mythic_binod 4 ай бұрын
Huh he cracked interview ? It's a basic syntax error he closed the second select option without passing the props
@MuhammadBilal-hq3xn
@MuhammadBilal-hq3xn Жыл бұрын
Great I love this.
@bloggerayush8550
@bloggerayush8550 10 ай бұрын
for what LPA, we can expect this question??
@abhayverma7080
@abhayverma7080 Жыл бұрын
const countries = [ {name:'India', value:'IN', cities:['delhi','mumbai']}, {name:'Pakistan', value:'PK', cities:['Lahore','Karachi']}, {name:'BanglaDesh', value:'BG', cities:['DHAKA','CHi']} ]
@rohitghadage3220
@rohitghadage3220 Жыл бұрын
Sir one question I use ContextAPI is it necessary to learn redux?
@coderdost
@coderdost Жыл бұрын
redux's main cocept is about reducer/action/dispatch... you can learn these by using useReducer hook. Redux is not needed. but many companies using it..
@hitsgamingparadise5243
@hitsgamingparadise5243 Жыл бұрын
Yes it's necessary to learn Redux ... You can learn Context API too ... Because most of the company use redux. You can see that in their job requirements list. Even the company that I am working in uses Redux in 3 applications and context api and redux in both in one.
@gauravdwivedi-h5t
@gauravdwivedi-h5t 6 ай бұрын
Do we really need useEffect in this code?
@adeelkhizar5793
@adeelkhizar5793 Жыл бұрын
Good job🎉
@prasadjoshi4009
@prasadjoshi4009 Жыл бұрын
How to use base64? Can you ad in form?
@coderdost
@coderdost Жыл бұрын
Base64 can be directly used in image SRC.. but if you want to cretae base64 fr some file use FileReader APi and use readAsDataUrl method
@coderdost
@coderdost Жыл бұрын
There will be examples of this on MDN etc sites
@code_kraft7
@code_kraft7 Жыл бұрын
why he used value={country} in line 22 of solution please reply
@ayskantmishra7377
@ayskantmishra7377 6 ай бұрын
Is this interview only relevant for freshers or 2 year experienced also can take benefit this interview
@harrapanman621
@harrapanman621 Жыл бұрын
How to practice for these kind of machine coding rounds
@coderdost
@coderdost Жыл бұрын
Its best to make small projects, only making features for practice will not be a good idea - projects cover multiple such things in 1 project.
@expectedreaction409
@expectedreaction409 Жыл бұрын
countries[country]..... i did not get it... help
@coderdost
@coderdost Жыл бұрын
Here they took country - as index of countries array. So this means selecting just one of array items
@atikhasan280
@atikhasan280 3 ай бұрын
It's BD not BG. Thank you, sir.
@osama-ki_masi-ki_pota7677
@osama-ki_masi-ki_pota7677 Жыл бұрын
He is from iter
@randisa3600
@randisa3600 4 ай бұрын
ARC Tutorial??
@jatinraval16
@jatinraval16 5 ай бұрын
it's very simple question;
@premprem4095
@premprem4095 Жыл бұрын
😢😢I experienced that the same question my interviewer asked. I am failed.
@Pankajdutt14
@Pankajdutt14 8 ай бұрын
Is this guy fresher ? 😂. Itna easy question react ka maine 3 sal me kisi ne nh poocha 😂
@akshayshrivastava6057
@akshayshrivastava6057 Жыл бұрын
i am also a fresher(completed btech in last july) should i can also be a part of your coding interview for react or angular? please let me know
@coderdost
@coderdost Жыл бұрын
Yes as soon as we will start it again. right now no plans for it in coming week. But hopefully we will try soon
@Factvideo014
@Factvideo014 Жыл бұрын
New challenge for me🤔
@abhisheknavgan6829
@abhisheknavgan6829 Ай бұрын
bro be giving me anxiety by that select tag error
@arsh10x
@arsh10x Жыл бұрын
Can I expect this type of questions for freshers?
@coderdost
@coderdost Жыл бұрын
Depends on company. But coding rounds can have such questions. In startups definitely they will ask practical problems
@honeydmaxx
@honeydmaxx 4 ай бұрын
ChatGPT can do this why should i?
@saurabhmaurya4199
@saurabhmaurya4199 2 ай бұрын
chatgpt need job or you??
@DevDivine
@DevDivine Жыл бұрын
I am also looking for a ReactJS job if you have any suggestions then please let me know.
@coderdost
@coderdost Жыл бұрын
If you dont have job experience go for anything.. even an internship. And don’t wait for bigger jobs.. right now there is slowdown in IT but next year or after that it will be again boom. You have to get as much as experience by that time
@ShoaibKhan-hy7zt
@ShoaibKhan-hy7zt Жыл бұрын
​@@coderdost I am having experience of 7 months in react js and searching new job how would I get it 😢?
@himanshusahu8220
@himanshusahu8220 Жыл бұрын
​@@ShoaibKhan-hy7zt Same 8 months of experience I have
@ShoaibKhan-hy7zt
@ShoaibKhan-hy7zt Жыл бұрын
@@himanshusahu8220 from where are you?
@himanshusahu8220
@himanshusahu8220 Жыл бұрын
@@ShoaibKhan-hy7zt Gwalior
@satyaranjanbehera
@satyaranjanbehera Жыл бұрын
i am trying this code but it is showing cities not defined
@coderdost
@coderdost Жыл бұрын
check the variable before the .cities must be having some issue
@pranav5532
@pranav5532 Жыл бұрын
Is this Question for Freshers or Experienced?
@coderdost
@coderdost Жыл бұрын
freshers
@taandavyt8826
@taandavyt8826 Жыл бұрын
Real mei to bhut tense situation hoga imagine krke hi fat rhi h sachme interview dunga to kya hoga
@coderdost
@coderdost Жыл бұрын
Unless you are going for a good startup job or senior level job - people will not take live code interview. They will give task to be done in some time limit. So it will be less tense. But it will be tense, so better to practice more.
@Yue-sx2em
@Yue-sx2em 4 ай бұрын
good job
@_ShaikhMohammedFazleHaqueAmin
@_ShaikhMohammedFazleHaqueAmin Жыл бұрын
I also want to participate in mock test how can I do that?
@coderdost
@coderdost Жыл бұрын
By applying on forms. Form is released many times. All updates are on our community page on KZbin
@sumit7473d
@sumit7473d Жыл бұрын
Please method se hota hai but forloop se batao pleas 🙏sir Reverse number put in same index number [12,23,45]=>[21,32,54]
@coderdost
@coderdost Жыл бұрын
without using Split() method ??
@sumit7473d
@sumit7473d Жыл бұрын
@@coderdost yes sir,without any predefined method.
@sumit7473d
@sumit7473d Жыл бұрын
@@coderdost cl(array.join(" ").split("").reverse().join("").split(" ").reverse())
@coderdost
@coderdost Жыл бұрын
I think you can just reverse the number by changing 10th places - and use a For loop on this : let remainder, reverse=0; let n = 321; while (n != 0) { remainder = n % 10; reverse = reverse * 10 + remainder; n = (n-remainder)/10; console.log({n, reverse, remainder}) } console.log(reverse)
@techy_kuldeep
@techy_kuldeep Жыл бұрын
import React from "react"; import "./App.css"; const countries = [ { name: "India", value: "IN", cities: ["Delhi", "Mumbai"] }, { name: "Pakistan", value: "PAK", cities: ["Karachi", "Lahore"] }, { name: "Bangladesh", value: "BAN", cities: ["Dhaka", "Bangladesh"] }, ]; function App() { const [cities, setCities] = React.useState([]); return ( { console.log(e.target.value); setCities(e.target.value.split(",")); console.log(cities); }} > {countries.map((item, index) => { return {item.name}; })} {cities.map((item, index) => { return {item}; })} ); } export default App;
@littleshorts6969
@littleshorts6969 Жыл бұрын
How to Share File Larger than 3 GB using webrtc
@coderdost
@coderdost Жыл бұрын
Never worked on this big file. There will be issues regarding reliability. How to deal with paused downloads and also how to deal with network failures.
@zakishaikh3201
@zakishaikh3201 Жыл бұрын
This is for freshers I thing
@PIYUSH-lz1zq
@PIYUSH-lz1zq Жыл бұрын
in codesandbox can we save the code there itself ??
@coderdost
@coderdost Жыл бұрын
Yes.
@penaidtaskmanagement
@penaidtaskmanagement Жыл бұрын
how to do this in angular, any angular dev in the house?
@coderdost
@coderdost Жыл бұрын
stackblitz.com/edit/angular-wfmpqq
@ManojKumar-us5fz
@ManojKumar-us5fz 9 ай бұрын
Stop calling Sir/Madam its interview
@Java_React_fullstack
@Java_React_fullstack 2 ай бұрын
kzbin.info/www/bejne/ham6epR9rpuCrNksi=JtspeOUs-ukpeHCr Reference material on graphql
@thanniruanilkumar8232
@thanniruanilkumar8232 Жыл бұрын
This interview fresher level or Experience level
@shoiabalam2170
@shoiabalam2170 8 ай бұрын
i think we are indian we should use hindi instead of english.
@rohantyagi8145
@rohantyagi8145 Жыл бұрын
Can anyone explain counteries[country].cities
@coderdost
@coderdost Жыл бұрын
i think coder has changed "country" as index values. so countries[0] is the object and in that object cities property is an array. which is being used
@sankalpkala9219
@sankalpkala9219 Жыл бұрын
Is this expected from a fresher for on campus placement?
@coderdost
@coderdost Жыл бұрын
campus placement are based on Percentage, grades, and some coding skills. but live coding is not expected mostly. coding test also will be generic programming and DSA type - not React etc.
@Dopamine432
@Dopamine432 Жыл бұрын
speak bro
@sohebshaikh3344
@sohebshaikh3344 Жыл бұрын
Mazaa Ayaa
React JS interview 2023 Live Coding Round (Mock)
18:33
Coder Dost
Рет қаралды 300 М.
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 172 МЛН
When u fight over the armrest
00:41
Adam W
Рет қаралды 32 МЛН
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 96 МЛН
[ Live ] React JS Interview 🤯 | Frontend UI Questions 🤒
1:12:35
Akshay Saini
Рет қаралды 372 М.
Javascript LIVE Coding Interview (Mock) #javascript #reactjs
31:22
Solving a practical intermediate react interview challenge
13:28
Web Dev Cody
Рет қаралды 99 М.
Beginner React.js Coding Interview (ft. Clément Mihailescu)
36:31
Ben Awad
Рет қаралды 2,2 МЛН
React Junior Developer Interview (Questions & Challenge)
1:06:19
Cosden Solutions
Рет қаралды 138 М.
3 Years Experienced React Interview
1:16:16
ProCodrr
Рет қаралды 90 М.
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 172 МЛН