Capgemini Latest OA Coding Solution | 16 Sept Complete Explanation

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

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

  • @bandarupallibhargavi9676
    @bandarupallibhargavi9676 2 месяца назад +2

    provide the capgemini sheet coding questions we have the drive on the coming week

  • @unearth709
    @unearth709 Месяц назад

    QuickSort Dual Pivot

  • @swarnayendoti77
    @swarnayendoti77 3 месяца назад +4

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

    • @Millii2703
      @Millii2703 3 месяца назад

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

    • @YashGupta-tj9ee
      @YashGupta-tj9ee Месяц назад

      bro please reply i have one doubt like in the coding round do we have to just write the function or logic part as we do on leetcode or we will need to write the whole code like taking the user input and all the other function as well please reply

  • @rickyparte819
    @rickyparte819 3 месяца назад +1

    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 месяца назад +1

      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 ?

    • @YashGupta-tj9ee
      @YashGupta-tj9ee Месяц назад

      bro please reply i have one doubt like in the coding round do we have to just write the function or logic part as we do on leetcode or we will need to write the whole code like taking the user input and all the other function as well please reply

    • @rickyparte819
      @rickyparte819 Месяц назад

      @@YashGupta-tj9ee No not like leetcode they ggive you problem statement and you need to write whole code

  • @CZGAMERYT
    @CZGAMERYT Месяц назад +1

    Will we still be eligible for 4.25 if we are not able to solve a single coding question

    • @YashGupta-tj9ee
      @YashGupta-tj9ee Месяц назад

      bro please reply i have one doubt like in the coding round do we have to just write the function or logic part as we do on leetcode or we will need to write the whole code like taking the user input and all the other function as well please reply

    • @CZGAMERYT
      @CZGAMERYT Месяц назад

      @ need to write the code from scratch

  • @yaswanth........3721
    @yaswanth........3721 3 месяца назад

    When we except Capgemini on campus drive for 2025 passouts?

    • @omjadhav3964
      @omjadhav3964 3 месяца назад +1

      2025 oncampus drive is ongoing

  • @omjadhav3964
    @omjadhav3964 3 месяца назад

    svar round

  • @VADAKALASAIBHAGATH22R05A0
    @VADAKALASAIBHAGATH22R05A0 2 месяца назад

    is there anyone who written code in python in coding round ? please say

    • @ganeshroy7200
      @ganeshroy7200 Месяц назад

      Same doubt bro

    • @YashGupta-tj9ee
      @YashGupta-tj9ee Месяц назад

      bro please reply i have one doubt like in the coding round do we have to just write the function or logic part as we do on leetcode or we will need to write the whole code like taking the user input and all the other function as well please reply

    • @VADAKALASAIBHAGATH22R05A0
      @VADAKALASAIBHAGATH22R05A0 Месяц назад +1

      We should write whole by taking inputs not like leetcode

  • @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 3 месяца назад

      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 3 месяца назад +1

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

    • @amalayakin4411
      @amalayakin4411 Месяц назад

      Bro, for coding round, can use python or java?

    • @YashGupta-tj9ee
      @YashGupta-tj9ee Месяц назад

      bro please reply i have one doubt like in the coding round do we have to just write the function or logic part as we do on leetcode or we will need to write the whole code like taking the user input and all the other function as well please reply

  • @Zoro_0797
    @Zoro_0797 3 месяца назад +1

    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 3 месяца назад +2

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

    • @FireboiPLAYS1
      @FireboiPLAYS1 3 месяца назад +1

      @@omjadhav3964 was python option there?

    • @omjadhav3964
      @omjadhav3964 3 месяца назад +1

      ​@@FireboiPLAYS1 i think no

    • @ravisatyainjarapu6452
      @ravisatyainjarapu6452 3 месяца назад +1

      hello.I completed my coding test just now, but I only executed one code out of 2. will they consider me???

    • @Im_shru
      @Im_shru 3 месяца назад

      ​@@ravisatyainjarapu6452 yah mee too

  • @kajalkundu1645
    @kajalkundu1645 3 месяца назад

    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