Java 8 Coding Interview Questions | Multiply Array elements | #2

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

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

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

    Nice video but your voice is not clear
    Thank you for your hard work

  • @rsbalhara11
    @rsbalhara11 3 года назад +1

    Are you going to provide the code? GitHub or any other place where you are putting your code?
    Please reply!!!!!!!!

  • @saikrishna-wi2kg
    @saikrishna-wi2kg Год назад

    content is very good, but audio seems to be improved, please make it once observed

  • @jskr456
    @jskr456 3 года назад

    Good explanation 👍🏻👍🏻

  • @krishanuchakraborty3500
    @krishanuchakraborty3500 3 года назад +2

    Can you please use a good mic or use the head phone mic in a proper way, would really upgrade your videos.

    • @DrunkenEngineer
      @DrunkenEngineer  3 года назад +1

      Will work on it Krishanu.
      Thanks for the feedback.

  • @KIRANKUMAR-mh3jz
    @KIRANKUMAR-mh3jz 3 года назад +4

    If you are interested to share your knowledge, pls concentrate on your voice and explanation

    • @DrunkenEngineer
      @DrunkenEngineer  3 года назад

      Thanks for the feedback Kiran,
      We are working on it.

  • @vishaljagdale9412
    @vishaljagdale9412 2 года назад +1

    please use good mic

  • @techieadi4377
    @techieadi4377 2 года назад +1

    Voice is not proper buddy

  • @Harithachowdary-tj9ly
    @Harithachowdary-tj9ly Год назад

    sound quality is too bad

  • @MrSid2279
    @MrSid2279 3 года назад

    Voice quality is pretty bad. Not able to understand anything.

  • @mdumarreza3072
    @mdumarreza3072 3 года назад +1

    Bro your voice is coming so bed

  • @opmarathi64
    @opmarathi64 11 месяцев назад

    int[] arr = { 1, 2, 3, 4, 5 };
    List lisOfInt = Stream.of(arr).flatMapToInt(i -> Arrays.stream(i)).boxed()
    .collect(Collectors.toList());
    Optional multiply = lisOfInt.stream().reduce((a, b) -> a * b);
    if (multiply.isPresent()) {
    System.out.println("Multiplication of each element of array is : " + multiply.get());
    } else {
    System.out.println("ERROR");
    }