Hello Guys ๐
Planning to make an App for the Interview preparation Questions & Answers.
It'll be open source, anyone can contribute.
It'll be developed from scratch using ReactNative, you'll learn lot's of things.
๐ You are free to share any ideas.
If anyone is interested DM me. ๐
๐ @Mr_RXN (Dev Roshan)
โ ๏ธ Note: I'll not be paying & taking any charges to anyone, every content will be free ๐ค for everyone.
Top contributors will get the rewards. ๐
Planning to make an App for the Interview preparation Questions & Answers.
It'll be open source, anyone can contribute.
It'll be developed from scratch using ReactNative, you'll learn lot's of things.
๐ You are free to share any ideas.
If anyone is interested DM me. ๐
๐ @Mr_RXN (Dev Roshan)
โ ๏ธ Note: I'll not be paying & taking any charges to anyone, every content will be free ๐ค for everyone.
Top contributors will get the rewards. ๐
โค13๐7
Frontend Interview Questions ๐ฎ๐ณ | ReactJs | NodeJs | JavaScript | HTML/CSS
What will be the Output?
var a={}, b='123', c=123;
a[b]='b';
a[c]='c';
console.log(a[b]);
------------------------------------------
The Right Answer is : C
a[b]='b';
a[c]='c';
console.log(a[b]);
------------------------------------------
The Right Answer is : C
๐4
๐ Someone shared his Interview Experience of Deloitte
Company
๐Deloitte Consulting - USI (Deloitte Digital)
Position
Consultant
Years of Experience
3
Company Location
Bangalore
Interview Experience
There were 3 rounds:
1) React & JavaScript round | 90 mins
- Asked to create a todo application
- Two APIs were given: GET to get all the existing todo list and display it in a table format
POST : to add new todo
- Each row should have 2 icons : edit and delete.
- After that interviewer asked to perform 2 task : sort the table based on todo task name (ascending order) and then there was a button on click of which the table should get sorted acc to the todo task whose due date is approaching. 70 mins for the task.
- Some JS questions like: Difference between forEach & Map, prototypal inheritance, diff between spread and rest op.,
2) JS & HTML/CSS round | 60-70 mins
Questions like:
-Sort an array without using inbuilt function and only 1 loop
- Remove duplicate integers from array of integers
- Find 2nd maximum number from array of integers with duplicate numbers
- Write a function to create a prototype for adding 3 numbers
- Questions based on object.freeze
- var, let, const, hoisting
- promises, event loop
- closures, setTimeout
- What happen if we don't use docType
- What happen if we declare footer first then aside then header tag in an html file
- flexbox, box shadow, aligning questions, transition, animation
3) Techno managerial round | 45 mins
- Questions based on Agile like difference between agile and waterfall
- What you like about agile development
- what will you like to change while working in agile development mode
- Your biggest success/achievement
- Your weakness which made you better developer
- Describe your projects in detail and what challenges you faced and how you resolved
- 2-3 puzzle questions
Company
๐Deloitte Consulting - USI (Deloitte Digital)
Position
Consultant
Years of Experience
3
Company Location
Bangalore
Interview Experience
There were 3 rounds:
1) React & JavaScript round | 90 mins
- Asked to create a todo application
- Two APIs were given: GET to get all the existing todo list and display it in a table format
POST : to add new todo
- Each row should have 2 icons : edit and delete.
- After that interviewer asked to perform 2 task : sort the table based on todo task name (ascending order) and then there was a button on click of which the table should get sorted acc to the todo task whose due date is approaching. 70 mins for the task.
- Some JS questions like: Difference between forEach & Map, prototypal inheritance, diff between spread and rest op.,
2) JS & HTML/CSS round | 60-70 mins
Questions like:
-Sort an array without using inbuilt function and only 1 loop
- Remove duplicate integers from array of integers
- Find 2nd maximum number from array of integers with duplicate numbers
- Write a function to create a prototype for adding 3 numbers
- Questions based on object.freeze
- var, let, const, hoisting
- promises, event loop
- closures, setTimeout
- What happen if we don't use docType
- What happen if we declare footer first then aside then header tag in an html file
- flexbox, box shadow, aligning questions, transition, animation
3) Techno managerial round | 45 mins
- Questions based on Agile like difference between agile and waterfall
- What you like about agile development
- what will you like to change while working in agile development mode
- Your biggest success/achievement
- Your weakness which made you better developer
- Describe your projects in detail and what challenges you faced and how you resolved
- 2-3 puzzle questions
โค12๐9
Hello everyone!
I am opening up 1:1 sessions for everyone on my network who wish to connect with me for any help or guidance around my areas of expertise.
Pick a time slot at your convenience from
https://topmate.io/roshan and weโre good to go!
Looking forward to have insightful and interesting conversations with you guys!
- Dev Aditya (Dev Roshan)
.
I am opening up 1:1 sessions for everyone on my network who wish to connect with me for any help or guidance around my areas of expertise.
Pick a time slot at your convenience from
https://topmate.io/roshan and weโre good to go!
Looking forward to have insightful and interesting conversations with you guys!
- Dev Aditya (Dev Roshan)
.
๐5๐ฉ1
โ ๏ธ Hi @All
Some people from "Bytescare" has reported the India's biggest Developer community groups in Telegram purposely.
They may report this group too, so we'll be moving to our Discord ๐ค channel for the backup.
๐ You can Join the Discord Channel
๐ https://discord.gg/AGvK4KVHjG
๐๐
.
.
.
Some people from "Bytescare" has reported the India's biggest Developer community groups in Telegram purposely.
They may report this group too, so we'll be moving to our Discord ๐ค channel for the backup.
๐ You can Join the Discord Channel
๐ https://discord.gg/AGvK4KVHjG
๐๐
.
.
.
Discord
Join the Frontend Interview Preparation ๐ฎ๐ณ | JavaScript | NodeJs Discord Server!
Check out the Frontend Interview Preparation ๐ฎ๐ณ | JavaScript | NodeJs community on Discord - hang out with 165 other members and enjoy free voice and text chat.
Frontend Interview Questions ๐ฎ๐ณ | ReactJs | NodeJs | JavaScript | HTML/CSS pinned ยซHello everyone! I am opening up 1:1 sessions for everyone on my network who wish to connect with me for any help or guidance around my areas of expertise. Pick a time slot at your convenience from https://topmate.io/roshan and weโre good to go! Lookingโฆยป
๐12๐ฉ1
choose the answer
Anonymous Quiz
23%
a, b, Hello, Brother
42%
a, b, Brother, Hello
24%
a, Hello, Brother, b
12%
a, Brother, Hello, b
let number = 0;
console.log(number++);
console.log(++number); console.log(number);
console.log(number++);
console.log(++number); console.log(number);
Anonymous Quiz
19%
1 1 2
27%
1 2 2
36%
0 2 2
17%
0 1 2
โค1
ReactJs & JavaScript Mock Frontend Interview -
[Most Asked Questions-2022] Part -2
Exp. - Mid-level
๐๐ Go & Watch now! ๐ฅณ๐๐ผ๐๐ผ
https://youtu.be/wTmZ-jEkfgc
.๐๐๐๐๐
[Most Asked Questions-2022] Part -2
Exp. - Mid-level
๐๐ Go & Watch now! ๐ฅณ๐๐ผ๐๐ผ
https://youtu.be/wTmZ-jEkfgc
.๐๐๐๐๐
YouTube
ReactJs & JavaScript ๐ Mock Frontend Interview - [Most Asked Questions-2022] Part -2
Join Telegram group - https://t.me/Reactjs_Interview
Instagram - http://instagram.com/dev.roshan_
top 100 react js interview questions
reactjs interview questions and answers for experienced
Frontend Interview
ReactJs Interview
react redux interview questionsโฆ
Instagram - http://instagram.com/dev.roshan_
top 100 react js interview questions
reactjs interview questions and answers for experienced
Frontend Interview
ReactJs Interview
react redux interview questionsโฆ
๐5