Machine Coding Round Questions Part 1 | Web Developer Interview

Поделиться
HTML-код
  • Опубликовано: 13 сен 2024
  • This Part 1 video covers the latest questions asked in Machine Coding Round of the Frontend Developer Interview. Video Part 2/2 Link - • Machine Coding Round Q...
    These are the set of 5 questions and at the end of the video, I’ll also tell one more bonus Interview Question which you can practice to crack your upcoming UI Developer Interview.
    In the last video in this Cracking the Frontend Interview Video series we covered all the tips and tricks, especially for Machine Coding Round. That video includes in depth tricks right from how to manage time, to writing better code which can impress the interviewer. Machine Coding Round is generally the first round in the interview and is the easiest round among all.
    If you practice these 6 questions sincerely by writing code and following the tips and tricks which I mentioned in my last video. I bet, it would be very easy for you to crack the interview. These set of questions are the ones which I’ve faced myself while interviewing for Microsoft, Flipkart, Swiggy and other good companies. Practicing these frontend problems will make you confident when you’re actually facing similar problems in interviews.
    At last, I would say that the main thing in interview preparation is practice and I can help you with that. Pick up any one of the 6 interview questions I’ve covered and try to write the code, just like you would have done in the interview round.
    If you do so and comment down the link to GitHub code. I’ll definitely go there and review your code. I’ll suggest if any improvements required or how could you have done things better. That will be great learning for you as well as for others who look at your code.
    Also, comment down which question you find the toughest and any part of the interview round which you’re confused about. I’ll help you in any possible way.
    Also watch these related videos which can be just like the Cherry on the Cake. Preparing and using these concepts in your solution can really impress the interviewers :
    Debouncing & Throttling- bit.ly/2S1nWUm
    Thinking Recursively - bit.ly/2G0prNL
    Wish you all the best for your upcoming Web Developer Interview. Don’t forget to like this video if you got to learn something from it.
    Share it with your friends and help them: “We rise by Lifting Others” :)
    If this video was helpful, give it a thumbs up and subscribe to my channel for more such videos. 🔔
    Link to Subscribe: www.youtube.co...
    If you want me to cover any specific topic, then comment down below. I would be happy to help you.
    If you find my videos helpful,
    then please support this channel by buying a coffee,
    www.buymeacoff...
    Cheers,
    Akshay Saini
    akshaysaini.in
    Would love to Stay Connected with you ❤️
    LinkedIn - / akshaymarch7
    Instagram - / akshaymarch7
    Twitter - / akshaymarch7
    Facebook - / akshaymarch7
    #Javascript #CrackingTheFrontendInterview #AkshaySaini

Комментарии • 73

  • @VijayKumar-eq9ou
    @VijayKumar-eq9ou 5 лет назад +32

    you are younger than us and you are giving the best from you, hats off for you and being an younger guy to us , you are doing the best for all of us looking for great twist in our life. Hats off to all your efforts and dedication.
    Thanq very much brother

  • @satyadeeproat2012
    @satyadeeproat2012 3 года назад +16

    Akshay Saini: Solve these 6 questions and you will definetely crack the machine coding round.
    Followed the advice. Turned out. I got the same comment widget in my machine coding round. Used the bare minimum CSS as you told for the question and used localStorage to save the data.
    Guess who got selected in the interview :D

    • @abhi224505
      @abhi224505 3 года назад +4

      Hey I have a small question ..Is it required to do this in vanilla js ? Or can I use libraries like react js. This looks really difficult do build with vanilla js.

    • @HimaBindhu12
      @HimaBindhu12 2 месяца назад

      c

    • @niteshsaxena1066
      @niteshsaxena1066 Месяц назад

      Were you allowed to use Internet?

    • @satyadeeproat2012
      @satyadeeproat2012 Месяц назад

      @@niteshsaxena1066 They allowed it but I didn't use it

    • @KrishanTalwar
      @KrishanTalwar 24 дня назад

      ​@@satyadeeproat2012 great

  • @ArjunThiraviam
    @ArjunThiraviam 4 года назад +10

    I was also given the task when I was interviewed with flipkart :-D
    1. Implement a comment section with the following.
    a. Add a comment, b. Edit a comment, c. delete a comment, d. reply a comment
    2. Display the latest 4 comments and its replies and remaining should be hidden and viewed with previous comment link
    3. On page, refresh reload the comment section
    4. Good to have n level of replies
    - Prioritise Object oriented design
    - Do not use external libraries

    • @pavansanthosh8085
      @pavansanthosh8085 4 года назад +9

      Rip to those guys who thinks this problem as just coment box easy one,, it almost took me 40 hours to build the logic completely and implement functionality and storing it in local storage and retrieving back it on UI

    • @ATULSHARMA-dk2vk
      @ATULSHARMA-dk2vk 3 года назад

      @@pavansanthosh8085 Can you please share the code?

    • @yadneshkhode3091
      @yadneshkhode3091 2 года назад

      Hi can we do this using react.js or pure javascript

    • @ravindrabosamiya9837
      @ravindrabosamiya9837 2 года назад

      so true

  • @akshaymarch7
    @akshaymarch7  5 лет назад +1

    Video Part 2/2 Link - ruclips.net/video/Ex0qS1qg6NI/видео.html
    Like the video and Subscribe(Bell Icon) to never miss any important video.

  • @ravitanwar9537
    @ravitanwar9537 5 лет назад +4

    i'm a simple man , i see akshay saini video i hit like even though i'm no web developer

  • @gkinfos
    @gkinfos 5 лет назад +5

    Hi Akshay,
    Your videos really helped me alot while preparing for the interviews so thanks for that.
    Just wanted one favor from you is that can you please provide solution on 1st question of this video about comment widget.

  • @Bala7712
    @Bala7712 3 года назад +5

    Hey Akshay, thanks for the content. I just need one clarification that are we (or you) allowed to use any external CSS library?

  • @tarundurbha5398
    @tarundurbha5398 6 месяцев назад

    please continue. this machine coding round series dude,this will help so many

  • @RohithPragallapati
    @RohithPragallapati 3 года назад +2

    Hi Akshay... I have some queries on the comments question. I understand that tree logic is a bit tricky to build but would like to know how to approach this.
    1. Are we expected to build using web components and templates? Or can we use any templating library?
    2. If we add a new comment, I would like to handle the update at that placeholder (Talking about inserting the comment in between). I don't prefer reloading (talking about using GET /comments vs POST /comment or PUT /comments/id) and rerendering the array of trees. Are we expected to build it in 1.5hr or is it ok if we write the core logic for the tree and convey our approach on how the templating would be built?

  • @js-squad8640
    @js-squad8640 5 лет назад +1

    Great video lot of things are missing from the people thanx for telling us these things you r doing a fab job brother

  • @tharunrajsoma8464
    @tharunrajsoma8464 5 лет назад +13

    Can you please provide answers also for each of these questions

  • @fixtradingpsychology
    @fixtradingpsychology 8 месяцев назад

    2. Drag and drop task app where you need to show tasks bin area and you can drag and drop task to section

  • @vanshajkapoor998
    @vanshajkapoor998 4 года назад +3

    Akshay bhaiya thanks for the video . I have one request can you please provide some resources where I can get these types of problems with their solutions . I know data structures and algorithm and I am understanding the idea but I am having problem implementing it using javascript .

    • @bhattyash15
      @bhattyash15 2 года назад

      Can you please share us the resources

  • @KCYT2023
    @KCYT2023 4 года назад +2

    Draggable List in Vanilla JS is quite hard to achieve in 2 hours unless you are thorough with the syntax. Which company asked this Draggable question anyway?

  • @mahimasrivastava2053
    @mahimasrivastava2053 4 года назад +3

    Thanks for sharing this video. I have one suggestion. Try to improve the audio quality of your videos. 😊

    • @akshaymarch7
      @akshaymarch7  4 года назад +4

      Thanks for your suggestion mahima.
      This is an old video, ive got a mic now. Upcoming videos won have a problem. 👍🏾

    • @mahimasrivastava2053
      @mahimasrivastava2053 4 года назад +3

      This video helped me a lot in last minute preparation!! Interview went well. Now 🤞
      Thanks a lot!!! 😃

  • @mumtazahmad2331
    @mumtazahmad2331 4 года назад

    Very nice video to develop the new application.Thanks

  • @BishalBiswas13
    @BishalBiswas13 5 лет назад +2

    Hello Akshay, In this Machine Coding round can we use UI libraries like Materialize?

  • @abhijeetrajak9621
    @abhijeetrajak9621 4 года назад +3

    Can u provide resources where we can practice such type of questions please reply bhai 🙏

  • @arung007
    @arung007 2 года назад

    Nice questions and thanks for Sharing :)

  • @vijayabiradar687
    @vijayabiradar687 2 года назад +1

    Thank you for the video Akshay :) Can you help me with resources which I can refer to practice questions like these!

    • @AjayKumar-id7mb
      @AjayKumar-id7mb 2 года назад

      If you get please do comment?

    • @bhattyash15
      @bhattyash15 2 года назад

      If you get the answer can you please share us the resources

  • @ArchanaSingh-xl7gk
    @ArchanaSingh-xl7gk 4 года назад +2

    Sir can u please tell what type of subjective questions may be asked for front end developer profile if there is a campus drive..

  • @raynorman1834
    @raynorman1834 4 года назад

    Cna you please make a video on how to get these interview opportunities? You have talked about staffing agencies, but not in much detail. It would be extremely helpful if you make a video on that . Or, at least, in the comments, describe how it happens. Cheers!!!

  • @tusharkrishna8149
    @tusharkrishna8149 4 года назад +1

    Can we use any ui framework or any third party libreary or just plain javascript, html and css

  • @SJ-on1nw
    @SJ-on1nw 4 года назад +2

    thank you!

  • @rishav144
    @rishav144 2 года назад

    trelo , jira , fabricator 🔥

  • @prashantindurkar
    @prashantindurkar 5 лет назад

    yes brother its nice question Thanks

  • @biboswanroy6699
    @biboswanroy6699 5 лет назад +1

    facebook do not have a nested comment system. They limit to just 2 levels.It was more nested previously i think

  • @lipsanayak2159
    @lipsanayak2159 4 года назад

    Hi Akshay - I had a question. Can We use node for installing dependencies or to create local server at the time of machine coding in interview?

  • @nitishnigam8831
    @nitishnigam8831 5 лет назад +2

    Could you please share the source code for the problems.

  • @indiemakerpodcast
    @indiemakerpodcast 5 лет назад

    Great

  • @sachinpandey1656
    @sachinpandey1656 5 лет назад +1

    Can we use library like react or we have to do in plain js css html

  • @ujjwaljain9780
    @ujjwaljain9780 3 года назад

    Sir can we use CSS templates for makings UI ...pls reply

  • @niteshsaxena1066
    @niteshsaxena1066 Месяц назад

    Is using Google or chatgpt allowed?

  • @rohitkr.6408
    @rohitkr.6408 3 месяца назад

    1. Comment widget
    2. Todo list app

  • @prashantindurkar
    @prashantindurkar 5 лет назад

    Thanks, Thanks Thanks

  • @anooppk2341
    @anooppk2341 3 года назад

    Brother ...do we want to use plain js in these questions.? Or can we use libraries and css frameworks , webpack etc?

    • @macmacmac740
      @macmacmac740 7 месяцев назад

      I assume this must be developed with frameworks otherwise vanilla JS would take a lot of time to build such dynamic UI. Achievable but time consuming. The interviewer is interested in the final output in this round. Your core JS skills would be tested in a separate round.

  • @yeswanthvigneshs1529
    @yeswanthvigneshs1529 2 года назад

    yes

  • @BharatSingh-zk8lx
    @BharatSingh-zk8lx 4 года назад

    Akshay a quick question, When u say "data structures", what do u refer to in javascript?

    • @NidhishAbraham
      @NidhishAbraham 4 года назад

      A "data structure" is a data organization, management, and storage format that enables efficient access and modification.

    • @agasthya3693
      @agasthya3693 3 года назад

      It depends on the situation may be Arrays, Objects, Maps etc as there are data structures in JS

    • @lakshmidj8849
      @lakshmidj8849 Год назад

      @@NidhishAbraham nnn

  • @DevPriyanshu
    @DevPriyanshu 3 года назад

    do we need to do these questions in vanilla JS

  • @shreyageek
    @shreyageek 2 года назад

    Googling is allowed?

  • @VijayKumar-eq9ou
    @VijayKumar-eq9ou 5 лет назад

    Do share all of your experiences

  • @vimalswaroopj3429
    @vimalswaroopj3429 2 года назад +1

    This is a forest 🤣

  • @krishnachaitanya8194
    @krishnachaitanya8194 4 года назад

    Can we use Ui library like react Or plain old Js?

  • @karanroy-vr1wn
    @karanroy-vr1wn 3 года назад

    plz. add the solution of this questions.

  • @ArchanaSingh-xl7gk
    @ArchanaSingh-xl7gk 4 года назад

    @Akshay saini sir please reply fast 🥺

  • @deveshsingh7257
    @deveshsingh7257 3 года назад +2

    dedee
    dede
    dede
    ded
    e
    de
    d
    e
    de

  • @VijayKumar-eq9ou
    @VijayKumar-eq9ou 5 лет назад

    Bro

  • @graphicccccc
    @graphicccccc Год назад