Star Pattern Logic - Part 1 - By Naveen AutomationLabs

แชร์
ฝัง
  • เผยแพร่เมื่อ 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.

  • @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..!!

  • @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

  • @sagarpawar2847
    @sagarpawar2847 2 ปีที่แล้ว +1

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

  • @souvikchatterjee7400
    @souvikchatterjee7400 3 ปีที่แล้ว +1

    Your explaination is always very helpful Naveen

  • @snehap2127
    @snehap2127 3 ปีที่แล้ว

    crystal clear way of teaching, thanks a ton

  • @gyanendrasingh9712
    @gyanendrasingh9712 3 ปีที่แล้ว

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

  • @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. :)

  • @roshankumargupta3711
    @roshankumargupta3711 3 ปีที่แล้ว +4

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

  • @kotyo82
    @kotyo82 2 ปีที่แล้ว

    Very good explanation , thanks alot 🤲

  • @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.

    • @kali4844
      @kali4844 3 ปีที่แล้ว

      for example

  • @13success66
    @13success66 2 ปีที่แล้ว

    So beautiful explanation

  • @madhumitapal4301
    @madhumitapal4301 3 ปีที่แล้ว +1

    Great work Naveen 🙏

  • @13success66
    @13success66 2 ปีที่แล้ว

    Coding is easy from navin sirji

  • @samcamara6810
    @samcamara6810 2 ปีที่แล้ว

    well explained and detailed

  • @maheshlondhe2781
    @maheshlondhe2781 2 ปีที่แล้ว

    Great Explanation🙏

  • @anmolsandal3454
    @anmolsandal3454 3 ปีที่แล้ว

    Thanku sir very well explained👍,love this java series

  • @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

  • @mahalakshmikalepu3627
    @mahalakshmikalepu3627 3 ปีที่แล้ว

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

  • @keepitsimple9935
    @keepitsimple9935 2 ปีที่แล้ว

    Thank you Naveen.

  • @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👍👍👍

  • @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

  • @aayushpatel3360
    @aayushpatel3360 3 ปีที่แล้ว +1

    nice approach

  • @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

  • @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

  • @pandudamera7211
    @pandudamera7211 3 ปีที่แล้ว +1

    Thank you brother

  • @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++;

  • @ambadipudia1958
    @ambadipudia1958 3 ปีที่แล้ว

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

  • @saalimhussain6635
    @saalimhussain6635 3 ปีที่แล้ว

    Matrix array addition subtraction ?

  • @suprabathj7843
    @suprabathj7843 3 ปีที่แล้ว

    Nice Sir

  • @JAI-iy3fq
    @JAI-iy3fq 3 ปีที่แล้ว

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

  • @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

  • @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