Fresher Got Selected as Frontend Engineeer | JavaScript and React | ProCodrr Mock Interviews

Поділитися
Вставка
  • Опубліковано 29 лис 2024

КОМЕНТАРІ • 266

  • @sadafhameed8470
    @sadafhameed8470 5 місяців тому +85

    1.What is HTML?
    2. Semantic Tags in HTML
    3. four exmples of semantic tags
    4.apart from meaning to browser does semantic elements help other way?
    5. what are tags & attributes?
    6. difference between div and span?
    7. examples of inline elements.
    8. apart from width difference is there sny other differnce?
    9. can we give height & width in inline elements?
    10. diff between canvas and nsvg
    11. full form of css
    12. tell meaning of cascading in css
    13. if we give some styling to parent will it apply on the child also
    14. what is specificity?
    15. default value of position property
    16. difference between position relative and absolute
    17. what is flexbox?
    18. if we have a container and inside container there are two elements span 1 and span2 & we give display:flex to parent will it apply to its children as well?
    19. what is box model in css?
    20. default value of box-sizing
    21. diff in content box border box?
    22. why do we need javascript ?
    23. what are different data types in javascript?
    24. why do we have categories like premetive and non premitive in JS?
    25. in how many ways we csn create variabls in JS?
    26. diff b/w let and var and there scope?
    27. diff b/w parameter and argument?
    28. difference b/w slice and splice methods?
    29. why do we use map method in array?
    30. what are promises in javascript?
    31. what is DOM?
    32. EVENT BUBBLING & CAPTURING
    33. why do we need React?
    34. diff b/w imperative and declarative?
    35. what is concept of state in React?
    36. why dont we use normal variable why state?
    37. GUESS OUTPUT::
    var x=20
    function foo(){
    console.log(x)
    var x=10
    }
    foo()
    // if change x=10 to let x=10 what will happen?
    38. console.log('Start')
    setTimeout(()=>{
    console.log('timeout')
    },0)
    console.log('End')
    //the order in which it will run?
    39. setTimeout(()=>{
    console.log('timeout')
    },0)
    Promise.resolve().then(()=>console.log('Promise'))
    console.log('End')
    40. async funtion foo(){
    return 'Hello World'
    }
    const result = foo()
    console.log(result)
    41. [1,2]==[1,2]
    42. const user1={
    name: 'john',
    age:25,
    address:{
    city:'Mumbai',
    state:'Mahrashtra'
    },}
    const user2 = user1
    user2.name = 'Ramesh'
    user2.address.city='Pune'
    console.log(user1)
    console.log(user2)
    43. const numbers= [0,1,2,3,4,5,6] //filter out all values less than 3
    44. create a string variable add a string in lowerCase and convert first letter of each to uppercase OR can you transform it into array.
    45. PROJECT:: create a TODO list in which there will be input and add button delete also

  • @akshaynarwadkar5264
    @akshaynarwadkar5264 8 місяців тому +50

    🎯 Key Takeaways for quick navigation:
    00:24 *💻 Introduction and Technologies Learned*
    The candidate introduces themselves and lists the technologies they've been learning.
    Technologies mentioned include HTML, CSS, JavaScript, React, MongoDB, and Node.js.
    01:59 *🏗️ HTML Concepts: Tags, Semantics, Attributes*
    Discussion on HTML basics including semantic tags and attributes.
    Semantic tags provide meaning to elements for both browsers and developers.
    Attributes provide additional information about elements and are included in the opening tag.
    04:00 *📐 CSS Concepts: Box Model, Positioning, Flexbox*
    Overview of CSS concepts including the box model, positioning, and flexbox layout.
    Box model includes content, padding, border, and margin.
    Positioning attributes like relative and absolute are discussed along with flexbox layout properties.
    10:51 *🔤 JavaScript Fundamentals: Data Types, Variables, Scope*
    Explanation of JavaScript fundamentals covering data types, variable declaration, and scope.
    Discussion on primitive and non-primitive data types.
    Explanation of variable declaration using var, let, and const and their respective scopes.
    20:33 *🔄 Array Methods and Promises in JavaScript*
    Overview of array methods including slice, splice, and map.
    Brief introduction to promises in JavaScript.
    Explanation of how promises address callback hell and provide a solution for asynchronous operations.
    22:35 *⚛️ Introduction to React and Its Benefits*
    Explanation of why React is used and its benefits compared to vanilla JavaScript.
    React's modular approach simplifies code management and enables the creation of reusable components.
    Discussion on React's virtual DOM and its efficiency in updating the actual DOM.
    25:19 *🧠 Declarative vs. Imperative Programming*
    Differentiation between declarative and imperative programming paradigms.
    Declarative programming focuses on defining the desired outcome, while imperative programming involves detailing the steps to achieve that outcome.
    Application of declarative approach in React and imperative approach in vanilla JavaScript.
    32:18 *🧠 Understanding variable assignment in JavaScript functions*
    - Variables assigned within a function are initially assigned the value `undefined` in the execution context.
    - When executing the function, the variable gets its assigned value.
    - Changing `var` to `let` won't affect the output because both have block scope.
    38:19 *🔄 Order of execution in asynchronous functions*
    - Asynchronous functions execute after other code has been executed.
    - The asynchronous function is stacked in the callback queue and executed after the call stack becomes empty.
    - Understanding the process helps in predicting the order of output.
    43:12 *🛠️ Working with asynchronous functions and promises*
    - Asynchronous functions always return a promise.
    - Utilize promise chaining for managing asynchronous operations.
    - Understanding promises is essential for handling asynchronous tasks effectively.
    46:50 *💡 Understanding equality comparison in JavaScript*
    - Comparing two arrays using `==` or `===` compares their references, not their contents.
    - Objects and arrays are reference types, so equality checks if they refer to the same object in memory.
    - Immutable objects like arrays return false when compared due to different reference addresses.
    49:05 *🔄 Understanding object references in JavaScript*
    - Objects with the same reference address share the same properties and values.
    - Changes made to one object reflect in all references pointing to it.
    - Understanding object mutability and reference sharing is crucial in managing data structures.
    51:46 *🔍 Exploring array methods in JavaScript*
    - Utilize array methods like `filter` and `map` for efficient data manipulation.
    - Chaining array methods simplifies complex operations and enhances readability.
    - Understanding array methods is essential for performing common tasks efficiently.
    55:22 *📝 Manipulating strings in JavaScript*
    - String manipulation involves methods like `toUpperCase`, `slice`, and concatenation.
    - Utilize string methods to transform and format text data effectively.
    - Understanding string manipulation techniques enhances data processing capabilities.
    01:08:02 *📝 Implementing a basic todo application in React*
    - Create a todo app with an input field for adding tasks.
    - Utilize React state to manage input values and todo list items.
    - Implement basic functionality like adding and displaying todo items.
    01:35:03 *🔍 Debugging the list addition functionality*
    - Debugging the process of adding new values to a list.
    - Issues encountered and solutions implemented during debugging:
    - Difficulty in adding new values to the list.
    - Correcting the code logic to incorporate previous values when adding new ones.
    - Utilizing the spread operator inside the array to properly update the list.
    01:39:26 *🛠️ Final adjustments and interview feedback*
    - Implementing final adjustments to the project and concluding the interview.
    - Final adjustments made:
    - Clearing the input field automatically after adding an item.
    - Feedback and evaluation of the interview performance.
    - Interview feedback and evaluation:
    - Candidate's performance assessed, acknowledging strengths and areas for improvement.
    - Recommendations for further practice and improvement highlighted.
    - Discussion on potential future interviews and readiness for subsequent rounds.
    Made with HARPA AI

    • @pranavpawar7792
      @pranavpawar7792 7 місяців тому

      Thanks brother

    • @MSubhanKhan-f4r
      @MSubhanKhan-f4r 2 місяці тому +1

      var has functional scope and let. const has the block scope and we can't use them outside the block

  • @VinodKumar-xv5lv
    @VinodKumar-xv5lv 9 місяців тому +96

    quality of the questions and answering incorrect questions in the video is top-notch, this channel is very much underrated channel, no doubt 100k subs in 6 months

  • @Darshit-2002
    @Darshit-2002 5 місяців тому +3

    Semantic Elements:-

  • @akashyadav1652
    @akashyadav1652 9 місяців тому +24

    Sir apka atitude ek dm real interviewer jesa h vo bhi ese hi bolte h jisse pta ni chlta ki shi bol rhe h ya nhi , Thanks for the interview 💖

    • @procodrr
      @procodrr  9 місяців тому +4

      Awesome, keep learning and sharing 😊

  • @alisajadahmadi978
    @alisajadahmadi978 8 місяців тому +17

    This really helped me a lot.
    Thank you so much.

  • @mitroboomin2492
    @mitroboomin2492 6 місяців тому +9

    HTML (1:02)
    CSS (9:22)
    Flexbox (20:44)
    Promises (28:22)
    Async function (32:02)
    Code (33:22)

  • @studywithapurb
    @studywithapurb 9 місяців тому +34

    These interview videos are very helpful for me as fresher . Keep making these type of interview videos sir 😊 thank you so much

  • @faizankhan-je9cf
    @faizankhan-je9cf 9 місяців тому +16

    Doing a great Sir.. Hats Off ♥

  • @nitinpachnanda
    @nitinpachnanda 7 місяців тому +6

    Anurag you are doing the amazing job to help freshers to crack job interviews 👏👏

  • @adityaiiitd7727
    @adityaiiitd7727 5 місяців тому +3

    The mock interview made me realise the importance of reading the documentation along with tutorial(in case you prefer that way).As most of us just watch the tutorial and apply the things taught in that.
    Thanks Anurag for such mock interviews.

  • @QuantumCanvas07
    @QuantumCanvas07 9 місяців тому +12

    Semantic tags and using its conventions apart from SEO it also helps screen readers in case a person who is blind go though our page.

    • @ankitgupta9154
      @ankitgupta9154 2 місяці тому

      i wonder why people liked this comment, when clearly this was a joke

    • @QuantumCanvas07
      @QuantumCanvas07 2 місяці тому

      @@ankitgupta9154 This isn't a joke. In production and real world scenarios we care about every individual that visit the page as it should be accessible to all and if you're designing for a government agencies, they've a lot of accessibility criteria to follow.

  • @evilgaming000
    @evilgaming000 9 місяців тому +13

    Sir currently i'm following your js course and now ready to switch to your react course. It was a great journey i learnt so much from basic to advance in depth thankyou so much for your all efforts this helps a lot ❤❤

    • @procodrr
      @procodrr  9 місяців тому +3

      Awesome, all the best for your React journey 👍
      Keep learning and sharing 😊

  • @jackdesparrow4783
    @jackdesparrow4783 9 місяців тому +38

    she impressed with answers and pleasing manner ....bright future ahead... HTML,CSS,React basiscs for sure she deserves 7digit salary as a fresher

  • @kalyankrazy3304
    @kalyankrazy3304 7 місяців тому +4

    Get to know new things ....
    Great job🎉

  • @alizekc231
    @alizekc231 9 місяців тому +10

    Keep up the good work.

  • @pavankulal9311
    @pavankulal9311 9 місяців тому +3

    I'm so impressed with this girl she knows everything where I took twice time to know it

    • @pavankulal9311
      @pavankulal9311 9 місяців тому

      I was impressed with here theory skill but practical is little weak but she will overcome it by practice

  • @subhrajitchandra8466
    @subhrajitchandra8466 8 місяців тому +2

    49:59 there is a little trick that, if i do
    const user2 = {...user1}
    then the name will not change in user1 due to user2 but city will.

  • @GATEWith_HARIS
    @GATEWith_HARIS 9 місяців тому +6

    sometime I can implement everything very precisely and beautifully but I can not explain in words if you ask my project and the about the things that used in my project I can explain very good.

  • @itachiuchiha1029
    @itachiuchiha1029 9 місяців тому +3

    Theoretical knowledge is good as much as needed. But the real game begin with practical one. You must have to be thinking logical.

  • @arvajkhan683
    @arvajkhan683 9 місяців тому +8

    This video is very helpful for me ❤

    • @procodrr
      @procodrr  9 місяців тому

      Glad it was helpful 😊

  • @junaidkhanvibes-jkv7214
    @junaidkhanvibes-jkv7214 9 місяців тому +4

    Amazing work bro I am watching it from Pakistan, it is very helpful

    • @Nitesh_Blogger2
      @Nitesh_Blogger2 9 місяців тому +2

      Beta ke lia to itna hamare sir interviewer video bana sakte hai 🤣🤣

  • @abplayzz
    @abplayzz 7 місяців тому +1

    JavaScript is a single threaded language. Having knowledge of writing non-blocking code is not advanced in any way. It's a must know.

  • @mansingbad
    @mansingbad 8 місяців тому +4

    insightful content sir✨ ❤️

  • @vineetverma1621
    @vineetverma1621 5 місяців тому

    Imperative programming: telling the "machine" how to do something, and as a result what you want to happen will happen. Declarative programming: telling the "machine"1 what you would like to happen, and let the computer figure out how to do it.

  • @nothing-s9u
    @nothing-s9u 5 місяців тому

    You are doing great, Sir. I will also give my interview in the next few months.

  • @trainerdevesh
    @trainerdevesh 2 місяці тому +1

    1:04:46 i answered it before 😊 btw girl is good Going

  • @yashverma7028
    @yashverma7028 9 місяців тому +5

    very helpfull video sir, I am someone who is actively giving interview for MERN and front end roles, UNFORTUNATELY the coding questions asked in today's market are quite difficult and not easy as we saw in the video, but ya in a very few cases, the company might ask such easy questions, but generally the coding and machine coding questions being asked are of higher difficulty, also I need to appreciate you for the theory part and also the output based questions. If possible kindly put up interviews with higher difficulty for coding as well.

    • @praneethisaac5655
      @praneethisaac5655 9 місяців тому

      Can u tell me where can i practice for frontend as well as backend machine coding questions

    • @anchalgupta4362
      @anchalgupta4362 8 місяців тому

      @yashverma7028 can you tell where to practice for frontend interviews

  • @jayprajput1998
    @jayprajput1998 8 місяців тому +1

    Can we apply in React without any css if no one has the knowledge of css?

  • @nawaraj.karkee
    @nawaraj.karkee 7 місяців тому +1

    would love to see some freshers python mock interviews.
    Django /& Fastapi mock interviews..

  • @subhanOther
    @subhanOther 4 місяці тому

    slice is a method of both array an string

  • @garvitjuneja253
    @garvitjuneja253 9 місяців тому +3

    Sir I have a suggestion for you that whatever the question you are asking from the candidate if he or she is not able to answer that question then please you should answer that question properly so that the answer of that question will be very much clear to us.
    I hope you will consider my point😊

    • @procodrr
      @procodrr  9 місяців тому +1

      Thank you for your suggestion, I'll do it from the next time.

  • @tagotechbuilder7767
    @tagotechbuilder7767 9 місяців тому +2

    async function foo() {
    return 'Hello World'
    }
    const result = foo()
    console.log(result)
    result.then((data)=> {
    console.log(data);
    })

  • @himankshu
    @himankshu 2 місяці тому

    Please keep doing this 🥹

  • @loucypher666
    @loucypher666 4 місяці тому

    Poori jahan ek taraf aur THATS TRUE ek taraf

  • @devmittal29
    @devmittal29 24 дні тому

    Honestly, no real interviewer will select if you give such answers

  • @abdullahansari9195
    @abdullahansari9195 8 місяців тому +2

    Nice content.

  • @anushkatamrakar4449
    @anushkatamrakar4449 9 місяців тому +1

    Sir i have submitted the Google form. Kindly schedule my mock interview❤

  • @GAMER-SRK
    @GAMER-SRK 9 місяців тому +4

    Hello sir, can you please make a complete video on how you work on your live project starting from scratch? I mean receiving project definition till completion. By the way your videos are very helpful thank you.

  • @09avishkargaikwad71
    @09avishkargaikwad71 7 місяців тому

    Let's complete the remaining tasks
    function handleDelete(index){
    // Here don't go to directly apply the splice on original state variable. We cannot do it. Principle of immutability.
    const newTodo = [...toDo];
    const newArr = newTodo .splice(index, 1);
    setToDo(newArr);
    }
    handleDelete(index)}>Delete

  • @vgx-sam8164
    @vgx-sam8164 8 місяців тому +2

    Why no camera , isn't it a norm to have camera on on interviews?? Correct me as i maybe wrong

  • @smiteshp2001
    @smiteshp2001 9 місяців тому +2

    The interviews are good.I would suggest you to answer the questions which the candidates are not able to answer.

    • @procodrr
      @procodrr  9 місяців тому +1

      Sure, I'll do that.

  • @kforstatus9709
    @kforstatus9709 9 місяців тому +3

    ak project series be lao sir jisma HTML, CSS or JS ho. Please sir apki projects wali video be dakhi ha mna par or be project laka ao sir 😊😊 you tube par etna project nhi ha sir ap ak new series start karo jisma bout sara project ho❤❤

    • @procodrr
      @procodrr  9 місяців тому +1

      Zaroor laayenge projects

  • @omkargharat3686
    @omkargharat3686 3 місяці тому

    Great Video really helpfull

  • @abhaykumarsharma7050
    @abhaykumarsharma7050 5 місяців тому +1

    Bhaiya form ke liye link available nhi hai

  • @aniketroy03
    @aniketroy03 9 місяців тому +3

    And I was asked to build a complete folder-file structure in React covering all the test cases as a fresher 😢😂

    • @procodrr
      @procodrr  9 місяців тому

      Even experienced people can't do that.

    • @aniketroy03
      @aniketroy03 9 місяців тому +1

      @@procodrr Tap Invest was the company name. I cleared the first round which was an online test and in the next interview they asked this.

    • @luckypareek-my1oi
      @luckypareek-my1oi 9 місяців тому

      How did you apply?

    • @aniketroy03
      @aniketroy03 9 місяців тому +1

      @@luckypareek-my1oi Company careers page in Nov 2023.

    • @KUNUx1
      @KUNUx1 9 місяців тому +4

      ​@@aniketroy03because they didn't want to hire you so they purposefully did that .don't overthink you did well in the first round atleast

  • @owannn
    @owannn 9 місяців тому +56

    bhaiyya ab aapke channel pe 13k subs hogye .. maine jab subscribe kra tha to 2.5k the to ab itne log interview dere to mai kaise dunga🥺

    • @procodrr
      @procodrr  9 місяців тому +25

      Form fill Kiya tumne?

    • @owannn
      @owannn 9 місяців тому

      hn recently@@procodrr

    • @purnima1361
      @purnima1361 9 місяців тому +5

      Sir mene bhi form fill kiya h aapka plz sir Mera bhi interview le lijiye

    • @b2wofficialYT
      @b2wofficialYT 9 місяців тому +1

      ​@@purnima1361ye job dila te hain?

    • @RayhanCar
      @RayhanCar 9 місяців тому +1

      Arey mock interview hai bro 😂​@@b2wofficialYT

  • @aditisrivastava9917
    @aditisrivastava9917 9 місяців тому +2

    Where is link available to fill the form??plz tell me

  • @24-7-vishal-coding
    @24-7-vishal-coding 5 місяців тому

    The form ProCodrr Mock Interviews is no longer accepting responses. I WANT TO GIVE MY INTERVIEW ( 14 year old )

  • @SpoCombat
    @SpoCombat 7 місяців тому

    Great content

  • @davidbaraiya2649
    @davidbaraiya2649 6 місяців тому +1

    How much experience does she have?

  • @Coder900
    @Coder900 3 місяці тому

    Mate could I also get interviewed for a fresher role??
    As the google form you attach says you're not taking submissions anymore

  • @Arjun69
    @Arjun69 9 місяців тому +1

    Let’s add some new questions @procoddr?

  • @cricketshorts6371
    @cricketshorts6371 9 місяців тому

    Which company she's got a selected

  • @kashifqureshi0786
    @kashifqureshi0786 8 місяців тому

    Sir Maine har jgh message send kiya but aapne abhi tak seen nhi Kiya sir please take my mock interview 😢

  • @Devanshu04
    @Devanshu04 3 місяці тому

    Questions are nice but from the beginning i was feel she was using chatgpt then finally at 1:36:00 you can see that while switching to chrome you can see chatgpt window 😮

  • @saiteja6179
    @saiteja6179 9 місяців тому +3

    I can hear interviewee but not interviewer. Please talk next time some high.

  • @justinjeromofficial
    @justinjeromofficial 5 місяців тому

    Hi Anurag. hope you doing well brother. U must need update your audio equipment. if its possible.

  • @charuverma6004
    @charuverma6004 4 місяці тому

    Hello Sir, there is an issue google form is not open now plesae check that

  • @blacktigerarmy5496
    @blacktigerarmy5496 6 місяців тому

    It's mean apne fundamentals par kaam karee?

  • @kalideb-y3y
    @kalideb-y3y 8 місяців тому

    off topic: I'm linux user. Doesn't the windows command line have auto complete like linux terminal do?

    • @TusharDahiyaa
      @TusharDahiyaa 8 місяців тому +1

      It does have auto complete but unlike windows you have to write most of it and press tab for auto complete...in windows, it just gives all file names one by one..

  • @dishamagade4420
    @dishamagade4420 6 місяців тому

    Sir js sourec file or script is mentioned in the head no??

  • @30pratikshamali50
    @30pratikshamali50 9 місяців тому +1

    Can we give this interview in Hindi

  • @tushar6090
    @tushar6090 6 місяців тому

    girl's voice is felt like a small kid giving interview but the interview is good. 😀😀

  • @neshkalya5777
    @neshkalya5777 7 місяців тому +2

    Sor ma BA hun mere computer applications ek subject tha graduation ma aur ek saal ka computer diploma bhi ha lakin ma yah sab coding java html etc sikhna chati hun .

  • @akankshashejul6082
    @akankshashejul6082 7 місяців тому

    sir i am also want give an a mock interview i tried to fill the google form but it not working

  • @Al_Jamah
    @Al_Jamah 7 місяців тому +1

    sir Google form work nahi kar raha hai

  • @Ghhhjjkkkhgff123
    @Ghhhjjkkkhgff123 4 місяці тому

    Sir your interview is good sir

  • @Giggle119
    @Giggle119 6 місяців тому

    Do i need degree to become a frontend developer because i don't have a degree

  • @ItzBandhan
    @ItzBandhan 8 місяців тому

    these question made me realize that i had learnt nothing in javascript and react😂😂

  • @BLACKDREAMIO
    @BLACKDREAMIO 7 місяців тому

    ProCodrr Mock Interviews
    The form ProCodrr Mock Interviews is no longer accepting responses.
    Try contacting the owner of the form if you think this is a mistake.
    i got this wehn i visited your google link

  • @factcinemaaa
    @factcinemaaa 9 місяців тому +2

    Sir ji aapki video mai tb se dekh rha hu jb aapke channel pr 1.2k tha aur aap mera interview krwa hi do bahut comment kiya but aapne bola tha krwane k liye but 😢😢😢😢😢

    • @procodrr
      @procodrr  9 місяців тому +2

      I have sent you and assignment on email. Please complete it and submit.
      Uske baad interview schedule kar denge.

  • @borntodevelop508
    @borntodevelop508 9 місяців тому +3

    35:00 , bcz hoisting not working in let keyword

    • @NitanJanaOfficial
      @NitanJanaOfficial 8 місяців тому

      hoisting does happens for let and const variables also,but they are in temporal dead zone till they are initialized in the code,hence the referenceError.

  • @HarshKumar-xz9ec
    @HarshKumar-xz9ec 23 дні тому +1

    Sir me also starting right now web development course from beginning to pro level please help me sir

  • @AmitGupta-wf7rw
    @AmitGupta-wf7rw 9 місяців тому +1

    sir I'm from commerce stream and I want to switch my career in IT sector so plz tell me it's right to choose career as frontend or in data analysis. Which one is helpful for my career.

    • @procodrr
      @procodrr  9 місяців тому +1

      Getting into frontend would be easier for you.

  • @successmindset010
    @successmindset010 8 місяців тому

    mujhe html css javascript ata hai par spoking english nahi ati toh mujhe job mil jayegi sir plz reply

  • @nishant_singh
    @nishant_singh 9 місяців тому

    Sir I want to test myself out, I filled the form, please have a look...

  • @RalKrish
    @RalKrish 9 місяців тому +2

    the questions were really good but plz provide some more question in the form of pdf

  • @swapPradhan
    @swapPradhan 7 місяців тому +1

    Her typing speed: -1wpm

  • @timepass6050
    @timepass6050 6 місяців тому

    anurag you are doing a good job but i have a suggestion for you prepare for your questions and practice them asking in english because sometimes when you are asking questions your forgot what to ask then you voice goes very low it shows your confidence level is low

  • @priyarai8840
    @priyarai8840 8 місяців тому

    what will be the answer for async function returning 'Hello World' instead of Promise { 'Hello World' } at 46:00

    • @SenseiArima11
      @SenseiArima11 7 місяців тому

      Async function foo() {
      return 'Hello World'
      }
      Async function bar() {
      const result = await foo();
      console.log(result) ;
      }
      bar();
      The reason for await not working in her code was that await only works inside Async function apart from some specific use cases.
      Also we could have done this using ".then" method as well

  • @successmindset010
    @successmindset010 8 місяців тому

    sir interview ke liye spoking english ana jaruri hai kya

  • @vipultaneja7521
    @vipultaneja7521 9 місяців тому +1

    sir i feel the form for giving interview but i cant get any email to regarding this

  • @bittusarkar1.8k22
    @bittusarkar1.8k22 7 місяців тому

    Sir i want to give mock interview of DSA please provide me form ...in description form is not working

  • @Spiritual_Booster_Dose
    @Spiritual_Booster_Dose 9 місяців тому +1

    kya isme sach me selected candidate ko JOb milti hai...YA fir mock interview HAI

  • @RavindraSingh-lp9pl
    @RavindraSingh-lp9pl 9 місяців тому +1

    @Anurag Sir please React machine coding questions daalo..it will be very helpful

  • @archuser532
    @archuser532 9 місяців тому +5

    bro itne basic quesion me kese hosakta ha select koi

    • @facthai8958
      @facthai8958 9 місяців тому +1

      mein bhi yehi soch raha hu 🫂

    • @owannn
      @owannn 9 місяців тому +2

      questions ke basis pe nhi hote,, last me jo code krwate wo shi se krne pe select hote log

    • @procodrr
      @procodrr  9 місяців тому +3

      As a fresher, she performed very well. Her fundamentals are clear.
      Also she is able to write code with clarity.

    • @Assasina8or
      @Assasina8or 6 місяців тому

      Ese hota h

    • @archuser532
      @archuser532 6 місяців тому

      @@owannn hmmm

  • @sharathjoshi3545
    @sharathjoshi3545 8 місяців тому

    Is real interview will be same level difficulty sir

  • @aluexpress987
    @aluexpress987 4 місяці тому

    Reality is that this student will never be selected in 2024.

  • @saritabist644
    @saritabist644 9 місяців тому +1

    Keep up good works

  • @ameengaming2897
    @ameengaming2897 7 місяців тому

    Kya mein apni skills ko check krny ky liya interview dy skta hn kya please reply 😢❤

  • @saswatisahoo-x7e
    @saswatisahoo-x7e 9 місяців тому

    this interview for praticing yaa for job,regarding

  • @akarsh_121
    @akarsh_121 9 місяців тому +1

    It'd be better of you ask the questions in open and active voice

    • @procodrr
      @procodrr  9 місяців тому

      Thanks for your suggestion. I'll try that next time.

  • @pawanpawar1910
    @pawanpawar1910 9 місяців тому +1

    BBA computer applications after Frontend developer ban sakte hai kya

  • @Andrew-j1r5f
    @Andrew-j1r5f 9 місяців тому +1

    Thanks for these interviews sir. These helps a lot in assessing. One question I want to ask, when it comes to building projects to showcase in your resume, suppose I want to be a frontend developer and right now my main focus is that only not the backend part. So what kind of projects should I be working on? A lot of people suggest to go for a complex project like a full-fledged web app but that requires the knowledge of backend too. Help me with this sir. Thankyou.

    • @procodrr
      @procodrr  9 місяців тому

      You can use some third party APIs and make complex projects.

  • @namansharma8346
    @namansharma8346 8 місяців тому

    cont str = "hi i am shreya"; sir in this string manipulation question can i solve this in java or interview just need to know my map, slice,split method knowledge in javascript,. Can i do programming question in java in frontend interview

    • @shankar99977
      @shankar99977 8 місяців тому

      Then thats not a front end interview

  • @BitureX
    @BitureX 9 місяців тому +1

    Sir I know html,css and javascript should I do mock test please reply..❤❤

    • @procodrr
      @procodrr  9 місяців тому

      Yes, you can give the mock interview.

    • @BitureX
      @BitureX 9 місяців тому

      @@procodrr only by filling the form..

    • @procodrr
      @procodrr  9 місяців тому

      Yes, If you know JavaScript well then you can fill the form.

  • @basicmathswithparamitamaam1749
    @basicmathswithparamitamaam1749 9 місяців тому +1

    Hi Sir,
    I have a question
    Does companies hire someone in tech field who has 10 years gap?

  • @nickgaming8523
    @nickgaming8523 9 місяців тому +1

    Hello sir, I am Prabal Bhandary. I am from Nepal and I have fill the form just to know how does the questions appear in the interview. I am searching for an intern position

    • @procodrr
      @procodrr  9 місяців тому

      The same way question are asked as in this video.

  • @shahrukhsaifi836
    @shahrukhsaifi836 9 місяців тому +1

    bhaiyya quality bahut kam aa rhi hain?