Star Pattern Logic - Part 1 - By Naveen AutomationLabs

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

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

  • @MarriAvinash
    @MarriAvinash 3 года назад +14

    Nice explanation Naveen, with this no one can forget the concept.. one can answer from the sleep..🙏🙏👍

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

      The key is explanation, its hard. You need mentor to guide you.

  • @sanghamitrabhowmicklive3013
    @sanghamitrabhowmicklive3013 3 года назад +10

    I started loving programming because of your explanation techniques..you are just the best 👌

  • @PoojaThakur-bp2tz
    @PoojaThakur-bp2tz 3 года назад +5

    @Naveen - We need teacher like you in school and colleges. As most of us struggle with the fundamental because our basics are not clear and in this our faculties are also responsible
    I used to watch videos to understand the ⭐ pattern but no one ever explained the way you do.
    Much appreciated
    🙏

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

      The faculties in general colleges(not the premier ones) are those who didn't get any jobs and became a lecture later on. Here Students career is at stake. That's the reason Education system in India is so poor.

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

    Wow Thank You so much Naveen finally you made this video..... I am literally a person who strives to view this video in your explanation..... Thanks a lot

  • @koustavchakraborty1610
    @koustavchakraborty1610 3 года назад +6

    Your Java Interview Questions and Solutions are really helpful....!!And you explain every concepts so simply and it becomes easy to understand..Keep Uploading more and more interview Questions like these..!!

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

    The Great way of Explaination Naveen... Concept Fit in Mind forever.💯☑️🙏

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

    Very well explained Naveen Sir. When any interviewer asked to do practically then we are always do mistakes. The way, you have explained this, No one can forget these patterns. :)

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

    Thanks 🙏🏼 Naveen.. Tum jio hazaro Sal... I was looking for this and you uploaded...

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

    crystal clear way of teaching, thanks a ton

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

    Your explaination is always very helpful Naveen

  • @13success66
    @13success66 2 года назад

    Coding is easy from navin sirji

  • @akshaymore1991
    @akshaymore1991 3 года назад +3

    the importance of star patterns is only revealed when u get trapped in complicated projects and start patterns helps u out.

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

    I started following all your videos and it has helped me to understand better. Thanks alot for these videos...Please post videos about resolving complex programs

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

    Thanku sir very well explained👍,love this java series

  • @kotyo82
    @kotyo82 2 года назад

    Very good explanation , thanks alot 🤲

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

    Thank you sir 🙏very much useful for the freshers like me

  • @roshankumargupta3711
    @roshankumargupta3711 3 года назад +4

    Thanks a lot sir.. can we start #100days coding challenge?

  • @13success66
    @13success66 2 года назад

    So beautiful explanation

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

    Great work Naveen 🙏

  • @keepitsimple9935
    @keepitsimple9935 2 года назад

    Thank you Naveen.

  • @maheshlondhe2781
    @maheshlondhe2781 2 года назад

    Great Explanation🙏

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

    Hi Naveen,
    How we can integrate and use JSON files as test data with POM Framework?? Please make a video on that

  • @samcamara6810
    @samcamara6810 2 года назад

    well explained and detailed

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

    What is the application of the star pattern in real world?

  • @facethetruth3039
    @facethetruth3039 2 года назад

    Sir are you working on Seimens healthcare..

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

    Kudos sir👍👍👍

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

    Naveen awesome explanation. Create more programming interview questions videos. The above link contains lots of programs asked in the interview. Could you please make videos on them

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

    Thank you brother

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

    nice approach

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

    Hi naveen could u please cover allure report integration with POM pytest framework and api testing with python

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

    public class Pattern2
    {
    public static void main(String[] args)
    {
    Scanner sc=new Scanner(System.in);
    System.out.println("Enter number of Rows");
    int rows=sc.nextInt();

    for(int i=rows;i

  • @AbdullahKhan-dl9lm
    @AbdullahKhan-dl9lm 3 года назад +1

    Can you make video in which we have to print numbers instead of star? Also the numbers should start from 1 in each line.

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

      declare an int inside outer loop and initialize with number you want to start with, like
      int a = 1;
      then inside inner loop instead of print("*"), use
      print(a)
      then increament a:
      a++;

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

      if you're asked to print letters instead of numbers, same logic, just use a char instead of int:
      char ch = 'A';
      and increament ch inside inner loop after print ad
      ch++;

    • @AbdullahKhan-dl9lm
      @AbdullahKhan-dl9lm 3 года назад

      @@MohammedAbHaseeb no, to print alphabets you need to use ASCII values

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

      @@AbdullahKhan-dl9lm char uses ASCII only
      I wrote same logic in C#, it just works fine.
      Try once in Java

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

    Nice Sir

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

    Sir also explain number patterns

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

      declare an int inside outer loop and initialize with number you want to start with, like
      int a = 1;
      then inside inner loop instead of print("*"), use
      print(a)
      then increament a:
      a++;

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

    Matrix array addition subtraction ?

  • @JAI-iy3fq
    @JAI-iy3fq 3 года назад

    Hii sir,
    If u don't mind
    May I know the ide...?

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

    Better to explain in board rather than paint

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

    Today I had js interview I wrote this with just 1 for loop , still she rejected me lol

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

    Thank you so much Sir

  • @satishdhore6854
    @satishdhore6854 2 года назад

    Thanks you so much sir