Wipro Manager Technical Round || Reactjs || Javascript || Live Interview.

Поділитися
Вставка
  • Опубліковано 22 лип 2022
  • Wipro Manager Technical Round || Reactjs || Javascript || Live Interview.
    About Video:-
    I am sharing you about my interview experience .
    My Other Videos Link:-
    ***********************
    Software Field Demand In USA
    • Software Field Demand ...
    My Cambly Demo Session:-
    • My Cambly Demo Class |...
    How Cambly Teach Grammer
    • How Cambly Teach Gramm...
    My First Experince OF Fluent Life:-
    • My First Experience Of...
    How Cambly Conduct Session:-
    • How Cambly conduct ses...
    How To Speak Slowly
    • How To Speak Slowly | ...
    How to read articles
    • How to read articles |...
    Amazing Conversation With Cambly Tutor
    • Amazing Conversation W...
    How To Improve English
    • How To Improve English...
    My First Cambly Experience
    • My First Cambly Experi...
    Wipro Manager Technical Round || Reactjs || Javascript || Coding Round.
    About My UA-cam Channel:-
    ****************************
    I heartly welcome You in MoSu WebX Channel. My Name Is Mohammed.By Profession I am Software Developer.This channel contains English Speaking Related Videos And IT software related telephonic interview questions like HTML,CSS, Bootstrap ,ReactJs and JavaScript related.
    HashTag
    **********
    #Wipro #JavaScript
    #reactJs #MoSu WebX
    Contact Info
    ************
    developer.computer2000@gmail.com

КОМЕНТАРІ • 52

  • @esakkis9727
    @esakkis9727 Рік тому +6

    No one will share live interview in social media. U have brave enough to share this.
    Your good at React and lack in other UI stack ie HTMl, CSS and JS. This video really help for whoever prepare for the interview

    • @compilejs110
      @compilejs110 4 місяці тому +1

      JS is also used in backend, desktop and mobile app.

  • @priyasharma8315
    @priyasharma8315 Рік тому +5

    For LocalStorage if storing nested objects or array then first we need to save it as stringfy and in retrieval we need to parse it

  • @priyasharma8315
    @priyasharma8315 Рік тому +4

    Semantic Tag are just Structure your page and easy to understand by developer and browsers
    Like , , , , , ,

    • @fakeprofile6955
      @fakeprofile6955 Рік тому +1

      The tag whose name defines why this is used.

    • @Uttam_Singh95
      @Uttam_Singh95 Рік тому +2

      Why div? For Semantic
      it will come in non semantic

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

      div and span are not semantic

  • @vikrambam1184
    @vikrambam1184 Рік тому +5

    sum of two array of different size :
    let b = [2, 4, 5, 6, 7];
    let a = [1, 3, 4];
    let getSum = (arr1, arr2) => {
    let main = arr1.length >= arr2.length ? arr1 : arr2;
    let sec = arr1.length < arr2.length ? arr1 : arr2;
    return main.map((elem, i) => (sec[i] ? elem + sec[i] : elem));
    };
    const ans = getSum(a, b);
    console.log(ans);

  • @shubhamprakashyaduwanshi8581
    @shubhamprakashyaduwanshi8581 Рік тому +2

    var a = [4,5,2,1,3,6,5]
    var b=[5,2,3]
    var n=0;
    a.map((res)=>{
    for(let i=n;i

  • @Deepak-xx2tk
    @Deepak-xx2tk Рік тому +8

    let a=[2,4,5,6];
    let b=[1,3,4];
    let temp=a.map((el,index)=>(el ||0)+(b[index] ||0));
    console.log(temp)
    i think this is the right answer

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

      Bro not right you have to also check the length among a nd b then run the map

  • @motog4plus90
    @motog4plus90 Рік тому +2

    Answer would be
    Const result = a.map(el,i)=>{
    if(b[i]

    • @jc_9395
      @jc_9395 Рік тому +1

      this is wrong it cheks whether b[i] {
      if(i

  • @arunprabhu3135
    @arunprabhu3135 День тому

    const a = [2,4,5,6,7]
    const b = [1,3,4]
    const add = (a,b)=>{
    let output = []
    for(let index = 0 ;index

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

    a = [2, 4, 5, 6, 7]
    b = [1, 3, 4]
    //R =[3, 7, 9, 6, 7]
    Note: both conditions are handled if interviewer changes the input and the length can be dynamic if optimised further
    function add(a, b) {
    let res= []
    if(a.length > b.length) { //if a length is greater
    for(let i = 0; i < a.length; i++) {
    res.push(a[i] + (b[i] || 0))
    }
    }
    if(b.length > a.length) { //if b length is greater
    for(let i = 0; i < b.length; i++) {
    res.push(b[i] + (a[i] || 0))
    }
    }
    console.log(res)
    }
    add(a, b)

  • @DeepWeb2
    @DeepWeb2 Рік тому +4

    I think for first question if we use that function in strict mode then only it will give error when you print a outside the function and also that b will give error because it is block scope and we are accessing outside the function... correct me if I'm wrong

    • @TheAditya64
      @TheAditya64 Рік тому +1

      var is hoisted globally where it is defined and initialized with undefined initially. let and const are block based and cannot be accessed outside of the block

  • @jayeshshrivastava5424
    @jayeshshrivastava5424 Рік тому

    Put more videos or try to put interview experiences of your friends or colleagues,

  • @ankushladani496
    @ankushladani496 Рік тому

    Thank You ....

  • @Whistle-blowerx
    @Whistle-blowerx Рік тому

    welldone

  • @GabruGladiator
    @GabruGladiator Рік тому

    const a = [2, 4, 5, 6, 7];
    const b = [1, 3, 4];
    if (a.length >= b.length) {
    const R = a.map((i, j) => b[j] ? i + b[j] : i);
    console.log(R);
    } else {
    const R = b.map((i, j) => a[j] ? i + a[j] : i);
    console.log(R);
    }; // [3, 7, 9, 6, 7]

  • @jc_9395
    @jc_9395 Рік тому +3

    function codeHoist(){
    a= 10;
    let b =50;
    }
    codeHoist()
    console.log(a)
    console.log(b)
    a is global variable because it is not defined with variable , so a can be accessed globally
    and b not defined bcs of block scope

  • @mohamedansarym6312
    @mohamedansarym6312 Рік тому

    Increase the volume of answer

  • @educateus85
    @educateus85 Рік тому

    I'm from civil engineering how but i want job where can apply

  • @Manjunath-vv3fg
    @Manjunath-vv3fg Рік тому

    Thanks a Lot for sharing.

  • @prashantpanchal5382
    @prashantpanchal5382 Рік тому +2

    Really she has 5+ years of experience ?? Is this interview is mock or real interview ??

  • @MAHA-db5nf
    @MAHA-db5nf Рік тому +2

    Hi Bro. I'm a fresher. I would like to attend mock interview. It'd be helpful for me to crack the interview If I was interviewed. Could you please interview me bro?

  • @iamsarojb
    @iamsarojb Рік тому +1

    Most of the questions were answered you knew, but you got nervous during the interview. For that reason, you answered some questions wrongly. Anyways, all are just an experience!

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

    are you clear the interview

  • @abhijeet3844
    @abhijeet3844 Рік тому +2

    U tried Well, but your answers are too much dragging and more of words "Like, so. like so", i definately know u did not get selected, and too many wrong answers, i dont know how that manager is saying fair enough, Example:- Hoisting answer was not at all correct, "Hoisting in simple words, moving the var declared varibles on top of the file before the program gets executed and also trying to access the variable value before declare or assigning the value." Improve your way of answering first, because the other person should understand what you are trying to tell. End your answers properly . CSS and HTML u got be very strong if you want be a web developer... All the best

  • @chill-wu3eg
    @chill-wu3eg Рік тому

    Super...Go ahead girl 👍

  • @akash_gupta_2090
    @akash_gupta_2090 10 місяців тому +2

    let a = [2,4,5,6,7]
    let b = [1,3,4]
    let output = [3,7,9,6,7]
    const data_1 = a.map((item,index) => {
    const forB = b[index] ? b[index] : 0;
    let value = item + forB
    return value
    })
    console.log(data_1)

  • @surajkanwale1822
    @surajkanwale1822 Рік тому +2

    you're excellent knowledge in js and react , i per my opinion befor going next interview prepare with html and CSS interview questions.
    I think you weak point html and css, it's not necessary for react or angular dev, but interview will ask

    • @ITDevelopermohammed
      @ITDevelopermohammed  Рік тому +2

      Yes you are right Suraj .. still i am updating..
      Will do more hard work ..

  • @shubhamsingh1863
    @shubhamsingh1863 Рік тому +1

    Ur js basics are not clear

  • @DeepWeb2
    @DeepWeb2 Рік тому +1

    From where are you applying for these jobs please reply 🙏?

  • @TheAditya64
    @TheAditya64 Рік тому +5

    5 years of exp, 2 in html CSS and 3 in react. Based on the interview you gave, you will find my words harsh but you just puked it. You didn't answer a single question correctly. Learn everything again, focus on basics. If you need more suggestion then ping me up. I have around 5 years of exp and work at Nestle. And these questions are just joke for me.

    • @udaykulkarni5639
      @udaykulkarni5639 Рік тому

      True shit bro!!! I dont want to sound rude or anything. I have about an year experiance and the questions were sooooo basic even for me. Long way to go!

    • @GabruGladiator
      @GabruGladiator Рік тому

      "works at Nestle"!! Refer me please...
      I know HTML, CSS, TailwindCSS, JS, ReactJS...

  • @rockyrocz1
    @rockyrocz1 Рік тому

    U need to polish more on javascript..... U have knowledge but ur answers is not upto the mark.....big company .... Based on experience...... Will easily reject u .... Best of luck for your career ☺️

  • @santra528
    @santra528 Рік тому +1

    15:50
    A long solution though. But still writting.
    function addTwoArrays(arr1,arr2){
    let len1=arr1.length;
    let len2=arr2.length;
    let i=0;
    let finalArray=[]
    let sum=0;
    // arr1 is bigger
    if(len1>=len2){
    for(i=0;i

  • @tejusgroup6695
    @tejusgroup6695 Рік тому

    Nice Interview mam, Make a videos for 1. Resume Building 2. how to make profile in Naukari and how to apply. 3. Make a video for LinkedIn profile mam.
    All the best for Interview and Happy Coding

  • @ashwinireact
    @ashwinireact Рік тому

    let ar3 = [];
    const arrAdder = (arr1, arr2) => {
    arr1.forEach((el, i) => (arr2[i] ? ar3.push(el + arr2[1]) : ar3.push(el)));
    };
    ar1.length >= ar2.length ? arrAdder(ar1, ar2) : arrAdder(ar2, ar1);