cant tell u how happy I got when I paused the vdo and cracked the rhombus code myself and got succesful output with your help..thanks for building my concepts
Didi, your diamond pattern's logic was amazing.....you are keeping the row number as it is and just in j loop you have taken the logic of odd as 2*i-1. As a result row number can be easily accessed for other tasks....wonderful!!!
Thank you so much didi. In the previous video I wasn't able to make even a single pattern without the solution. Today after the butterfly question, I was able to do each and every pattern without the solution. I would like to say that, Persistence is the key guys. Keep working hard and shine like stars in the sky.
@@arnikakothari492 ya i thing there is something missing when i make butter... patt... soo my code is very different from didi code and i copy didi code but i did'n get the pattern by didi code
Hello ma'am, I really appreciate your efforts and your way of explaining... I am from non IT background, i just think to go through the fundamentals of programming nd firstly i gone through your two or three lectures, now i can must say that programming is not that much hard as all are think..its just becuz of your way of teaching.. Thank you so much for this courses...
Di thanku i printed all of these pattern by my own without watching explanation , because of last video's i cleared my logic and my all doubts Thanku so much 🤩
Thank you so much! This series is helping a lot to me and Your lectures made coding much easy to me. I'm a non IT student so this field is completely new for me it seems difficult when i was started a week ago but from your lectures I'm now able to get solve the questions, making logic by own and now I'm much familiar with this! :)
Hi Ma'am, huge respect for you for taking this initiative to teach us. The courses are simple, clear, and to the point. As a person from a non-engineering background, the sessions are very productive and easy to understand. It also pushes me to practice more and come up with my own solutions. I've solved the number pyramid problem in another way and believe it may also be helpful. Please find the code below: - int a = 5; int b = 9; for(int i= 1;i
I see programming is all about Mathematical logics, once you know the concepts you just need to apply them. This things (Coding) is not even any branch specific so I guess If you love math then it's perfect to code and for me I am totally fine.
dear didi, the diamond in question and the diamond we got in the video otes are not same. in order to get the same diamond ; in spaces we need to have double spaces ;in printing * we need to have * +space; and after upper half we need to give a space and reverse the upper half. I am very greatful to this series and thx for your teachings didi.
.....jaise hi program run hokar output aata hai uss time aapke chahre ki smile ek alag andaz me hoti hai🙂....sabhi ko uski hi need hai☺.....bhut shukriya aapka🙏.!!
lots of love and respect from pakistan Sharadidi you are my inspiration ANd i really your work hard love you sistet God bless you always b happy with AMAN BAYIA stay blessed
one of the my favourite teacher in a whole time of college.😊😊🥰🥰 by the way kisi ne notice kiya? pichhe plane ka noise aya tha. aju baju me hi airport hain.
I am so happy that i have printed solid rhombus and number pyramid by myself without seeing the solution by shraddha di I am in class 9th and i wanna become a software engineer... ❤❤
Please make a Video on Electronics And Communication Enginnering Students... For eg: Core Job vs Software Job What courses they have to learn. What are job opportunities.. How to get High package in ECE Jobs.
Shraddha didi is herself from CS background so I doubt she knows much about electronics or communication engineering, and Aman bhaiya made this channel especially for **coding** right? So I doubt that he will do, atleast in coming few years
Brother if you can then do MTech before applying for jobs ... And if you want high package then apply for foreign countries also but make sure you have 8+ CGPA and best indepth knowledge of electronic and communication engineering theory ....
These videos are just great and this way of explaining the code and logic is best to self improve, for the people who are having OCD attack on the last diamond pattern with 2 repeating lines of stars, here is the code for //second half of star diamond pattern. for(int i=n-1;i>=1;i--){ for(int j=1;j
Didi, last lecture ka homework Kiya tha iss liye yeh lecture toh almost logic comparison me hi chala gaya😅 aap sikha rahe ho iss liye almost same hi the sirf kuch problem ke logic alag the. Thanks for this course ❤ slowly slowly main bhi logic build karne laga hoon aur ha pata hai ki abhi DSA shuru bhi nahi hua toh abhi bahut lamba safar baki hai.
I got scared looking at that butterfly pattern, but then you explained it so so well that it felt very very simple after coding it, splitting the pattern into tiny patterns is intuition and you did that very well, thank-you so so much shraddha didi.
@@iramkhan4798 no it was not shown as in the image look carefully you will get the mistake It will get printed as same as image when you take n=4 buddy
Another code for Q11: import java.util.*; public class Conditions { public static void main(String args[]) { int n = 5; for(int i=n; i>=1; i--) { //spaces for(int j=1; j
i followed palindrome type algorithm for diamond pattern, but it takes more time :- public class diamond_pattern { public static void main(String args[]) { int n = 5; for (int i = 1; i
Homework Question 3: import java.util.*; public class PascalsTriangle { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); sc.close(); int temp = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < n - i; j++) { System.out.print(" "); } for (int j = 0; j
thanks a looooooooooot didi i can't explain how helpful this playlist is for me plz continue to do such works it is a life saving playlist thanks a lot.
Didi ne ek bohoth choti so galti ki butterfly pattern me and wo thi n=5 deke and Maine n=4 Diya to butterfly pattern ban is aaya😅 lekin explanation is just great!!! Hats off didi.
Madam kaash aap pahle mil gyi hoti college life me ye youtube etc hota kuch to humara bhi programming me interest rahta aur aachi engineering job kar raha hota. Govt job ke chaakar me pad kar babu nhi banana padta😢😢😢 but ab programming me interest bhadh raha h aapke video dekh ke to without seeing any monetary benefit i am learning programing from zero. I hope i will be benefitted from programing🙏🙏🙏🙏🙏
Thanx miss shraddha.this vedio was really helpful . i am doing prepafration for interviews and this one help me a lotlearn a lot about pattern that most of the companies asking such pattern sin technical round .your teaching is fantastic .thanks again:)
Di in notes Questions 6 pattern is not matching with code ... It confused me for a bit but i did it all on my own after getting well explained by you so I didn't made any mistake 😁 thank you didi And please have a look on the homework sheet ☺️
screenshot of Hollow butterfly image I am a beginner to Java and have studied up to loops only. After loops lecture above pattern was given to print as homework. I have successfully managed to print this pattern with following code: public class Main { public static void main(String[] args) { int n = 5; for (int i = 1; i
cant tell u how happy I got when I paused the vdo and cracked the rhombus code myself and got succesful output with your help..thanks for building my concepts
same
Didi literally looked happy when that butterfly wala code got printed😆
Yes
15:12
Gud dude
Yes 🤪
😂
Very Good explanation Ms. Shradha
Knowing coding is great but knowing explaining coding to other person so well is marvelous.
My name is Shraddha too
Time stamps for convince 👨💻👨💻
00:47 --> Butterfly pattern
15:58 --> solid rhombus
21:36 --> number pyramid
27:00 --> palindromic pyramid
33:10 --> diamond pattern
Didi, your diamond pattern's logic was amazing.....you are keeping the row number as it is and just in j loop you have taken the logic of odd as 2*i-1. As a result row number can be easily accessed for other tasks....wonderful!!!
Pascals Traingle Solution (incase anyone's wondering how):
for (int i = 0; i < n; i++) {
int count = 1;
for( int j =0 ; j
In the second last line (i - j) will execute 0 in first step.
Thank you so much didi.
In the previous video I wasn't able to make even a single pattern without the solution.
Today after the butterfly question, I was able to do each and every pattern without the solution.
I would like to say that, Persistence is the key guys. Keep working hard and shine like stars in the sky.
hey did u get the butterfly patter wid didis code? i dont sem yo get it
@@arnikakothari492 did you get it now ??
@@arnikakothari492 yes bro can u get it now?? cause i can't get it
Pucha kisine 😂😂😂
@@arnikakothari492 ya i thing there is something missing when i make butter... patt... soo my code is very different from didi code and i copy didi code but i did'n get the pattern by didi code
Hello ma'am,
I really appreciate your efforts and your way of explaining... I am from non IT background, i just think to go through the fundamentals of programming nd firstly i gone through your two or three lectures, now i can must say that programming is not that much hard as all are think..its just becuz of your way of teaching.. Thank you so much for this courses...
same
10) Butterfly pattern : 0:50
11). Solid Rhombus: 15:50
12). Number pyramid : 21:24
13). Palindromic pattern : 26:56
14). Diamond pattern: 33:07
Need this type of practice question in every topic. Hope you continue like this. And thanks for this awesome session😍
Absolutely brilliant you way of teaching absolutely incredible
ruclips.net/video/-AdgUai3Jkw/видео.html
ruclips.net/video/h1HbQGHVB14/видео.html
I'm from Pakistan and I like your all hard work for all the IT students .....👍
Incredible explanations 🔥🔥🔥 best course for java fundamentals
The amountv of happiness when u code yourself and get the correct ouput.
Di thanku i printed all of these pattern by my own without watching explanation , because of last video's i cleared my logic and my all doubts
Thanku so much 🤩
after doing butterfly pattern for myself.i really feel like im learning something...thanku shraddha didi
Thank you so much! This series is helping a lot to me and Your lectures made coding much easy to me.
I'm a non IT student so this field is completely new for me it seems difficult when i was started a week ago but from your lectures I'm now able to get solve the questions, making logic by own and now I'm much familiar with this! :)
Same ❤️
yaar wo assan code hi hai isliye tujhe assan lag rahe hai
another approach for the diamond question is the same as palindromic pattern:
for(int j = i; j >= 1; j--){
System.out.print(j);
}
for(int j = 2; j
Code will be much bigger
Thank you for such useful videos, now got confidence for coding, very nicely and easily explained every pattern coding
Hi Ma'am, huge respect for you for taking this initiative to teach us. The courses are simple, clear, and to the point. As a person from a non-engineering background, the sessions are very productive and easy to understand. It also pushes me to practice more and come up with my own solutions. I've solved the number pyramid problem in another way and believe it may also be helpful. Please find the code below: -
int a = 5;
int b = 9;
for(int i= 1;i
I see programming is all about Mathematical logics, once you know the concepts you just need to apply them. This things (Coding) is not even any branch specific so I guess If you love math then it's perfect to code and for me I am totally fine.
🎯🎯
Lajawab explainnation. Jab fundamental clear ho aapka to aap new heights tak reach kr skte hain. Respacet++
MS wali didi maine is program ko apke krne se phle try kiya aur mera ho gya aur m bhut khus tha ,pr fir maine ques dekha ....
dear didi, the diamond in question and the diamond we got in the video
otes are not same.
in order to get the same diamond ;
in spaces we need to have double spaces ;in printing * we need to have * +space;
and after upper half we need to give a space and reverse the upper half.
I am very greatful to this series and thx for your teachings didi.
Yes
This Video series help , million of student in university exam as well as placement .
Thanks a lot
Diamond can also by coded as: ( Lecture 6 Q5 Similar to Q4 ) : like butterfly
int n = 5;
for(int i=1; i
this is basically just the palindrome program but just * instead of i . Even I did this , but didi's way seems more efficient
love uh mam..🥰 ur explanation..ur practice questions.. simply extra-ordinary mam..🔥🔥 so much useful for beginners..#best course for JAVA.
Didi bahut jyada hard work kar rahi h
Microsoft vali dii ❤️❤️
@@shakthivelsappani4713 Shraddha
You guys are helping a lot...and thanks for this series, Didi...Respect++
Will you learn C++
Bruh
Bro was playing gta
For the Number Pyramid we print 1 space with each number, i.e, System.out.print(i+" "); and this will be present inside a for loop running from 1->i
Hi Didi,
In topic pattern (question-10) you had give the value of ( int n = 5 ) instead of ( int n = 4 ) 😁
😂 I was searching the person who really mentions this n value
Can you please provide the solution for the last homework problem? ( inverted half number pyramid)
Itna details koi institute nahi sikhayega.Thanks Didi.
Really I'm very happy, teaching method is amazing 🔥🔥🔥✨✨✨✨❣️
answer of pascal triangle
class pascalsTriangle
{
public static void main(String[] args)
{
int number=1;
for(int a=0;a
You are teaching more excellently than c++ tutorials wali didi..
.....jaise hi program run hokar output aata hai uss time aapke chahre ki smile ek alag andaz me hoti hai🙂....sabhi ko uski hi need hai☺.....bhut shukriya aapka🙏.!!
Waiting everyday for the new lecture ,new topic and new class .loved the way she teach 😍 .Amazing work done the team 👍🏻👍🏻👍🏻👍🏻.
This channel deserves millions of views in every video
This is a gem of a series!!!
for(int am = 1; am > 0; am++){
System.out.println("Thank you sradha mam");
}
thank you that much time.
thank you so much shradha mam..very helpful lecture series this is .
lots of love and respect from pakistan Sharadidi you are my inspiration ANd i really your work hard love you sistet God bless you
always b happy with AMAN BAYIA
stay blessed
Thank you didi for c++ and now for Java 🥰
C++ se tmhe smjh me aata h nn
ruclips.net/video/h1HbQGHVB14/видео.html
@@mayankkumartiwari2052haa
one of the my favourite teacher in a whole time of college.😊😊🥰🥰
by the way kisi ne notice kiya?
pichhe plane ka noise aya tha.
aju baju me hi airport hain.
Thankyou didi for this amazing course the way you teaches us is Osm ♥️
You are right bro she is just osm💗
ruclips.net/video/h1HbQGHVB14/видео.html
the way you explained these concepts made me fall in love with math, thank you so much
After understanding logic of 10th question I've automatically solved other thank you so much Di😄
Is apna college videos good
Ma'am aapke explanation jaisa koi bhi explain nhi kar skta you are osm.❤
I am so happy that i have printed solid rhombus and number pyramid by myself without seeing the solution by shraddha di
I am in class 9th and i wanna become a software engineer... ❤❤
pehle beta 9th pass karle
@@anooptripathi5290 Uski chinta nahi hai... Top karungi 😂😂
Question 14
int n = 3, oddnum=1, i, spaces=n;
for (i=1; i
If we add some lines after the upper half we can get a perfect diamond
for(int i = 1; i
ruclips.net/video/h1HbQGHVB14/видео.html
Except butterfly code ,i did all code by myself. Thankyou didi 😊😊😊😊
Please make a Video on Electronics And Communication Enginnering Students...
For eg: Core Job vs Software Job
What courses they have to learn.
What are job opportunities..
How to get High package in ECE Jobs.
Shraddha didi is herself from CS background so I doubt she knows much about electronics or communication engineering, and Aman bhaiya made this channel especially for **coding** right? So I doubt that he will do, atleast in coming few years
@@lelouchvibritannia9896 You are correct ...
Brother if you can then do MTech before applying for jobs ...
And if you want high package then apply for foreign countries also but make sure you have 8+ CGPA and best indepth knowledge of electronic and communication engineering theory ....
These videos are just great and this way of explaining the code and logic is best to self improve, for the people who are having OCD attack on the last diamond pattern with 2 repeating lines of stars, here is the code for //second half of star diamond pattern.
for(int i=n-1;i>=1;i--){
for(int j=1;j
Please also solve Pascal's triangle for using loop.
Aman Bhaiya no doubt this course is way better than C++ course. The way of explaining is very good bhaiya
I know right!! Good thing they learned from their previous mistake 🙂
I mean that course was awesome too but just not right for beginners, kinda difficult to understand
Didi, last lecture ka homework Kiya tha iss liye yeh lecture toh almost logic comparison me hi chala gaya😅 aap sikha rahe ho iss liye almost same hi the sirf kuch problem ke logic alag the. Thanks for this course ❤ slowly slowly main bhi logic build karne laga hoon aur ha pata hai ki abhi DSA shuru bhi nahi hua toh abhi bahut lamba safar baki hai.
Mam please upload videos as early as possible i.e before 10 pm🙏🙏
And thanks for this awesome session ❤️
I got scared looking at that butterfly pattern, but then you explained it so so well that it felt very very simple after coding it, splitting the pattern into tiny patterns is intuition and you did that very well, thank-you so so much shraddha didi.
Didi in first butterfly question given N = 4 ... why you take the value of n as 5 when you are going to solve the problem?
Yes I am also confused and pattern got print as shown in the image
@@iramkhan4798 no it was not shown as in the image look carefully you will get the mistake
It will get printed as same as image when you take n=4 buddy
Another code for Q11:
import java.util.*;
public class Conditions {
public static void main(String args[]) {
int n = 5;
for(int i=n; i>=1; i--) {
//spaces
for(int j=1; j
can you teach python start from software to high-level problem solving used in engineering applications such as optimization and control...?
This video is peak the way she is teaching is great
i followed palindrome type algorithm for diamond pattern, but it takes more time :-
public class diamond_pattern {
public static void main(String args[]) {
int n = 5;
for (int i = 1; i
This content is really helpful for beginners of DSA
Best questions for this topics and, didi can you pls provide more questions on this topic pls!! Microsoft Didi OP😂😂😊😊🤘🤘
Mam your way of explaining is awesome
Homework Question 3:
import java.util.*;
public class PascalsTriangle {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
sc.close();
int temp = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n - i; j++) {
System.out.print(" ");
}
for (int j = 0; j
alternative method
import java.util.*;
public class PascalsTriangle {
public static void main(String[] args) {
// Write your code here
Scanner scn = new Scanner(System.in);
int n = scn.nextInt();
for(int i = 0; i < n; i++){
int icj = 1;
//for space
for(int j = 1; j
Can you please provide the solution for last homework problem?
Mam ye rhombus vala question mene khud se kia or ho bhi gya tha mere se 😊😊 tq mam
You're amazing thank you so much 😊
We can also print rohmbus ->
after firstly printing spaces by inverted pyramid logic and then print a rectangle.
thanks a looooooooooot didi i can't explain how helpful this playlist is for me plz continue to do such works it is a life saving playlist thanks a lot.
can't believe that i have solved that rhombus pattern question by myself...and it's all because of you didi.....
love you 3000 microsoft vali didi
can we make pascal's triangle also using loops
public class thanque{
public static void main(String[] args){
System.out.println("Thanque Shardha Mam");
}
}
Kon 2024 me dkh rha hai👀..?
Yes me😊
lecture dekho
@@narayanjaiswal2110 bhai lecture hi dekh rha hu tujhe kya dikhai de rha hai
@@ParasKharol-fw2rd aapko nhi bola
I said to the one who asked
Mai to dekh raha hu
Shrada Didi ese premium content dene ke liye Respect++
From Bangladesh
Shraddha didi Jindabad😂🙌🏻
Class awesome {
public static void main(String [ ] args){
system.out.print("Thank you")
}
}
Homework problem 2 > Solution (Hollow Solid Rhombus) 👇
public class Main {
public static void main(String[] args) {
for (int i = 1; i
public class Thank_you {
public static void main(String[]args){
System.out.println("You are best programming teacher");
}
}
16:31
public class pattern3 {
public static void main(String args[]){
int n = 5;
for (int i=0; i
you teaching style is really very good Mam
Didi ne ek bohoth choti so galti ki butterfly pattern me and wo thi n=5 deke and Maine n=4 Diya to butterfly pattern ban is aaya😅 lekin explanation is just great!!! Hats off didi.
Madam kaash aap pahle mil gyi hoti college life me ye youtube etc hota kuch to humara bhi programming me interest rahta aur aachi engineering job kar raha hota. Govt job ke chaakar me pad kar babu nhi banana padta😢😢😢 but ab programming me interest bhadh raha h aapke video dekh ke to without seeing any monetary benefit i am learning programing from zero. I hope i will be benefitted from programing🙏🙏🙏🙏🙏
Thanx miss shraddha.this vedio was really helpful . i am doing prepafration for interviews and this one help me a lotlearn a lot about pattern that most of the companies asking such pattern sin technical round .your teaching is fantastic .thanks again:)
😂😂Aeroplane Sound And This Playlist , both Are AWESOME..😂😂
😊Thanks For This Playlist.. Di😍
the last space for 5 iteration in j will not print space here because 1
16:00
public class Main {
public static void main(String[] args) {
for (int i = 1; i
we can take (int i=n-1;i>=1;i--) the lower haf loop for classic diamond shape
You are expert mam
That's ameging
Part of coding....
Thank you so much doing DSA in OCT 2023
Di in notes Questions 6 pattern is not matching with code ... It confused me for a bit but i did it all on my own after getting well explained by you so I didn't made any mistake 😁 thank you didi
And please have a look on the homework sheet ☺️
screenshot of Hollow butterfly image
I am a beginner to Java and have studied up to loops only. After loops lecture above pattern was given to print as homework. I have successfully managed to print this pattern with following code:
public class Main {
public static void main(String[] args) {
int n = 5;
for (int i = 1; i
mja aa gaya yar kya hi level of study hai aaapka
let i=0; let Name="Shraddha"; let Output=(Name)=>{while(i
Didi has become The Brand Ambassador of Apna Commege😇😇😇😇🥰🥰🥰🥰
Commege 😂😂😂
If(college==commege) {
System. Out. Print("abe salle")
}
Else {
System. Out. Print("Good")
}
@@shrujaigupta1803 well done 😂😂😂
@@shrujaigupta1803 It will throw an error because there's not a quotation mark after Good 🤦
@@lelouchvibritannia9896 Fixed sir😅
I will get to know it was easy for you,I respect for your efforts. Thanks you
26:40
for (int i = 1; i
when I learn C++ I hate pattern advance question but after learn pattern question again I feel it is very easy
you made my life easy. the way you explain the problem is simply amazing. ❤ Std from Pakistan😇