Тёмный

React js developer interview coding Round |  

Mnc Interview
Подписаться 10 тыс.
Просмотров 98 тыс.
50% 1

❤️credit : ‎@procodrr
coding Round react js developer,
html css interview questions,
Java developer interview,
javascript interview questions,
react js developer interview questions,
fresher interview,
fresher javascript interview,
fresher React js developer,
front end developer interview questions,
#frontenddeveloper #backend #code #coding #html #css3 #javascript #java
#fresherinterview #development #mncinterview #coding #reactjs
#fullstack

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 80   
@sudershansingh9490
@sudershansingh9490 5 месяцев назад
When i was a fresher these questions felt challenging now they look so silly :D
@sadiqaminzai1793
@sadiqaminzai1793 Месяц назад
During the interview, the explanation provided by the interviewer could have been clearer. In the first console line, '5' + 3 results in '53' because the + operator performs string concatenation. In the second console line, '5' - 3 results in 2 because JavaScript is a loosely typed language, where the string '5' is implicitly converted to a number, allowing the - operator to perform an arithmetic subtraction.
@Vivek-zy4xs
@Vivek-zy4xs 8 дней назад
yes i agreed with you
@gowthamip6688
@gowthamip6688 4 месяца назад
+"12" instead of this we can write "12"-0 It also convert this value as a number
@manurockstar7553
@manurockstar7553 4 месяца назад
interview ❌ class ✅
@saubhagyaranjanmallick3305
@saubhagyaranjanmallick3305 Месяц назад
Interview questions u may find in google but not details explaination
@maheshkuntumalla3880
@maheshkuntumalla3880 Месяц назад
😂😂😂😂
@RiteshKumar-hs3it
@RiteshKumar-hs3it 4 месяца назад
Sir can you explain why you mentioned Selected? bcoz i dont think she will be selected if its an actual interview
@alphabetdot6613
@alphabetdot6613 5 месяцев назад
0:27 53 and 2 i am saying this without running the code, i guess beginners should read Head First JS book it's really good book for basics
@shorts6699
@shorts6699 4 месяца назад
one day you ll show ur talent to everyone, just take it as this is also one of the practice.....good luck ma
@mncinterview5446
@mncinterview5446 4 месяца назад
❤️
@sky9k-unlimited
@sky9k-unlimited 28 дней назад
ma? wait.. is this video very old and she is your mummy?
@PranithKanchan
@PranithKanchan 27 дней назад
@@sky9k-unlimited its a slang
@Abhinav-gr1bq
@Abhinav-gr1bq 21 день назад
@@sky9k-unlimited haha
@Vivek-zy4xs
@Vivek-zy4xs 8 дней назад
@@sky9k-unlimited 🤣🤣🤣
@sumanths5640
@sumanths5640 5 месяцев назад
HEllo word const arr = ["susman", "schahs", "dcnh","chuyd"]; let i = 0; function hello(arr){ if(i > arr.length-1){ i = 0; hello(arr) }else{ document.getElementById("header").innerHTML = (arr[i]); i++ } }
@badalhalder-mx5nv
@badalhalder-mx5nv 5 месяцев назад
const names = ['Badal', 'Dipa', 'Farju', 'Anik', 'Sourof']; const heading = document.getElementById('hello'); let currentIndex = 0; const changeHeading = () => { // Change the heading's textContent to the current name in the array heading.textContent = names[currentIndex]; // Increment the index for the next click, and loop back to the beginning if necessary currentIndex = (currentIndex + 1) % names.length; } heading.addEventListener('click', changeHeading);
@yagyeshdubey4261
@yagyeshdubey4261 21 день назад
Agar interviewer has jaye interview me to smjh jao ho gya kaam tamaam interview ka 😂
@bazylcossac_5793
@bazylcossac_5793 Месяц назад
what the fuck is happening here
@mehuldhimmar8211
@mehuldhimmar8211 7 дней назад
good
@vaibhavmatere18
@vaibhavmatere18 22 дня назад
I like how patiently he answered everything Kudos
@The_Honeyman
@The_Honeyman 5 месяцев назад
javascript. js (file) const arr=["ABC", "Joy", "Raju"]; let count=0;//count clicks document. getElementById("hello"). addeventListener("click", function () { if(count
@SiddhantGelye
@SiddhantGelye 5 месяцев назад
const arr = ["test1", "test2", "test3", "test4"]; let count = 0; const hello = document.querySelector("#hello"); hello.addEventListener("click", () => { console.log("clicked"); if (count > 3) { count = 0; } hello.textContent = arr[count]; count++; });
@fitnessforlifetamil3936
@fitnessforlifetamil3936 Месяц назад
Instead of keeping the if condition you can directly use count = count%arr.length it will help to iterate over the array again and again
@sarimiqbal
@sarimiqbal Месяц назад
But the question is, how did she get selected? If there were a boy in her place, I don't think he would be treated the same
@wildking8607
@wildking8607 20 дней назад
She got selected because she is a girl 🤦
@sambotsector101
@sambotsector101 7 дней назад
Please don't misunderstand I am a girl and gave several interview just can't answer 1-2 answers still not selected so chill... 😂
@prashanthk2339
@prashanthk2339 3 месяца назад
i can literally answer all the question but i am still jobless i dont know what to do
@vinayaknaik9884
@vinayaknaik9884 3 месяца назад
Better to create advanced react or angular projects and attractive portfolio
@mohankkkrishna8036
@mohankkkrishna8036 5 месяцев назад
I am good in front end how will I got interviews
@mncinterview5446
@mncinterview5446 5 месяцев назад
fill google form link another video description here and try to mock interview
@jacksoyer556
@jacksoyer556 Месяц назад
God this interview was unbearable, how am i unemployed and she got a job import React, {useState} from 'react' const ChangeName = () => { const [Name, setName] = useState("Dude"); const [Counter, setCounter] = useState(0); const NameArr = ["Amar", "Akbar", "Anthony"] const count = 2; const HandleName = () =>{ if(Counter
@rickythecreator4777
@rickythecreator4777 Месяц назад
Why did you use this much of code. We can complete it by 2 lines. LoL 😂😂😂😂
@sambotsector101
@sambotsector101 7 дней назад
This code is useful for React.js​@@rickythecreator4777
@WebBlows
@WebBlows 4 месяца назад
05:17 He said, it will convert either into number or into string, Which is totally worng, Interviewer either should say, check and reserch why and how its hapeening, he should not fire in the air.
@abhisekhbarman1431
@abhisekhbarman1431 4 месяца назад
Isko select kia tho main to selected hu bhai . Bakar ka main pressure la raha tha 🤣
@janjarlapranay2231
@janjarlapranay2231 4 месяца назад
😆😆
@NO_N500
@NO_N500 4 месяца назад
😂😂
@chiraglegend2670
@chiraglegend2670 Месяц назад
Bhai wo ladki hai
@pajjurinikitha7827
@pajjurinikitha7827 4 месяца назад
This all were mock interviews not is just for practise not an real
@abhinavsharma2630
@abhinavsharma2630 4 месяца назад
How she is selected. She doesn't know coercion
@chitammaharani8551
@chitammaharani8551 Месяц назад
Commitment
@indrasishbanerjee3602
@indrasishbanerjee3602 Месяц назад
Const array = [“a”,”b”,”c”,”d”] Const h1 = document.get elementbyid(“h1”) Var index = 0 function changename(){ Index= index === array.length -1 ? 0 : index+1 h1.textcontent = array[index] } h1.addeventlistener(“click”, changename) I wonder how those are get placed think this channel is just an institute
@williamt4271
@williamt4271 5 месяцев назад
She will be a good developer soon.
@soumenkamila5266
@soumenkamila5266 4 месяца назад
Needs to practice more. Best of luck
@Pawan_beniwal9694
@Pawan_beniwal9694 4 месяца назад
That is a video only created for like an interview that's it
@onlymovie-8269
@onlymovie-8269 2 месяца назад
Anyone who support me to give react js developer job
@KevinBaliev
@KevinBaliev 4 месяца назад
i wish interview questions to be same in my country xD
@WebBlows
@WebBlows 4 месяца назад
Now Again 14:00 NaN === NaN gives false : His reasoning because it can come from any string. okay boss lets try with same string then, its should give you true then eright? let str='Hello' console.log(+str == +str ) // always false console.log(+str === +str ) // always false IDK know the actual reason, but commenting to know the exact reson and asking these type of interviewers not ask these type of questions or atleast give proper reasoning, or ask candidate to research about it.
@SiddhantGelye
@SiddhantGelye 5 месяцев назад
const arr = ["test1", "test2", "test3", "test4"]; let count = 0; const hello = document.querySelector("#hello"); hello.addEventListener("click", () => { console.log("clicked"); if (count > 3) { count = 0; } hello.textContent = arr[count]; count++; });
@tabishakhtar9803
@tabishakhtar9803 5 месяцев назад
Instead of hardcoding the array length like if(count > 3), you can use if(count > arr.length - 1), by that way even if you add more names to the array, your code wont fail. Just a small improvement, apart from that your code works.
@watchnow4211
@watchnow4211 5 месяцев назад
​@@tabishakhtar9803❤
@Zach-yr1uh
@Zach-yr1uh 4 месяца назад
const arr = ["Name1", "Name2", "Name3", "Name4"]; let i = 0; const title = document.getElementById("title"); title.addEventListener('click', ()=>{ if(i < arr.length){ title.textContent = arr[i]; i++; }else{ i = 0; title.textContent = "Hello World"; } });
@rajeshkrchaudhary3245
@rajeshkrchaudhary3245 4 месяца назад
console.log(11) Why first is true and second is false because true is equal to 1
@divyapriya4324
@divyapriya4324 4 месяца назад
11 false...so ans is false
@sky9k-unlimited
@sky9k-unlimited 28 дней назад
Interview tha ya coaching session? upar se selected bhi.. 😂
@theefullstackdev
@theefullstackdev 26 дней назад
At finally how to get print the array names in loop
@ashishtiwari3162
@ashishtiwari3162 5 месяцев назад
bhai ye itna easy interview kon leta hai 😂😂 Mere se kitna tough questions pucha tha 🤐🤐
@alkabhardwaj4314
@alkabhardwaj4314 4 месяца назад
Ky ky poucha th esa .. jo tmhe itna tough lga
@alphabetdot6613
@alphabetdot6613 5 месяцев назад
Help full Video for preperations
@mncinterview5446
@mncinterview5446 5 месяцев назад
Keep watching
@Ritikjaiin
@Ritikjaiin 4 месяца назад
these are basic question these type question they are asking me as in not even as fresher round
@rjocampo921
@rjocampo921 5 месяцев назад
if one is string then one is number.. in order for your to have numerical value.. you must put Number("5") + 3 UNLESS just a simple string
@chessop3366
@chessop3366 3 месяца назад
This class going on
@alphabetdot6613
@alphabetdot6613 5 месяцев назад
4:12 1st one true bcz it's equal to, and 2nd one is false bcz it's strict equal to, to get true in === two value has to be same type and same value while for == if two value has different type then it's try to convert into same type
@AtharAli-ty1ej
@AtharAli-ty1ej 4 месяца назад
Plz dear sir provided interview in hindi
@icetmzz9074
@icetmzz9074 4 месяца назад
where do you get selected with this level of knowledge ?
@ankitnishad1229
@ankitnishad1229 4 месяца назад
itna hallu question me selection
@icetmzz9074
@icetmzz9074 4 месяца назад
sorry but sister dont even know how to declare variable what does it means to be selected ?
@SahibzadaHumza
@SahibzadaHumza 5 месяцев назад
Flutter interview?
@MdMinhaz-h4e
@MdMinhaz-h4e Месяц назад
const arr = ["Hi", "raju"] let index = 0 document.getElementById("helloid").addEventListener("click", function(){ const studentsName = document.getElementById("helloid") studentsName.textContent = arr[index] index++; if(index >= arr.length){ index = 0; } })
@keanallen
@keanallen 4 месяца назад
const arr = ["A","B","C","D"] const target = document.getElementById("hello") target.onclick = function(){ let findIndex = arr.indexOf(this.innerHTML) let nextIndex = findIndex if(findIndex < 0 || findIndex >= arr.length-1){ nextIndex = 0 }else{ nextIndex++ } target.innerText = arr[nextIndex] }
@kasivishva3183
@kasivishva3183 Месяц назад
If this was an interview.I will clear,Easily
Далее
10 JavaScript Interview Questions You HAVE TO KNOW
13:41
МОЮ ТАЧКУ РАЗБИЛИ...!
39:06
Просмотров 366 тыс.
2.5 Years Experienced Best JavaScript Interview
2:03:06
Просмотров 269 тыс.
Coding Interviews Be Like
5:31
Просмотров 6 млн
React JS interview 2023 Live Coding Round (Mock)
18:33
Просмотров 297 тыс.