Who are the people disliking such videos, actually they don't have even such sense that they can think how much precious knowledge mam is giving to the students who can't afford much money or not have a good teacher,, Mam, proud of you,who is contributing for our country through such precious knowledge 🙂🙂
07:48 For people wondering why no. of columns is compulsory while declaring 2-D array but no. of rows is optional, see 27:48 to calculate the address of an element a[ i ][ j ] in a 2-D array in row major implementation*, we only need the no. of columns in the array and not the no. of rows. So for compiler to know where to store an element (or to calculate the address of an element), no. of columns is NECESSARY & SUFFICIENT. (*in C arrays are stored using row major implementation)
Nice conclusion brother but why the compiler won't let u pass a 2D array to a function as a parameter , we know that when we pass a 2D array to a function as an argument the only thing that will be passed in is a pointer the first element of this array right ? the answer is : a 2D array is actually just a 1D array of elements of array type , so u are required to give the number of columns because the number of columns is a part of the type for example : int array[3][4] : is a 1D array with 3 elements of (array type) in this case the array type is int[4] so the number of the columns is part of the type itself and this is why we are required to provide it when declaring a 2D array(aka : 1D array of 1D arrays);
Also : (*in C arrays are stored using row major implementation) : we can't be sure because the compiler will deduct the number of rows from the initialization , try to declare an a 2D array without the number of rows and without initialization and u will get a compiler error.
not only you know better than 90 percent of the people on youtube explaining array but you can explain better just by using a whiteboard and a phone camera. hats off. it kanpur lectures see better kiya explain
Hello Miss Jenny - thanks for your lectures on C programming.You are an awesome teacher and I really appreciate the clarity you bring to concepts.I would love to see a video on 3D arrays in its full implementation - how addresses and values can be accessed.
I believe you are the best teacher on the you tube explaining the data structures in brief. I got frustrated while searching for the tutorials over the you tube, udemy and all over the internet. I watched some tutorials but their explanations were not my cup of tea. I'm going to recommend your tutorial to all my friends and juniors. Just a simple suggestion, please give us a second before erasing the board so that we can have screenshots of the notes. Thank you very much for these lovely tutorials💯👏👏
I start yesterday am completed 1 d array tdy going 2d array good teaching same as am sighting you some times am forget class only am saw you ❤. 3 year before am watching video but am present finding job also say to DSA then I start you channel again watching.
Good lecture mam. I am from ist year I have no computer background That's for learning programming, there is a little bit problem to understand.but I hope it will clearly understand if I follow you,mam... thanks mam
great , good teaching. we have ever seen like this Best lecture. and Iam very impressive love to see these videos,i understand about operations on arrays , 1-D Array and 2-D Array , it was so easy.
Thank you so much mam Itna to mujhe tab bhi smjh nhi aaya tha jab mere teacher ne krwaya tha but apke lecture me bhot ache se smjh aa gya Thanks again mam🙏🙏
In two dimensional array Row wise calculation 2 byte of storage size for each element Base address 100 Calculate address of element at location a[6][2]
frankly speaking.. i am here to study.. i am understanding everything..it's nicely explained.. but mam u r so cute❤️❤️❤️❤️❤️❤️❤️❤️ that I will binge watch all the 112 lectures non stop. that's a promise
i like your explanation and for sure your videos are helpful. Although just one issue why do your videos start like you've missed some part of the video ?
while doing the pointer arithemetics, we dont have to pass the size of data type, the compiler knows the type of data the pointer is pointing to and automatically adjusts the offset based on the size of the data type.
You are a best teacher maam and too much sweet and cute. I got iisc banglore in ARTIFICIAL INTELLIGENCE domains So for prerequisites is this series sufficient for Data structures and algorithms? Nd I like you so much ma'am. Really nice explanation Because I am from non cse background
Self referential note: In case of Row major :- a[ i ] [ j ] = B + (( i * n ) + j ) * size In case of Column major :- a[ i ] [ j ] = B + (( j * m ) + i ) * size
I remember how my college(Aryan) showed teachers like you at the time of admission.. Later i found the scam 😭 That teacher was just for that time and a psychopath paaji taught us this 💔
Mam ur manifestation is damn amazing... Btt one thing which u should work on that u should also make code of each topic properly bcs it's easy to understand topic btt difficulties came when we've to code...... If it possible then do hurry mam
11:04 ( " i less than 2 " ) here 2 is not row size, but it is the no. of rows. 11:31 ( " j less than 3 " ) here 3 is not column size, but it is the no. of columns.
Who are the people disliking such videos, actually they don't have even such sense that they can think how much precious knowledge mam is giving to the students who can't afford much money or not have a good teacher,,
Mam, proud of you,who is contributing for our country through such precious knowledge 🙂🙂
yes correct
I love this channel very good at discussing. Yet so underated
07:48
For people wondering why no. of columns is compulsory while declaring 2-D array but no. of rows is optional, see 27:48
to calculate the address of an element a[ i ][ j ] in a 2-D array in row major implementation*, we only need the no. of columns in the array and not the no. of rows.
So for compiler to know where to store an element (or to calculate the address of an element), no. of columns is NECESSARY & SUFFICIENT.
(*in C arrays are stored using row major implementation)
Nice conclusion brother but why the compiler won't let u pass a 2D array to a function as a parameter , we know that when we pass a 2D array to a function as an argument the only thing that will be passed in is a pointer the first element of this array right ? the answer is : a 2D array is actually just a 1D array of elements of array type , so u are required to give the number of columns because the number of columns is a part of the type for example :
int array[3][4] : is a 1D array with 3 elements of (array type) in this case the array type is int[4] so the number of the columns is part of the type itself and
this is why we are required to provide it when declaring a 2D array(aka : 1D array of 1D arrays);
Also : (*in C arrays are stored using row major implementation) : we can't be sure because the compiler will deduct the number of rows from the initialization , try to declare an a 2D array without the number of rows and without initialization and u will get a compiler error.
This is the BEST lecturer/teacher I have ever seen. Jenny, you know how to teach! Awesome work.
You are far better(in teaching) than some of faculties at Svnit Surat .
😂Same
@Venkatesh No
I am also scet college student and I have learn with this lecture
not only you know better than 90 percent of the people on youtube explaining array but you can explain better just by using a whiteboard and a phone camera. hats off. it kanpur lectures see better kiya explain
Ma'am your videos are very easy to understand. They are very helpful in understanding the concepts . Thanks a lot Ma'am
Hello Miss Jenny - thanks for your lectures on C programming.You are an awesome teacher and I really appreciate the clarity you bring to concepts.I would love to see a video on 3D arrays in its full implementation - how addresses and values can be accessed.
i'm going to fall in love with these concepts.thank you so much you and your whole team for prepare this type of concepts.
I believe you are the best teacher on the you tube explaining the data structures in brief. I got frustrated while searching for the tutorials over the you tube, udemy and all over the internet. I watched some tutorials but their explanations were not my cup of tea. I'm going to recommend your tutorial to all my friends and juniors.
Just a simple suggestion, please give us a second before erasing the board so that we can have screenshots of the notes.
Thank you very much for these lovely tutorials💯👏👏
I start yesterday am completed 1 d array tdy going 2d array good teaching same as am sighting you some times am forget class only am saw you ❤. 3 year before am watching video but am present finding job also say to DSA then I start you channel again watching.
I wish that u would be my computer teacher in my school. U cleared all my doubt . Keep making these helpful videos❤️❤️
If she was your computer teacher then from whom we guys gonna learn🙃🙃
@@anju7334 Right .she is a very good teacher
maam u are helping million students at a time
I hav nt seen such an eassy explanation.
Superb mam.
The way your teaching is really awesome 😊😊😊
Good lecture mam.
I am from ist year
I have no computer background
That's for learning programming, there is a little bit problem to understand.but I hope it will clearly
understand if I follow you,mam... thanks mam
Thank you so much mam ap mery bht c problem apny Kuch mints ki video me slove kr dyte ho Love you ❤️❤️🌎
Good explained mam..... 😢 before semester i watching this video........ I saw this channel before 2 month i really get more marks🎉
great , good teaching. we have ever seen like this Best lecture. and Iam very impressive love to see these videos,i understand about operations on arrays , 1-D Array and 2-D Array , it was so easy.
Thank you so much mam
Itna to mujhe tab bhi smjh nhi aaya tha jab mere teacher ne krwaya tha but apke lecture me bhot ache se smjh aa gya
Thanks again mam🙏🙏
She is a god to me thank you mam for this lectures ❤
This video is very deep explanation of 2D Array, Thanks mam
Thank you ma'am your teaching style is so good.
Really superb way of teaching &your smiling face
In two dimensional array Row wise calculation
2 byte of storage size for each element
Base address 100
Calculate address of element at location a[6][2]
You deserver more subscribers ma'am
Thankyou so much for this video
You have mind blowing knowledge of data structures
one Excellent Explanation which I have not heard so far.. Thank you so much
Aap padhati achaa ho pr beech beech mein kch bhi bol deti ho🙃
Appreciate Work 💯🙏🏻..
Love the way you teach❤ always be thankful to you🙌❤ love you jenny mam☺
maam vo hindi me bolte h na ki aap to sabka dhandha band karvaoge , the way u added array into mind is like magic in the air :)
Ab tumhare hawale hmara future mam😀
frankly speaking.. i am here to study.. i am understanding everything..it's nicely explained.. but mam u r so cute❤️❤️❤️❤️❤️❤️❤️❤️ that I will binge watch all the 112 lectures non stop.
that's a promise
mam i love your method to explain the lecture . love u
Mam your vidios so useful for my semester exams
You explains in a very easy way i could understand loop beacause of you thanku mam🙏🏻
Thank you soooooooo much jenny mam ... These lacture are like that i was searching from toooo many days ... ❤️
MAAM YOU ARE A LIFE SAVER
MA'AM PLEASE CONTINUE ALGORITHM VIDEO
your lectures are really helpful for me. your explaination is amazing. keep going on
She deserve a like and subscribe
Love from Nepal 🙏🙏🙏
Mam you and your explanation both are simple and beautiful😊thanks mam
Ma'am your lectures are so helpful , thank you so much and keep uploading more videos on other topics also
it's very useful in my life .such mam very nicely you are teacching us .
Super lecture
simple solution for find address :-
=Base Address + (how many items you shuffle to reach) * size
great teaching wish to have teacher like you in my collage
Ma'am aap kitne baar "now" bolti ho...Fir v very good teaching. Respect to You Ma'am🙏🙏🙏
Mam last wali apki simle ghazab hai qasmy
Thankyou for everything ma'am ♥️✨
Awesome teaching mam.Thank you for your great efforts...
the software teacher in the world who ever lived
i like your explanation and for sure your videos are helpful. Although just one issue why do your videos start like you've missed some part of the video ?
Clear as crystal, thank you.
Mam ur teaching is amazing....please mam upload video of time complexity and space complexity.
while doing the pointer arithemetics, we dont have to pass the size of data type, the compiler knows the type of data the pointer is pointing to and automatically adjusts the offset based on the size of the data type.
Somebody hide ur face so I can concentrate on the board.... Lol... Just kidding.... That was a good session...
No one can hide the face of our mam but everyone can hide you from TH-cam by reporting your comments.............
And I am also kidding
@@divyanshumishra5150 😂😂😂😂😂😂😂😂
😂😂😂
That was the worst jk i heared in this year 😂
Queen of data types
Great explantion ...
U r really an awsm teacher Jenny...
Day 5 completed
She is awesome!
Really!!
You are a best teacher maam and too much sweet and cute.
I got iisc banglore in ARTIFICIAL INTELLIGENCE domains
So for prerequisites is this series sufficient for Data structures and algorithms?
Nd
I like you so much ma'am.
Really nice explanation
Because I am from non cse background
Self referential note:
In case of Row major :-
a[ i ] [ j ] = B + (( i * n ) + j ) * size
In case of Column major :-
a[ i ] [ j ] = B + (( j * m ) + i ) * size
in place of a[ i ][ j ], write &a[ i ][ j ]
@@drfunspecialist because the expression in the right gives the address and not the value
Mam kindly make videos on time complexity , binary and linear search , notations and worst and best time in DS🙏🙏🙏
It's a humble request mam
friendly teaching 👍❤️
thank you mam for giving knowledge
Madam the way of teaching is good plse keep more vedeo topics on data structures tq 😊
Very very nice teaching mam 👍
Good teaching love you 😍
Mam sacchi awesome ho app wow 🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩 jaha panna tussi great ho
Very good explanation
Nice explanation in every video
Very interesting lectures. Keep going
Looking good,
More fun in your subject
Thank u so much for your explanation mam.very easily understandable.
16:58 row and column major implementation
good explanation superb
Thank you for recognizing my contribution. I really appreciate your encouragement and kind words
I remember how my college(Aryan) showed teachers like you at the time of admission..
Later i found the scam 😭
That teacher was just for that time and a psychopath paaji taught us this 💔
Excellent lecture mam..
Mam ur manifestation is damn amazing... Btt one thing which u should work on that u should also make code of each topic properly bcs it's easy to understand topic btt difficulties came when we've to code...... If it possible then do hurry mam
thank you so much now i know
Easy and understandable .Thanks for making such superb videos
amazing explanation.Good work
Thanks mam 😊
Mam looks like Nisha gurgain
Nice explanation
superb explanation mam.....thank you very much, it is very useful to self studying students......
Very nicely explained. Thank You
Thanks mam I can better understand now
Thank you Ma'am for this video
Thanks a lot mam.😇😇😇.Now I am using lockdown in a good way.,.
Very helpful video,thank you ma'am.
Super explanation about 2D array👌👌👏👏
11:04
( " i less than 2 " ) here 2 is not row size, but it is the no. of rows.
11:31
( " j less than 3 " ) here 3 is not column size, but it is the no. of columns.
Thank you soo much ...your videos helping me. A lot
.Mam ur chanal is my University & ur the VC 😁☺️......
😯😃
Love you Ma'am 😁
😊 thanks mam for making this playlist
thanks a lot mam its really helped me.
21:20 of anyyyyyyyyyyyyyyyyyyyyyy element is too cute :) and keep it up your going awesome