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

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ต.ค. 2024
  • 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 TH-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

ความคิดเห็น • 54

  • @esakkis9727
    @esakkis9727 ปีที่แล้ว +7

    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 7 หลายเดือนก่อน +1

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

  • @arunprabhu3135
    @arunprabhu3135 3 หลายเดือนก่อน +1

    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 9 หลายเดือนก่อน +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)

  • @priyasharma8315
    @priyasharma8315 2 ปีที่แล้ว +4

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

    • @fakeprofile6955
      @fakeprofile6955 2 ปีที่แล้ว +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 7 หลายเดือนก่อน

      div and span are not semantic

  • @priyasharma8315
    @priyasharma8315 2 ปีที่แล้ว +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

  • @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

  • @vikrambam1184
    @vikrambam1184 2 ปีที่แล้ว +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);

  • @motog4plus90
    @motog4plus90 2 ปีที่แล้ว +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

  • @Whistle-blowerx
    @Whistle-blowerx ปีที่แล้ว

    welldone

  • @Deepak-xx2tk
    @Deepak-xx2tk 2 ปีที่แล้ว +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

    • @codekre
      @codekre ปีที่แล้ว

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

  • @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

  • @educateus85
    @educateus85 ปีที่แล้ว

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

  • @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]

  • @DeepWeb2
    @DeepWeb2 2 ปีที่แล้ว +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 2 ปีที่แล้ว +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

  • @akash_gupta_2090
    @akash_gupta_2090 ปีที่แล้ว +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)

  • @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 11 หลายเดือนก่อน

    are you clear the interview

  • @prashantpanchal5382
    @prashantpanchal5382 2 ปีที่แล้ว +2

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

  • @ankushladani496
    @ankushladani496 2 ปีที่แล้ว

    Thank You ....

  • @jayeshshrivastava5424
    @jayeshshrivastava5424 2 ปีที่แล้ว

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

  • @mohamedansarym6312
    @mohamedansarym6312 2 ปีที่แล้ว

    Increase the volume of answer

  • @abhijeet3844
    @abhijeet3844 2 ปีที่แล้ว +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

    • @udaykulkarni5639
      @udaykulkarni5639 2 ปีที่แล้ว

      I was thinking the same!!! 😅

    • @AYUSHKUMAR-dm1xg
      @AYUSHKUMAR-dm1xg 15 วันที่ผ่านมา

      Bro your answer for hoisting is also not completely correct. Do you know why var is said to be moved to the top of the code and not let or const? If someone is asking hoisting, you need to explain this as well. var is assigned to a global memory space and thats why it can be accessed anywhere in the program. But let and const are assigned to a special memory space called script which cannot be accessed until they are assigned a value. There is always room to learn more, so never be overconfident.

    • @abhijeet3844
      @abhijeet3844 15 วันที่ผ่านมา

      @@AYUSHKUMAR-dm1xg I just told, how to be a good developer, there is no where my answer is showing over confident, come on man, you need to accept things which you really don't know, then only you will come up in life,

  • @MAHA-db5nf
    @MAHA-db5nf 2 ปีที่แล้ว +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?

  • @Manjunath-vv3fg
    @Manjunath-vv3fg 2 ปีที่แล้ว

    Thanks a Lot for sharing.

  • @TheAditya64
    @TheAditya64 2 ปีที่แล้ว +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 2 ปีที่แล้ว

      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...

  • @shubhamsingh1863
    @shubhamsingh1863 2 ปีที่แล้ว +1

    Ur js basics are not clear

  • @rockyrocz1
    @rockyrocz1 2 ปีที่แล้ว

    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 ☺️

  • @surajkanwale1822
    @surajkanwale1822 2 ปีที่แล้ว +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 ปีที่แล้ว +2

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

  • @chill-wu3eg
    @chill-wu3eg 2 ปีที่แล้ว

    Super...Go ahead girl 👍

  • @DeepWeb2
    @DeepWeb2 2 ปีที่แล้ว +1

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

  • @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

  • @ashwinireact
    @ashwinireact 2 ปีที่แล้ว

    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);

  • @tejusgroup6695
    @tejusgroup6695 2 ปีที่แล้ว

    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