Infosys All Types Of PseudoCode Questions in 1 Video | Tips & Tricks 🔥🔥

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

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

  • @techandtarget
    @techandtarget  3 ปีที่แล้ว +18

    This video consist of all types of pseudo code questions in Infosys Exam Till Now ❤️
    We will be soon uploading Infosys Mock Test Paper 😀
    Note : question 7,12,13 are homework, comment the answers below
    All the best everyone 🎉

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

      Please create system engineer playlist infosys

    • @saurabhmadankar3766
      @saurabhmadankar3766 3 ปีที่แล้ว

      I haven't received any mail from Infosys is tere any chance ?

    • @vaibhavchandnani8699
      @vaibhavchandnani8699 3 ปีที่แล้ว +1

      13th answer is 8 Am I right?

    • @kritikasingh1623
      @kritikasingh1623 3 ปีที่แล้ว +1

      Bhaiya please explain q12 in next video

    • @prakashsketch2803
      @prakashsketch2803 3 ปีที่แล้ว +3

      mistake found: 12:50 binary of 7 is 111 so

  • @aishu_shorts9496
    @aishu_shorts9496 3 ปีที่แล้ว +24

    Sir Que 5 you put the wrong value of 7
    7= 111
    1= 001
    _________
    6= 110
    So output will be 6

  • @divyak8778
    @divyak8778 3 ปีที่แล้ว +28

    bro,some non IT people are watching this video for infosys exam,please explain the concept of HW questions

  • @admsnandigama
    @admsnandigama 5 วันที่ผ่านมา +2

    Question 7 :- Answer is p+q+r : 0+7+6= 13

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

    Q9) str 1 = 2 . str = 2 , print(2 + 2) = 4 output true

  • @saptarshibanerjee1312
    @saptarshibanerjee1312 3 ปีที่แล้ว +9

    Please explain 12 & 13 ,they are something different

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

    QUESTION 13:
    ANSWER IS 7 ---> how?
    #include
    int main()
    {
    int val=10;
    do{
    val--;//POST -DEC
    --val;//PRE-DEC
    }while(val-- > 10);
    printf("Value = %d",val);
    return 0;
    }
    OUTPUT -
    Value = 7
    Because do while loop executes atleast once, hence
    val-- in while statement makes val = 9
    val-- in loop makes val = 8
    --val makes val = 7
    Therefore, It prints val as 7.
    EVEN IF THE QUESTION IS WHILE LOOP ANS IS NOT 10
    #include
    int main()
    {
    int val=10;
    while(val-- > 10){
    val--;
    --val;
    }
    printf("Value = %d",val);
    return 0;
    }
    OUTPUT - Value = 9.
    QUESTION 12 ANS IS - 0
    #include
    int main()
    {
    int p=2,q=2;
    int fun(int p,int q){
    if(p>0&&q>0){
    return fun(0,2+fun(0,22+fun(0,222+fun(0,2222+fun(0,22222)))));
    }
    q=0;
    return p+q;
    }
    printf("%d",fun(p,q));
    }//prints - 0
    IF PROGRAM IS
    #include
    int main()
    {
    int p=2,q=2;
    int fun(int p,int q){
    if(p>0&&q>0){
    return fun(0,22222+fun(11,5555));
    }
    q=0;
    return p+q;
    }
    printf("%d",fun(p,q));
    }
    IT RETURNS NO VALUE AS THERE IS INCORRECT CODE.
    in console it shows monitored command dumped core.

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

    Thnks bhaiya👌your video is really very helpful

  • @RahulGupta-xc4fg
    @RahulGupta-xc4fg 3 ปีที่แล้ว +4

    sir please make accenture aptitude playlist , these are really helpful

  • @sudipdas9978
    @sudipdas9978 3 ปีที่แล้ว +9

    In the question no 13 do while loop executes once and then it will check condition while will be false meanwhile value will be decreased 3 times (two times in do while body and once while checking the condition) Hence the answer should be 7 but there is no option as 7. I have run it and got 7

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

    For left shift multiply by 2 & for right shift divide by 2

  • @AtanuChakraborty-v5g
    @AtanuChakraborty-v5g 2 หลายเดือนก่อน +1

    sir previous year ka infosys ka question and answer milega ?

  • @raghavdesai8765
    @raghavdesai8765 3 ปีที่แล้ว +13

    Q7 Ans is 13, Q12 Ans is 0 and Q13 Ans is 10. Love the way you teach...

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

      12 th explanation needed

    • @prantobhoumik6586
      @prantobhoumik6586 3 ปีที่แล้ว +1

      Q13 ?? How it came 10??

    • @BilalKhan-wz2jl
      @BilalKhan-wz2jl 3 ปีที่แล้ว +4

      Q13 ans is 8 not 10 because first do run then check the while conditions.....in do while loop at least one time loop run

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

      @@BilalKhan-wz2jl it will 7 because while condition aslo decrease by 1

    • @BilalKhan-wz2jl
      @BilalKhan-wz2jl 3 ปีที่แล้ว +1

      @@prantobhoumik6586 i also think 7. But in while just check the condition not update the value of the val....and also 7 is not the option

  • @AryanKumar-cc7ku
    @AryanKumar-cc7ku 2 ปีที่แล้ว +1

    Answers of H.W
    Q 7.) 13
    Q12.) 0
    Q13.) 7

  • @shivanisahu8075
    @shivanisahu8075 10 วันที่ผ่านมา

    bhaiya ab ye binary kese nikalte ho 4 digit 5 digit

  • @usharoyal24
    @usharoyal24 3 ปีที่แล้ว

    Tq for your efforts and information brother.

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

      Your welcome
      do share it with your friends as well

  • @manaswinidash4896
    @manaswinidash4896 3 ปีที่แล้ว +1

    Thanks 😊

    • @techandtarget
      @techandtarget  3 ปีที่แล้ว

      Your welcome
      do share it with your friends as well

  • @amalendumahato1108
    @amalendumahato1108 3 ปีที่แล้ว +1

    Hey.yesterday suddenly my wifi was disconnect when I wrote accenture exam.when I relogin I can saw there time validity is over. 4.40 a.m I received an email that I cleared that exam eligible for coding round.is there any chance to get another second link for coding round from accenture. Please answer this .

  • @rishitiwari9974
    @rishitiwari9974 3 ปีที่แล้ว

    ye pseudocode infytq m ate hai?

  • @yogiidevkhile4100
    @yogiidevkhile4100 3 ปีที่แล้ว

    Thank u sirr😊

  • @MAYANKROKZVLOGS
    @MAYANKROKZVLOGS 3 ปีที่แล้ว +1

    Q. 7-..ans-13

  • @himanshushrivastava8014
    @himanshushrivastava8014 3 ปีที่แล้ว +1

    Question 5 wrong puting value 7 you are put 110=6not a 7
    111=7

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

    Q7. 13
    Q13 8
    Q12. Doubt

  • @ankitsingh6705
    @ankitsingh6705 3 ปีที่แล้ว

    I could not find mathmtcl nd resnning qstion on yr prvious video plzzzz tll me

  • @sovrajpradhan6542
    @sovrajpradhan6542 3 ปีที่แล้ว

    Question7-ans13
    Question12-ans0
    Question13-ans10

  • @Aazad875
    @Aazad875 3 ปีที่แล้ว +1

    Bhaiya can you please explain Q13 in next video.

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

    Can i use rough work in exam time?

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

    Please explain which function r used in 12 n 13 question

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

    Q.7-13
    Q.12-0
    Q.13-10

  • @myselfdjkunal3786
    @myselfdjkunal3786 3 ปีที่แล้ว +4

    Answers:-
    7. 13
    12. 0
    13. 7

  • @30_patildhirajsunil42
    @30_patildhirajsunil42 3 ปีที่แล้ว

    Question 7. Answer is 13
    Question 12. Answer is 0
    Question 13. Answer is 8

    • @vishalshimpi2480
      @vishalshimpi2480 3 ปีที่แล้ว

      how 12 is 0

    • @gurcharan_kohli
      @gurcharan_kohli 3 ปีที่แล้ว

      And 13 ans is 7

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

      bro plz explain where are we increasing p value in question no 7 that its value become 1 from 0 and the answer becomes 13 mine answer is 12 .

  • @s0ur4v47
    @s0ur4v47 3 ปีที่แล้ว +1

    Q 13 answer 8?,
    I didnt get 12 question

  • @vishalshimpi2480
    @vishalshimpi2480 3 ปีที่แล้ว

    Sir is that necessary to see playlist of capgemini pseudocode ? I was watching 1st video but you update the this video so what should I do reply...??

    • @techandtarget
      @techandtarget  3 ปีที่แล้ว +1

      Hello Vishal
      you can watch capgemini pseudocode playlist as well, you will get a idea of other types of pseudocode questions as well

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

    7question answer is 13 ..is it right ?

  • @prajwalkahate9566
    @prajwalkahate9566 3 ปีที่แล้ว

    I have not received any mail from Infosys. Is there another exam date?

  • @panagantimanisha5780
    @panagantimanisha5780 3 ปีที่แล้ว

    Sir pen and paper is allowed or not for infosys system engineer assessment

  • @lateshkulkarni5609
    @lateshkulkarni5609 3 ปีที่แล้ว

    please make a video on the explation of binary values of any no.

  • @aryansinghau0036
    @aryansinghau0036 3 ปีที่แล้ว

    Sir 13 me ek baar to loop chalega na...kyuki Do while loop he... bhale while ki condition false ho but 1 baar to execute hoga na sir?

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

      Thats happen in do while loop

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

      @@nikhilmore8588 Do while hi to use hua he bro 13th me

  • @mantudas5301
    @mantudas5301 3 ปีที่แล้ว +1

    Jo tough tha wahi Hw.. batana tha bhai exam me aa gye waisa to 😐

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

    9th one string concatination ans should be 2+2=22

    • @helliexo6726
      @helliexo6726 หลายเดือนก่อน

      kaha place hua bhai

  • @B__TirnaSil
    @B__TirnaSil 3 หลายเดือนก่อน

    This playlist is enough to crack the pseudocode of Infosys?

    • @techandtarget
      @techandtarget  2 หลายเดือนก่อน

      Yes, this playlist will cover all the concepts required for Infosys pseudocode questions.

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

    12th nd 13th explanation needed sir....

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

    Q12) ANS =0 , Q13) 10 ANS

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

    12Q answer is 2 and 13Q is 10

  • @farhanqureshi6828
    @farhanqureshi6828 3 ปีที่แล้ว

    Ques no 7, ans-13

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

    Q13) ANS 8 Q12) 0

  • @sakshiawadhiya7267
    @sakshiawadhiya7267 3 ปีที่แล้ว

    Puzzle in one video bana digieye questions for Infosys

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

    Q7: ANS Was 13 Output

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

    Q7) ANS 13

  • @gkboss6302
    @gkboss6302 3 ปีที่แล้ว +1

    Question no 7 can anyone explain ??

  • @aftaabkhanfitnessandvloggi2558
    @aftaabkhanfitnessandvloggi2558 3 ปีที่แล้ว

    Q-7 - 14
    Q12 - 0
    Q13 - 10

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

    Q7 IS 13

  • @rupalimore1686
    @rupalimore1686 2 หลายเดือนก่อน

    Q. 7 answer is 13

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

    Sir , please do video in English

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

    Anyone knows can we switch questions before and after seeing those questions in Infosys exam..?

    • @paragwatve1
      @paragwatve1 3 ปีที่แล้ว +1

      No you can't switch.

    • @amitpatel1194
      @amitpatel1194 3 ปีที่แล้ว +1

      @@paragwatve1 ok thanks..!

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

      Beta you can't switch questions 😂

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

      @@saurabhkushwaha9685 What ...theres no mark for review and we cannot come back to a question??

  • @kirani.201
    @kirani.201 3 ปีที่แล้ว

    Sir plz keep puzzles also

  • @vishalshimpi2480
    @vishalshimpi2480 3 ปีที่แล้ว

    Q.7 ans = 13

  • @_SAURABHKUMAR-uv7xm
    @_SAURABHKUMAR-uv7xm 10 หลายเดือนก่อน

    7-13, 12-2, 13-8

  • @SaiKumar-qc4hp
    @SaiKumar-qc4hp 3 ปีที่แล้ว

    Q7 - 13
    Q12 - 2
    Q13 - 8

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

    7 ki binari galti hai na sir

  • @sameerabdullah9694
    @sameerabdullah9694 3 ปีที่แล้ว

    7th =20
    12th = 0
    13th = doubt

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

    7-binary 111 hay sir

  • @prernapriya8699
    @prernapriya8699 3 ปีที่แล้ว

    Q7.13
    Q12. 0
    Q13.10

  • @ramchandraparab1091
    @ramchandraparab1091 3 ปีที่แล้ว

    Q7 Ans 13

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

    q.13=7

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

    Uska ans 1 hona chahiye shayad

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

    Can anyone plz explain 11?

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

    explain 12 please someone

  • @naveshpatil7574
    @naveshpatil7574 3 ปีที่แล้ว

    Q7=13
    Q12=0
    Q13=10

    • @techandtarget
      @techandtarget  3 ปีที่แล้ว

      Great

    • @RahulGupta-xc4fg
      @RahulGupta-xc4fg 3 ปีที่แล้ว +2

      How come Q13 = 10, i guess it should be 7

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

      @@RahulGupta-xc4fg yeah! you are right 7 is the right answer

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

      @@nejamuddinali3741 How read question carefully 7 is not even in option

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

      can u explain the 12th one ?

  • @omkarguptaji
    @omkarguptaji 3 ปีที่แล้ว

    7=13
    12=0
    13=9

  • @asmakhan6113
    @asmakhan6113 3 ปีที่แล้ว

    15

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

    12

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

    13

  • @psgawhale8505
    @psgawhale8505 3 ปีที่แล้ว +3

    Question no-9
    Ans is -6
    Use binary addition rule
    2-0010
    2-0010
    Results of addition
    0110
    I.e 6 in decimal

    • @pranshubasak8796
      @pranshubasak8796 3 ปีที่แล้ว

      2 - 010
      2 - 010
      -------------
      4 - 100
      ye hoga kya bro

    • @psgawhale8505
      @psgawhale8505 3 ปีที่แล้ว

      @@pranshubasak8796 See addition rules 0110 ko decimal me convert Karo to 6 is a ans

    • @pranshubasak8796
      @pranshubasak8796 3 ปีที่แล้ว

      @@psgawhale8505 Bhai 0110 nahi ayega na

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

      @@wretchedman323 0100 is correct. Ans D .

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

      your addition is wrong,,,,010+010=100(4)

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

    Q5 ka ans galat lag raha hai
    Pls koi use phir se explain kare

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

    0

  • @aishu_shorts9496
    @aishu_shorts9496 3 ปีที่แล้ว +8

    Q. 7= 13
    Q. 12=0
    Q. 13=10

  • @aryansinghau0036
    @aryansinghau0036 3 ปีที่แล้ว +4

    Q.7. 13
    Q12. 0
    Q13. 7

  • @RahulGupta-xc4fg
    @RahulGupta-xc4fg 3 ปีที่แล้ว +5

    Q.7-13
    Q.12-0
    Q.13-7

  • @thecopyninja-kakashi
    @thecopyninja-kakashi 3 ปีที่แล้ว +3

    Q7- 13
    Q12-0
    Q13-10

    • @techandtarget
      @techandtarget  3 ปีที่แล้ว +1

      Great

    • @sayankarmakar2910
      @sayankarmakar2910 3 ปีที่แล้ว +3

      @Gokul Job 12) all f(0,22222), f(0,2222), f(0,222), f(0,22), f(0,2) return 0.
      for example, f(0,22222) here p=0 , q=22222
      for the value of q=22222 if condition has failed,
      so it update the value of q=0
      hence it simply return (0+0)=0.
      similarly all the function return 0.
      13) ans:7

  • @Kishore-qk9dx
    @Kishore-qk9dx 2 ปีที่แล้ว

    13

  • @manaswinidash4896
    @manaswinidash4896 3 ปีที่แล้ว +1

    Q7-13
    Q12-0
    Q13-8