Capgemini Latest OA Coding Solution | 16 Sept Complete Explanation

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024
  • This video provides a complete explanation of the Capgemini OA coding solutions from the 16 Sept assessment. We cover step-by-step solutions to help you crack the coding round and boost your chances of success in Capgemini's recruitment process.
    Taste Difference - leetcode.com/p...
    Max Sweetness - leetcode.com/p...
    Prime Coding LinkedIn: / primecoding
    Prime Coding Instagram: / primecoding
    Subscribe, like the channel and leave a comment!
    Interview preparation playlists:
    Interview Preparation: • Interview Preparation
    TCS: • TCS Interview Playlist
    Accenture: • Accenture
    Wipro: • Wipro
    Tech Mahindra: • Tech Mahindra
    🖥️ Prime Coding Community (Notes/Hiring Updates/Ask Doubt):
    Join telegram: t.me/+z0_jpru_...
    1:1 Mentorship Program: www.primecodin...
    Join us on social media:
    📷 All links: linktr.ee/adit...
    📧 For more info, contact us at - contactprimecode@gmail.com
    Don't forget to like, comment, and subscribe for more updates and preparation tips!

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

  • @swarnayendoti77
    @swarnayendoti77 2 วันที่ผ่านมา +3

    I wrote the exam on 19th sep, till behaviour round then ended the exam what is the next round

    • @nandhu2703
      @nandhu2703 2 วันที่ผ่านมา

      Same. How do we know we got shortlisted for the next rounds

  • @rickyparte819
    @rickyparte819 3 วันที่ผ่านมา

    I have question.. If i write code and its TC is O(NlogN) and solution accepted.. And my friend also write code and his code TC is O(N) then is they compare our code to select on basis of TC and SC...

    • @PrimeCoding19
      @PrimeCoding19  3 วันที่ผ่านมา

      No, I always try to give you the optimal code because in the worst case you need to solve the question in the optimal way..

    • @Zoro-Oi
      @Zoro-Oi 3 วันที่ผ่านมา

      Bro used heap concept ,don't you ?

  • @yaswanth........3721
    @yaswanth........3721 2 วันที่ผ่านมา

    When we except Capgemini on campus drive for 2025 passouts?

    • @omjadhav3964
      @omjadhav3964 2 วันที่ผ่านมา

      2025 oncampus drive is ongoing

  • @omjadhav3964
    @omjadhav3964 2 วันที่ผ่านมา

    svar round

  • @karthikeyan-yk9kf
    @karthikeyan-yk9kf 3 วันที่ผ่านมา

    Bro i have solved two python coding question and i have not cleared both query question and did good in cloud will i have a chance to selected for next round? Please reply bro i have attented query i got partial table output one query question also bro is there any chance please reply bro? I am so frustrated now😢

    • @77_amankumar63
      @77_amankumar63 2 วันที่ผ่านมา

      as there is a sectional cut-off....wait for the result, if the query were hard, then it was definitely hard for everyone, and the same for cloud.....so hope for the best!!

    • @swarnayendoti77
      @swarnayendoti77 2 วันที่ผ่านมา

      @@karthikeyan-yk9kf coding round held the same day along with technical to behaviour round or another day

  • @Zoro_0797
    @Zoro_0797 2 วันที่ผ่านมา

    For coding round in capegemini do we have to write the main function or we have to write the code directly into a function???

    • @omjadhav3964
      @omjadhav3964 2 วันที่ผ่านมา

      they give main function, you have to take input and print output.

    • @FireboiPLAYS1
      @FireboiPLAYS1 วันที่ผ่านมา

      @@omjadhav3964 was python option there?

    • @omjadhav3964
      @omjadhav3964 วันที่ผ่านมา

      ​@@FireboiPLAYS1 i think no

  • @kajalkundu1645
    @kajalkundu1645 2 วันที่ผ่านมา

    import java.util.Scanner;
    import java.util.Arrays;
    public class Forexp {
    public static int FindTasteElement(int[] Array){
    int MAX=Arrays.stream(Array).max().getAsInt();
    int MIN=Arrays.stream(Array).min().getAsInt();
    return MAX-MIN;
    }
    public static void main(String[] args) {
    Scanner sc=new Scanner(System.in);
    System.out.println("Enter size of array :");
    int n = sc.nextInt();
    int[] Array=new int[n];
    System.out.println("enter numbers in array : ");
    for(int i=0;i