𝐅𝐑𝐄𝐒𝐇𝐄𝐑'𝐒 𝐅𝐫𝐨𝐧𝐭 𝐄𝐧𝐝 𝐃𝐞𝐯𝐞𝐥𝐨𝐩𝐞𝐫 𝐈𝐧𝐭𝐞𝐫𝐯𝐢𝐞𝐰 𝐍𝐨 - 𝟎𝟕 | ReactJS, Javascript, HTML,CSS,Redux

  Рет қаралды 187,347

ReactJS Developer Interview Series

ReactJS Developer Interview Series

Күн бұрын

Пікірлер: 113
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Thanks for the interview, Sir. I cracked a company last week
@reactjsdeveloperinterview
@reactjsdeveloperinterview 6 күн бұрын
Congrats👏
@lalubadapandara8385
@lalubadapandara8385 2 күн бұрын
0:30 min Mai deekh Raha hai bhai tu😂😂😂😂 alag email se comment karleta
@AmirKhan-uh5vd
@AmirKhan-uh5vd Күн бұрын
@@reactjsdeveloperinterview Thank you Sir
@shibakarmakar7030
@shibakarmakar7030 Ай бұрын
It's not a real interview. It's a self interview but he delivered a good example interview.
@sumitjadhav1054
@sumitjadhav1054 13 күн бұрын
how did you know that it wasn't a real interview?😅
@aaishteru6709
@aaishteru6709 12 күн бұрын
​@@sumitjadhav1054Interviewer didn't seem to be experienced enough as he's thinking much than usual to ask any question
@sumitjadhav1054
@sumitjadhav1054 10 күн бұрын
@@aaishteru6709 Thanks got it 👍🏻
@subsstriescoding
@subsstriescoding 3 күн бұрын
yeah, this is a practice interview
@osho143
@osho143 Ай бұрын
I will watch interviews from now on instead of watching tutorials. Thank you for uploading it as a post. For freshers, its not just a post its a potential unlocker video. Really helpful for upscaling the base knowledge. Respect++
@Vivek-gt4gm
@Vivek-gt4gm Ай бұрын
//Marge two string let str1 = 'Hello' let str2 = 'World' //output = HWeolrllod; let bag = ''; let i =0;j=0; while(i
@deepakbisht5149
@deepakbisht5149 Ай бұрын
in the second condition use j
@Ashwin29047
@Ashwin29047 Ай бұрын
let str1 = 'Hello' let str2 = 'World' //output = HWeolrllod; let ans=""; for(let i=0;i
@daybot1634
@daybot1634 Ай бұрын
No need two variables i and j, lmao. You just check if (str1[i] && str2[i]) are undefined then exit loop.
@_Fancy_Bear_
@_Fancy_Bear_ Ай бұрын
Don't take it hard solve like a puzzle just split up the problem and solve the splited problem in code and merge the problem and merge the code boom you got it... in merge string just split problem two concate alternate string so you can use loop for minimum length string after run balance extra string we will concate it to final result using substring method...
@somaprakashrath1
@somaprakashrath1 Ай бұрын
Bro.. the question of == and === came in the morning interview. Thanks 🤗
@gwwyy_
@gwwyy_ Ай бұрын
Dude why do we use === Tell me
@somaprakashrath1
@somaprakashrath1 Ай бұрын
@@gwwyy_ It checks if two operands are equal in the both value and in the type.
@gwwyy_
@gwwyy_ Ай бұрын
@@somaprakashrath1 ok bro thaku
@somaprakashrath1
@somaprakashrath1 Ай бұрын
@@gwwyy_ wlcm bro. And Be successful in your life ☺️
@VishuuuuVlogs
@VishuuuuVlogs Ай бұрын
Where did you apply, lol I'm not getting any interview calls
@journalslastpage
@journalslastpage Ай бұрын
20:00 Merge String alternately let s1 = "Hello123456"; let s2 = "World"; let finalStr = ""; for (let i = 0; i < (s1.length > s2.length ? s1.length : s2.length); i++) { if (i < s1.length) finalStr += s1.charAt(i); if (i < s2.length) finalStr += s2.charAt(i); } console.log(finalStr);
@James_Bond627
@James_Bond627 20 күн бұрын
function mergeAlternatively(str1, str2) { let result = ''; const maxLength = Math.min(str1.length, str2.length); for (let i = 0; i < maxLength; i++) { result += str1[i] + str2[i]; } return result; } const str1 = "hello"; const str2 = "world 1234"; const merged = mergeAlternatively(str1, str2); console.log(merged);
@snehalprajapati7286
@snehalprajapati7286 19 күн бұрын
Appreciated 👍🏻 ​@@James_Bond627
3 күн бұрын
" i < (s1.length > s2.length ? s1.length : s2.length)" bro instead of this can't we just write "i < (s1.length)", i already run it showing no error, please tell why you did that ??? thank you.
@journalslastpage
@journalslastpage 3 күн бұрын
for the case when second string is longer than the first string. The logic of the for loop I wrote runs for the length of the largest string, so that all the characters from both the strings are traversed.
@saketshinde7871
@saketshinde7871 Ай бұрын
Fantastic interview! Really helpful...
@shujanomaan4011
@shujanomaan4011 9 күн бұрын
Bhai meko dekh ke darr lag raha abb interview Dene se 😭😭
@rehankarol7453
@rehankarol7453 Ай бұрын
const array = [1,[3,4],[6,[7,8]]] const stack = [...array] const res =[] while(stack.length){ const pope = stack.pop(); if(Array.isArray(pope)){ stack.push(...pope) }else{ res.push(pope) } } console.log(res.reverse()) //Flat array
@Chiby5570
@Chiby5570 Ай бұрын
const str1 = "abc2"; const str2 = "xyz13"; function addString(str1, str2) { let minStr = Math.min(str1.length, str2.length); let res = ""; for (let i = 0; i < minStr; i++) { res += str1[i]; res += str2[i]; } str1.length > str2.length ? (res += str1.substring(minStr, str1.length)) : (res += str2.substring(minStr, str2.length)); return res; } const res = addString(str1, str2); console.log(res);
@SCRIPTSAG
@SCRIPTSAG Ай бұрын
It’s good but this is planned interview i think but this is good way to present himself
@theinfinityx2236
@theinfinityx2236 22 күн бұрын
I guess Passing null will cause an error, because i guess react expects the dependency array to be an array or to none so Null won't be valid for it! The no dependency will cause it to run after every render and empty -once on mount
@rishiraj2548
@rishiraj2548 Ай бұрын
Thanks
@shivamdeshwal3563
@shivamdeshwal3563 14 күн бұрын
Bhai string marge wale question bhut aasan tha like 5 min me ho gya tha and bhut simple logic bhi tha, aapne kuch jada hi hard kar diya use or gor se deekho uska ans fir bhi glt hi aaya hai extra 'o' aaya hai usme , but bo bat hai ki thoda pressure environment ki bat ho jata hai, barna aap bhi bad me krke dekhte to badi aasani se ho jata
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Okay bhai, Abbi toh practice kr rha hu
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Okay bhai, Abbi toh practice kr rha hu
@xyzatin
@xyzatin Ай бұрын
Thanks for sharing. I love Ladakh. Good luck with your YT channel.
@al-baghdadi7914
@al-baghdadi7914 Ай бұрын
10:35 , it will give true
@-Puligantimahendar
@-Puligantimahendar Ай бұрын
finest one keep doning thankyou
@zee8320
@zee8320 Ай бұрын
function mergeStrings(param1, param2) { let mergeStr = ""; let maxlength = Math.max(param1.length, param2.length); let suffix = ""; let sortlength = Math.min(param1.length, param2.length); if (param1.length < param2.length) { suffix = param2.slice(param1.length, param2.length); } else { suffix = param1.slice(param2.length, param1.length); } for (let i = 0; i < sortlength; i++) { mergeStr = mergeStr.concat(param1[i], param2[i]); } if (suffix != "") { mergeStr = mergeStr.concat(suffix); } return mergeStr; } let str1 = "hello"; let str2 = "worldABC";
@samK12_18
@samK12_18 Ай бұрын
20:00 const str1 = "Hello"; const str2 = "World"; function merge2Strings() { let arr1 = [...str1]; let arr2 = [...str2]; let i = 0; let length = arr1.length > arr2.length ? arr1.length : arr2.length; let res = ""; while(i < length) { if(arr1[i]) res += arr1[i] if(arr2[i]) res += arr2[i] i++; } return res; } console.log(merge2Strings());
@toonvibescartoon
@toonvibescartoon 7 күн бұрын
hey , how much lpa can we expect from this interview ????
@Creepycome
@Creepycome 20 күн бұрын
I'm really scared. What if don't come up with the answer in the interview😢
@reactjsdeveloperinterview
@reactjsdeveloperinterview 20 күн бұрын
It's fine! You will only improve once you face such type of interviews.
@bholaamahto
@bholaamahto Ай бұрын
This interview was for freshers or experience?
@reactjsdeveloperinterview
@reactjsdeveloperinterview Ай бұрын
Fresher
@ayanchatterjee7599
@ayanchatterjee7599 17 күн бұрын
sir can u tell me how much java script do i have to do to before learning react
@GOKodes
@GOKodes Ай бұрын
let arr = [[1, 2,[7,8]], [3, 4], [5, 6]] function flatArray(arr) { let res = [] for (let i = 0; i < arr.length; i++){ if (Array.isArray(arr[i])) { res.push(...flatArray(arr[i])) } else { res.push(arr[i]) } } return res } console.log(flatArray(arr));
@HarshJipkate
@HarshJipkate 4 күн бұрын
easy solution for merge string bro - const a = "Hello" const b = "World 1234" var ans = '' for(let i = 0; i < Math.max(a.length, b.length); i++){ if(i < a.length){ ans += a[i] } ans += b[i] } console.log(ans)
@tinolbhoyar4646
@tinolbhoyar4646 29 күн бұрын
Isn't the interview bit long 20 30 mins is enough
@abbasali9730
@abbasali9730 21 күн бұрын
no according to this job market it is sufficient
@Purnachandhar-S
@Purnachandhar-S 14 күн бұрын
his voice is very loud and clear ,,,what is the headphones his using?
@quinx9444
@quinx9444 7 күн бұрын
razer heaphones it is
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
I was using Razer BlackShark V2 X
@viziergaming7553
@viziergaming7553 2 күн бұрын
What package they offered you?
@paulhetherington3854
@paulhetherington3854 Ай бұрын
Look - I wrote - the word "Function?" It don't - give any f(x) -- TTY-- you only!
@ajithmarley6040
@ajithmarley6040 Ай бұрын
Can you provide the file that he is working on
@_Fancy_Bear_
@_Fancy_Bear_ Ай бұрын
const str1='hello'; const str2='world1234'; let str3=''; const Merge = () =>{ const min=Math.min(str1.length,str2.length) console.log(min); for(let i=0;istr2.length) { str3+=str1.substring(min); } else{ str3+=str2.substring(min); } } console.log(Merge(str1,str2)) console.log(str3); Merge String alternatively 20:00
@levisplay6581
@levisplay6581 Ай бұрын
Can anyone explain this? 44:52
@al-baghdadi7914
@al-baghdadi7914 Ай бұрын
While(true){ console.log('over hear..'); }
@leviackerman3545
@leviackerman3545 Ай бұрын
What was the package for this job interviewed for?
@Codewithkanha
@Codewithkanha 20 күн бұрын
50 cr
@debaduttadey1609
@debaduttadey1609 7 күн бұрын
hello sir i wnat know the ans of sum((2)(3)) sum(2,3)
@KrishJhawalta
@KrishJhawalta 9 күн бұрын
Which keyboard he is using?
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Redragon K617 Fizz
@Lordwisetech
@Lordwisetech 29 күн бұрын
Omo 😂😂😂God help me
@cecilselormamediku9560
@cecilselormamediku9560 29 күн бұрын
Guy 😂
@thebocksters2756
@thebocksters2756 7 күн бұрын
Is that english ?
@techfab871
@techfab871 Ай бұрын
What was the package for this interview
@Jha.rishabhhh
@Jha.rishabhhh 12 күн бұрын
₹101k
@Gogeta_46
@Gogeta_46 Ай бұрын
After watching this interview I'm scared I'm in 1st year of college and this looks so hard furthermore it's for freshers and they are asking so many complicated questions
@iamshaey8440
@iamshaey8440 Ай бұрын
I can teach you
@reactjsdeveloperinterview
@reactjsdeveloperinterview 28 күн бұрын
It's natural to feel like that! You have time in your hand. Just try to improve by 0.5% everyday.
@Gogeta_46
@Gogeta_46 28 күн бұрын
@@reactjsdeveloperinterview I just took addmission in computer science, so do I have enough time? And if yes then please please help me a bit I have so many questions to ask
@paraskalura1662
@paraskalura1662 20 күн бұрын
Salary??
@pragtichya_shikhravar
@pragtichya_shikhravar Ай бұрын
Dolly Chai Wala Nothing Do this .😅😢
@gareer2436
@gareer2436 Ай бұрын
can someone explain 44:39 ?
@PrEsHpEeSh
@PrEsHpEeSh Ай бұрын
Please someone explain this. I think the interviewer was just asking to provide another currying function?
@PrEsHpEeSh
@PrEsHpEeSh Ай бұрын
This is what I believe would work... function sum(a, b) { if (b !== undefined) { // If the second argument is provided, return the sum directly return a + b; } else { // If only one argument is provided, return a function that takes the second argument return function(b) { return a + b; }; } }
@journalslastpage
@journalslastpage Ай бұрын
47:05 Flatten Array without in built functions const arr = [[1, 2], [3, 4], [5, 6], [7, 8], [9, 0]]; let resultArr = []; function arrayFlatten(val) { if (Array.isArray(val)) val.forEach(arrayFlatten); else resultArr.push(val); return resultArr; } console.log(arrayFlatten(arr));
@rudraavtar7754
@rudraavtar7754 23 күн бұрын
What will be the package If you selected after this level of fantastic interview??? Please reply
@abbasali9730
@abbasali9730 21 күн бұрын
3lpa
@techgaming252
@techgaming252 20 күн бұрын
2.15 lpa
@49_princemaurya
@49_princemaurya 22 күн бұрын
2:17 what will function return function fun1() { return 2 } function fun2() { return 4 } let a = (fun1(), fun2()); console.log(a); The comma operator is used here: (fun1(), fun2()), The comma operator executes both functions, but only the result of the last expression is returned. In this case: 1. fun1() is called first and returns 2, but this result is ignored. 2. fun2() is called next and returns 4, which is the value assigned to 'a'.
@surenkumars3181
@surenkumars3181 Ай бұрын
bro can you tell me the headphone model bro... really helpful.......
@J-hf8ng
@J-hf8ng Ай бұрын
Razer BlackShark v2 i guess
@surenkumars3181
@surenkumars3181 Ай бұрын
@@J-hf8ng thanks bro... I find it using Amazon scanner.....
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Razer BlackShark V2 X
@reactjsdeveloperinterview
@reactjsdeveloperinterview Ай бұрын
Those who want to give mock tests can mail on practicemocks223@gmail.com I have given around 100+ interviews(30+ uploaded) and accordingly your interview will be taken. Feedback will be given one on one in the way you can give better interviews in the near future. NOTE: Interview schedule availability between 10 am and 3 pm due to my corporate schedule timings between 3 pm to 11.30 pm IST
@aysuh-n3g
@aysuh-n3g Ай бұрын
Damn man its illogical to say that == not check data type just learn about type corecion.
@GG_SYMBIOTE
@GG_SYMBIOTE Ай бұрын
In JavaScript, the == operator performs a comparison between two values after converting them to a common type. This process is known as type coercion. Because == doesn't check the data type(your answer goes here), it can sometimes lead to unexpected results.
@aysuh-n3g
@aysuh-n3g Ай бұрын
@@GG_SYMBIOTE claps
@GG_SYMBIOTE
@GG_SYMBIOTE Ай бұрын
@@aysuh-n3g not my words, from chatGPT, give it a shot, learning the difference
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Sure, I'll learn that. I'd suggest you to check some of the explanations, how == and === works
@ravindrasingh-cw9df
@ravindrasingh-cw9df 14 сағат бұрын
amir bhai linkedin ID do apna
@DheerajSingh-n3x
@DheerajSingh-n3x 21 күн бұрын
😢itne. Tagde laval pr. Interview hota hi ni fresher ka pgl
@AmirKhan-uh5vd
@AmirKhan-uh5vd 6 күн бұрын
Hota hai bro 🙃
@ashishkumar-jo7cj
@ashishkumar-jo7cj Ай бұрын
Check my code is this correct let str1 = "Hello"; let str2 = "World 1234" let out = "HWeolrllod 1234" function mergeString() { let res = ''; let combineLength = str1.length+str2.length; for(i=0; i
@Om.Dongaonkar
@Om.Dongaonkar 10 күн бұрын
var op = ' '; var a = 'HELLO'; var b = 'WORLD1234'; for(var i = 0; i < a.length || i < b.length; i++){ if (i < a.length){ op += a[i]; } if(i < b.length){ op += b[i]; } } console.log(op);
@paulhetherington3854
@paulhetherington3854 Ай бұрын
/2''pxn rtv II vkx ant < ar br pjz < sfr ba rwch < int=cjx mol/ /~8x tmp rayz wb ar br pjs < rwch 2''pxn / /ba HUD ~8x vw < ar br alien tyl chp < par rwch h6:h2> mol i.e. cnnon/ /+ pachf-stp + df=vkx ant - at ar br pjs - sfr cjx mol - alien zfr ba - 8x tmp rayz wb/
@rehankarol7453
@rehankarol7453 Ай бұрын
const str1 = "Hello" const str2 = "Pkew" console.log(str2.charAt(0)) const max = Math.max(str1.length,str2.length) let res= "" for(let i=0;i
Beginner React.js Coding Interview (ft. Clément Mihailescu)
36:31
Ben Awad
Рет қаралды 2,1 МЛН
GIANT Gummy Worm Pt.6 #shorts
00:46
Mr DegrEE
Рет қаралды 10 МЛН
Bend The Impossible Bar Win $1,000
00:57
Stokes Twins
Рет қаралды 49 МЛН
Players vs Corner Flags 🤯
00:28
LE FOOT EN VIDÉO
Рет қаралды 33 МЛН
Harsh Truth of Java in 2024! Ft. Ultimate Java Developer @Telusko
28:46
Coding Interviews Be Like
5:31
Nicholas T.
Рет қаралды 6 МЛН
Fastest way to become a Web Developer
9:47
Sahil & Sarra
Рет қаралды 668 М.
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 419 М.
Frontend ReactJS fresher mock interview | Ep.5
32:53
Semicolon Guy
Рет қаралды 98 М.
SWE Stop Learning - The Rise Of Expert Beginners
49:09
ThePrimeTime
Рет қаралды 307 М.
React Junior Developer Interview (Questions & Challenge)
1:06:19
Cosden Solutions
Рет қаралды 129 М.
GIANT Gummy Worm Pt.6 #shorts
00:46
Mr DegrEE
Рет қаралды 10 МЛН