Java Spring Boot 3.2 Years Interview Experience

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

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

  • @genz-career
    @genz-career  2 หลายเดือนก่อน +3

    Complete Interview Preparation Material: topmate.io/genzcareer/930954
    Interview Preparation Kit: topmate.io/genzcareer/959954
    I would recommend you to get above Interview Preparation kit and crack any interview [99% Chance]

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

    Thanks for the free content, this is really helpful for Java interview prep.

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

    Good Questions.
    Thank you for providing free content ❤

  • @shubhamjaiswal8590
    @shubhamjaiswal8590 2 หลายเดือนก่อน +4

    Wow, this one was hard, questions weren't straight forward
    He did great for 3 years experiance guy👍

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

    WAP To print the sum of alternate indices of an array
    List asList = Arrays.asList(1,2,3,4,5,6,7,8,9,10);

    int sum = IntStream.range(0, asList.size()).filter(x->x%2!=0).map(i->asList.get(i)).sum();

    System.out.println(sum); use intstream

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

    Materials pdf or videos plz let me know ?

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

    List l1 = Arrays.asList(7,1,5,3,6,4);
    System.out.println(l1.stream().filter(x->l1.indexOf(x)%2==1).reduce(Integer::sum));

  • @jitendrakumar-fg4ll
    @jitendrakumar-fg4ll 2 หลายเดือนก่อน

    Which are the topics covered you in this pdf ?

    • @genz-career
      @genz-career  2 หลายเดือนก่อน

      @@jitendrakumar-fg4ll everything

    • @jitendrakumar-fg4ll
      @jitendrakumar-fg4ll 2 หลายเดือนก่อน

      @@genz-career there is any index

  • @Black_hacker-mj2ro
    @Black_hacker-mj2ro หลายเดือนก่อน +1

    public static void main(String[] args) {
    List numbers = Arrays.asList(10, 20, 30, 11, 21, 31);
    System.out.println(sum(numbers));
    }
    public static int sum(List numbers) {
    return (int) numbers.stream().collect(Collectors.partitioningBy(num -> num % 2 == 0)).get(true).stream()
    .collect(Collectors.summarizingInt(Integer::intValue)).getSum();
    }