Video editing error at 14:09 , the final answer is (110)base2 = (6)base10. Ma'am has done right calculation on ipad but in editing there is typing mistake from our side. PS : from future lectures we will update all such editing or other errors in PINNED comment. So whenever you face any doubt, just make sure to go through the pinned comment : )
Mam me Web development ka course karna chahta hu but me arts se hu or mujhe bilkul bhi English nhi aati h mujhe it sector me jana h to kya me web development kar skta hu kya
I learned the theory behind conversions from school to college, but none of my teachers ever taught us how to code the solutions-they were all just solved on paper. Huge thanks to Shradha ma'am for this amazing lecture! It felt so good to finally understand and apply it through coding.
DSA series Day-6 completed I hope I will maintain this consistency with shraddha maam .Thankyou so much mam for this series and also thanks to Aman sir who behinde all of that❤🎉
Bro... Binary number of 12 is 1100 We add 0 that we know msb that is 01100 1s compliment is 10011 Add 1 that is 10100 -12 = 10100 Reverse 1st compliment 01011 Add 1 that is 01100 Reverse =01100
binary number system completed today , i learn new concept two's complement ,little bit confused but i understood this concept very easily by SHRADHA MA'AM 🤗
I am in class 9th and I am learning dsa. I watch your regular video of dsa. And I love this dsa series . 😊 and I am learning because I wanna participate in coding contest.
Lecture 6 Completed on 17-11-24 on Binary system Homework question is done also. In this chapter I learned about the binary number system and how to convert it into decimal system etc..
Lecture 6 of the DSA series is completed hopefully i will continue to make this streak and complete this series. Thank you mam for this Amazing content.
19th Sept 2024 Lecture-6 Completed Backlogs Continued due to college classes. Trying to manage time and cover up the backlogs. Already studied the above concepts earlier in my 3rd Sem so it was a revision for me.🔥🔥🔥
Mam aapke uper itna bharosa hai ki kal jab aapne lecture upload nahi Kiya to mujhe laga ki Mai hi nahi khoj pa raha hu aapne to definitely kiya hi hoga upload 😅😅
Dude... Help ME! How do you find difference between two's complement or binary value of negative number and binary value of some positive number with same value Didi just said that left most value tells you if it is or not but in her conversion of -8 at end. She literally got answer starting with 0........ I dont know the difference between them. Ans yes or no>>?
present maam thanks for uploading such an outstanding lectures its wonderful i like to watch lectures everyday and i am learning quickly once again thankful toyou ma'm🥰🥰🥰🥰🥰🥰
Alternate Solution for code to convert decimal to binary is ; Int main(){ Int num; Int rem,a[20],i; coutnum; while(num){ rem = num%2; num = num/2; a[i] = rem; } for(int j=i-1; j>=0; j--){ cout
Video editing error at 14:09 , the final answer is (110)base2 = (6)base10.
Ma'am has done right calculation on ipad but in editing there is typing mistake from our side.
PS : from future lectures we will update all such editing or other errors in PINNED comment. So whenever you face any doubt, just make sure to go through the pinned comment : )
Yes anyone can start @@TarzenAshu
Very very thank you mam❤️ for these videos ❤️💯🙏
Mam me Web development ka course karna chahta hu but me arts se hu or mujhe bilkul bhi English nhi aati h mujhe it sector me jana h to kya me web development kar skta hu kya
Aap se contact kese karu please btaao na mam
why 1/2 remainder is 1 and quoient zero anyone can explain please???????
I learned the theory behind conversions from school to college, but none of my teachers ever taught us how to code the solutions-they were all just solved on paper. Huge thanks to Shradha ma'am for this amazing lecture! It felt so good to finally understand and apply it through coding.
Whenever I see your lecture notification ma'am I get excited 😇😇
💯😍❤
Their marketing scripts kam kar rha h matlab 🤪
Same 😂
Cuz she teaches amazingly
No comments 💀
तुम्ही खूप छान शिकवता श्रद्धा मॅम 😊... Means everything clear when you teach a topic... Dhanyawad 🙏🏻💐 ही DsA series start करण्यासाठी
C++ , DSA Journey
Day - 6.
Let's go guy's ❤
Daily Attendance...
lecture 6 completed alhamdulillah...
ht mulle
-12 to Binary :
First Convert 12 into Binary = 1100
Add MSB = 01100
1's Complement = 10011
2's Complement = 10100
So Converting -12 to Binary is = 10100
Reverse:
1's Complement of 10100 = 01011
2's Complement = 01100 = -12
East or west shradda didi is the best❤️.didi you are rocking and thanks a lot for every video
DSA series Day-6 completed I hope I will maintain this consistency with shraddha maam .Thankyou so much mam for this series and also thanks to Aman sir who behinde all of that❤🎉
+
What a speed of uploading 🔥🔥🔥 daily by daily
not new topic but im getting more grips on all topics thank you mam
Lecture 6 Complete
Day 6
aj ka lecture m maza aaya didi muje bhot aache se samaj aaya 1s com and 2s com
thank you didi
Day-6 completed
Binary-to-decimal conversion,
Decimal-to-binary conversion,
1's complement
2's complement
Mam Please provide links of leetcode questions on covered topics
We will, as the main topics will come ahead. Also, we are planning to make a DSA Sheet of this series 🚀
@@ApnaCollegeOfficial The cherry on the cake ♥
35:40
-12 = 10100
Reverse = 01011+1= 01100
Which is 12 .
As we know that, it is negative 12 (-12).
Bro...
Binary number of 12 is 1100
We add 0 that we know msb that is 01100
1s compliment is 10011
Add 1 that is 10100
-12 = 10100
Reverse
1st compliment 01011
Add 1 that is 01100
Reverse =01100
@@mahesh_torane
Binary number of 12 is 1100
Then, add the msb (01100)
@@alwaysanujsharma you are right
binary number system completed today , i learn new concept two's complement ,little bit confused but i understood this concept very easily by SHRADHA MA'AM 🤗
Chapter 6 is completed 😊
L-6 DONE 🚀
very helpfull thanks☺
Day - 6 Completed of DSA learning Journey ✌️
Didi very inspired from you... Aap tho bahut hi consistent hai ❤❤
Love from Hyderabad
Day 6
Lecture 6 36:03
Completed ✅✅
Mam please videos consistently dalte rhna taki ham jlde seh dsa tayair krke development mai bhi sahi seh focus kar ske
Homework Solution:- logic
q1:- (n&(n-1))
q2: n=n%10 rev=rev*10+rem; n=n/10
Lecture 6 Completed on 09-09-24 at 02:35pm Thank you ma'am 😊
Plz vote for pdf notes..
35:25
Day 6 completed 👌💯
Thank you mam a new trick 👍
Thank you so much for teaching ❤❤❤❤❤❤❤
Thankyou✨ Done✨ Completed✨
I am very thankful to you mam for this coading.......❤
31:58 pls correct 8 bit of -10 is 11110110 ... you get is 10110 is correct but remaining 111 is Missing bcz of 8 bit
Hii Didi👋,
I have completed lecture 6 of Binary Number System.
So, I am excited for next lecture.
Thanks didi 🙏
14:17 decimal to binary code
I am in class 9th and I am learning dsa. I watch your regular video of dsa. And I love this dsa series . 😊 and I am learning because I wanna participate in coding contest.
Lecture 6
Completed on 17-11-24 on Binary system
Homework question is done also.
In this chapter I learned about the binary number system and how to convert it into decimal system etc..
surprisingly the day was incomplete when there was no video yesterday.
Class 6 complete ✅✅...
Thankyou so much mam 😊
Lecture -6 Completed
Thank you so much ❤
Done ☑️
10/09/24
What a lecture OSM 😍😍😍😍
Very very helpful ma'am,❤❤❤
I appreciate your work madam ❤, you teach very well and good. I understand everything.
Binary Number System Completed 8th Nov 2024
I have completed the lecture.
c++, DSA series journey
lecture 6 completed
on 18/09/2024
thank u so much maam ❤
Thanku Maam great teacher
Lecture 6 of the DSA series is completed hopefully i will continue to make this streak and complete this series. Thank you mam for this Amazing content.
C++, DSA
Day--6 binary number system completed ❤️
day 6 completed
Day 6 Done✅
Thank you for best explain ❤❤❤❤
19th Sept 2024
Lecture-6 Completed
Backlogs Continued due to college classes.
Trying to manage time and cover up the backlogs.
Already studied the above concepts earlier in my 3rd Sem so it was a revision for me.🔥🔥🔥
Which sem are u in
@@Rinku0000-g1j 5th
Mam aapke uper itna bharosa hai ki kal jab aapne lecture upload nahi Kiya to mujhe laga ki Mai hi nahi khoj pa raha hu aapne to definitely kiya hi hoga upload 😅😅
Lecture 6 done.
Chapter 6 is completed
Thanks mam
😇😇😇
Dude... Help ME! How do you find difference between two's complement or binary value of negative number and binary value of some positive number with same value
Didi just said that left most value tells you if it is or not but in her conversion of -8 at end. She literally got answer starting with 0........
I dont know the difference between them. Ans yes or no>>?
present maam
thanks for uploading such an outstanding lectures
its wonderful
i like to watch lectures everyday
and i am learning quickly
once again thankful toyou ma'm🥰🥰🥰🥰🥰🥰
Alternate Solution for code to convert decimal to binary is ;
Int main(){
Int num;
Int rem,a[20],i;
coutnum;
while(num){
rem = num%2;
num = num/2;
a[i] = rem;
}
for(int j=i-1; j>=0; j--){
cout
bhai array use kiya tumne, keep it up it was helpful to know your way of thinking
@@avinashdharme2234 Thanks buddy 👍🙂
Lecture 6 completed on 14/09 with homework.. Thank you mam
Day 5 - ✅
🗓️ - 14/10/2024(4:20pm)
Binary 🧮 are much easier now thanks Shradha di 💗🪽
Let's go guys for next challenges!!!🔥
I have learned and completed my 6th lecture on 9 oct 2024 and completed my task also
I have completed all the lectures up to this one
Remembered old times😂❤🎉
Thank you maam .I learn most important concept tow's complement.
Complete today 9 sept 24
Congratulations 👏💐 to myself 🎉🎉
Lecture 6 completed!!!!!
10-9-2024 lec 6 done - Binary Number System
once again i came to know binary number system and refueled the binary number system concepts
Lecture 6 Done ✅
Streak 6 completed🎉❤
Thanku so much from bottom of my heart
Lec 6 has completed 🎉
I am also excited to complete and learn this chapter ❤❤ properly
Day-6 Completed✅🎉
Day-6 done ✅
Lecture 6 completed successfully 🎉❤
Thank you mam, for nice explanation.
6M completed🥳🥳🥳
This chapter seems to be easy if we have good knowledge of digital electronics 😅❤
17 sep lecture complete ✅
You are best di ❤
18:17
Question).
1100101 = 101
Lecture 6 - Binary Number System completed : 08th sept 2024 at 22:05 PM
Today I have learned decimal to binary by trick 🎉
thank you so much ❤❤🥰🥰
Today i have Completed this session
Lect 6 completed 🎉
Date 08-09-2024 Completed 6th Lecture 🎉❤
DAY-6 COMPLETED❤
Amazing explain ma'am
Completed 😊
Say thanks ❤
Thank you didi ❤❤
Lecture 6 Completed on 08-09-24 at 11:25 PM Thankyou Mam👸
THANK YOU!!
I'M EAGERLY WAITING FOR TOMORROW MA'AM!!!!🥳
Lecture 6 completed 12/09/2024 ❤❤
Lecture completed dii
Thank you so much dii aap bhagwaan ho hum bachho k liya
Completed this lecture successfully on Sept 10 2024.
Lecture complete 🎉
day 6=completed
thanku so much❤
36:51 completed 🎉🎉