Deloitte NLA Coding Questions & Answers | Crack Deloitte Off Campus Hiring 2025

Поделиться
HTML-код
  • Опубликовано: 12 янв 2025

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

  • @anamikasharma6382
    @anamikasharma6382 17 часов назад

    very informative

  • @Vidhi_Waghmare
    @Vidhi_Waghmare День назад +2

    Fresh grad from a tier-3 college! 🎓 Can't believe Deloitte is hiring off-campus - been grinding aptitude questions like crazy! Really need that PrepInsta Prime to boost my prep game. Manifesting that Deloitte dream! 🤞✨ #FresherLife 🙏

    • @PrepInsta
      @PrepInsta  2 часа назад +1

      Hey !! thanks for the feedback, also reach out to us anytime on : prepinsta.com/whatsapp/

    • @Vidhi_Waghmare
      @Vidhi_Waghmare 2 часа назад

      @PrepInsta but the group is full

  • @muktirajbhusal4540
    @muktirajbhusal4540 День назад

    Very informative video.

    • @PrepInsta
      @PrepInsta  3 часа назад

      Thanks for the feedback!!

  • @omkate7505
    @omkate7505 День назад

    1. Problem will lead to O(n)2 time complexity so rather than this we can use two pointer approach for a optimized solution.

  • @Hiringjobupdates
    @Hiringjobupdates День назад

    Thank you so much sir for explain this question

    • @PrepInsta
      @PrepInsta  3 часа назад

      Thanks for the feedback

  • @Adiiiiiii460
    @Adiiiiiii460 2 часа назад

    sir i have not followed resume format can i reapply with my another email id?

    • @PrepInsta
      @PrepInsta  2 часа назад

      Reach out to us : prepinsta.com/whatsapp/

    • @Adiiiiiii460
      @Adiiiiiii460 2 часа назад

      ​@@PrepInsta group is full

  • @Moyemoye7071
    @Moyemoye7071 День назад

    If you give the prep insta prime access you will be the one of the reason for my step to success

    • @PrepInsta
      @PrepInsta  3 часа назад

      For prime details please reach out us on : prepinsta.com/whatsapp/

  • @Maxx_vibes
    @Maxx_vibes День назад

    num=int(input("Enter a Integer: "))
    s=""
    while num > 0:#convering to binary
    r=num%2
    s=str(r)+s
    num=int(num/2)
    ts=""
    for i in s:#toggling the bits
    if i=="0":
    ts+="1"
    else:
    ts+="0"
    print(s)
    print(ts)
    op=0
    for i in range(0,len(ts)):#converting to decimal
    if ts[::-1][i]=="1":
    op+=(2**i)
    print(op)

  • @Adiiiiiii460
    @Adiiiiiii460 День назад

    in Deloitte nla exam it is compulsory to solve both coding questions?

    • @PrepInsta
      @PrepInsta  3 часа назад

      For more info DM us on : prepinsta.com/whatsapp/

  • @gaddesravani2808
    @gaddesravani2808 День назад

    Hello sir.
    How can i access the prepinsta prime

    • @PrepInsta
      @PrepInsta  3 часа назад

      Reach out to us on : prepinsta.com/whatsapp/

    • @gaddesravani2808
      @gaddesravani2808 3 часа назад

      @@PrepInsta how can I access this

  • @rakshatanwar3265
    @rakshatanwar3265 День назад

    Sir How can i access the prepinsta prime ?

    • @PrepInsta
      @PrepInsta  3 часа назад

      Hey !! please dm us on : prepinsta.com/whatsapp/

    • @rakshatanwar3265
      @rakshatanwar3265 2 часа назад

      @PrepInsta sir prime to free me access nahi ho raha he sir aapne kaha tha top 3 comments ko prepinsta prime free me denge but is per click karne ke baad to yah subscription mang raha he

  • @muktirajbhusal4540
    @muktirajbhusal4540 День назад

    I also wanted Prep Insta Prime

    • @PrepInsta
      @PrepInsta  3 часа назад

      Hey !! reach out us on : prepinsta.com/whatsapp/

  • @rakshatanwar3265
    @rakshatanwar3265 День назад

    Thankyou sir

  • @SachinRathod-h4o
    @SachinRathod-h4o День назад +4

    Please help me sir prime is free for me my education is also on Education loan then please this opportunity give to me to get placed on Deloitte

    • @aaryjoshi5233
      @aaryjoshi5233 12 часов назад

      Coding round clear krna hai toh bata mai free mai sikha dunga

    • @NEW_TREND129
      @NEW_TREND129 2 часа назад

      How?​@@aaryjoshi5233

    • @PrepInsta
      @PrepInsta  2 часа назад

      Reach out to us on : prepinsta.com/whatsapp/

  • @lokesh-0612
    @lokesh-0612 17 часов назад

    Prime please

    • @PrepInsta
      @PrepInsta  3 часа назад

      Hey ! glad you reach out , Dm us on : instagram.com/prepinsta.2025/

  • @SaumyaKaushal-pi5er
    @SaumyaKaushal-pi5er День назад

    I have a doubt sir could you please help me

    • @PrepInsta
      @PrepInsta  3 часа назад

      Reach out to us on : instagram.com/prepinsta.2025/

  • @aary-s3e
    @aary-s3e День назад

    do companies really ask such easy questions ? these questions are not even 800 on cf

    • @PrepInsta
      @PrepInsta  2 часа назад

      Please drop your queries on : prepinsta.com/whatsapp/

  • @adityashrivastava9014
    @adityashrivastava9014 День назад

    Prepinsta

  • @AmitMourya-k6m
    @AmitMourya-k6m 22 часа назад

    Help me

    • @PrepInsta
      @PrepInsta  2 часа назад

      Reach out to us on : prepinsta.com/whatsapp/

  • @AvinashreddyKolan
    @AvinashreddyKolan День назад

    import java.util.*;
    class Main {
    public static void main(String[] args) {
    int n=10;
    String s="";
    while(n>0){
    int rem=n%2;
    s=s+rem;
    n=n/2;
    }
    StringBuilder sb=new StringBuilder();
    for(int i=s.length()-1;i>=0;i--){
    sb.append(s.charAt(i));
    }
    String rev=sb.toString();
    StringBuilder sb2=new StringBuilder();
    for(int i=0;i

    • @aary-s3e
      @aary-s3e День назад

      int n;
      cin>>n;
      int bit=0,cnum=n;
      while(cnum){
      n^=(1=1;
      }

  • @rishiraghuwanshi5762
    @rishiraghuwanshi5762 4 часа назад

    Prime free me milega sch me 🫡

    • @PrepInsta
      @PrepInsta  3 часа назад

      For more details regards to prime reach out us on : prepinsta.com/whatsapp/