Teachers with 10-15 years of experience are not able to teach DSA properly but the students graduating are teaching way better than them That’s the Indian Education RUclips Revolution
Not true at all brother there are some of them who are great for exp sourav shukla, Abdul baari and so many who are not teaching online no offense toward your statement tho😅
Bhaiyya It's from depth of the heart. " I had watched mostly videos of DSA on you tube..... But your content is boon for us. All doubtful concept get resolve... 🥰🙏🙏
Hello Babbar Bhaiya, I have started this course after you put DSA for Placements video on Love Babbar channel. Now attending 3rd lecture. I must say it's a great course with minute details which we need to know and most importantly it's engaging. Thank you so much for this course 🙂. HW answers: 1. NINEY POSITIVE 2. 3 3. LOVE 24 Upper, Lower or Numeric ? int main() { char c; cout c; if (c >= 'a' && c
Isiliye bo else bala condition excute nahi hoga 3 hi ayega dono me se koi ek hi condition true hoga ya to if ya to else is me if condition true hua so 3 aa raha hai
Sidha start kar do bro mene bhi direct start hi kiaa h and I thought hame ek din ek lecture ko hi dena chaee abhi for better understanding🎉@@amit-yg9wl
Good evening bhaiya @love babbar bhaiya mai first time computer language ko seekhne ki koshish me hu maine kbhi nhi kiya phle koi bhi computer related language to maine starting ke lectures dekhe hai to mujhe kafi kuchh smjh aaya sb kuchh nhi bhaiya to mai full course complete krne k baad code krne me capable ho skta hu ?
Hello bro I am first time trying to learn any computer language I don't have any idea about computer languages so it will be helpful for me bcz I have done 3lectures and able to understand everything but not practically like I am not able to relate and what is exact meaning of each term so after some time everything will be crystal clear and will be able to code?? Please suggest me bro bcz even in my school time I don't learn computer ever
@@thetechtime2368 yeah vro you will be able to write code just practice every question on gfgpractice or leeetcode which he taught in videos . if you write code by yourself you will understand moreeeeee
7:39 cout function is defined under namespace "std" in header file iostream. 24:22 NineyPositive 24:25 3 24:30 Love24 25:49 Code:- #include using namespace std; int main(){ char user_input; cin >> user_input; // int ascii = int(user_input); int ascii = user_input; if(ascii>=65 && ascii
#include is a preprocessor directive that is processed before compilation of our program and is a file for input and output operations... this statement includes the contents of the iostream file into our program.
I have seen lots of you tube channel for this type content , but everyone cover only program and that teaching goes over my head. Otherwise you are teaching method is good 😍😍
Babbar bhaiya you are great teacher 😀🤩..you are teaching better than my college teachers,befor watching this video l was confused about DSA but now l m able to understand
Bhai Dil se thank you aapko aapne ise free of cost provide karaya ❤️❤️ Waise paise lagane ke baad bhi aisa course nhi mill sakta thank you so much Bhai 💯💯
7:14 We include this header file i.e. #inlcude because in this header file cout and cin are already defined cout is basically use for print cin is basically use for read
I am gonna start this series from today(16th april 2023 1854) and swear to do atleast one video in one day, will comment start and end time everyday after completing the video so I can keep myself accountable. kudos and best of luck. Lets do this
output question homework LECTURE 3:- 24:27 output:- 1]the code will give output"NINEY" . the output will work after giving return value to main function. 2]the code EXPECTED output IS "2".the output will work after giving return value to main function. 3]the code will give output "Love24" the output will work after giving return value to main function. 25:26 output: #include using namespace std; int main() { char ch; cout ch; if (ch >= 'A' && ch
Dear, in 2nd question kindly see the condition given in first if from there it is conclude that a is assigned as value 3 then check == 3 and becomes true... Now u get it...if not then actually first given if condition is true ...so compiler have to ignore else part ... The answer is in first part
after watching this video , 9 programs completed 1. program to check -ve and +ve 2.sum of 1 to n number 3.sum of 1 to n all even number 4.program to check prime or not 5.print upper case , lower case , numeric 6. 2 pattern program 7.Program covert Fahrenheit to celsius 8. convert Celsius to Fahrenheit
Amazing bhaiyya It would be easy to understand if have taken variable names as row and col in pattern questions. Best course on DSA bhaiyya.. Please don't discontinue this course. Thank you so much!! Efforts really appreciated
@@Geek_Singscharacter can contain only one byte and when you give more than one bye then it will type cast it hence it will take its ASCII value like 97 as 'a'
@@nurtruth404 Because ch variable break down into asicc value than it break down into binary and every variable is store in the memory on level of binary that's why
7:30 #include is used to import a file which is iostream which is used to get input and output and there are diffrent namespaces , and here we are using standard namespace.
@Harpreet Singh in if condition ((a=3)==b) First inner bracket solve i.e we assign 3 to a, so our value of a is 3 now. So now our condition become like this If(a==b) Because 3 already assigned to a So now when we compare a and b Both are equal 3=3 so our condition is true so we print value of a i.e 3
7:36 : #include is written to fetch a header that includes all the functions of a particular utility, some functions are written in more than 1 namespace and so we need to specify that which namespace are we using hence here we use "std"
Bhai kal raat ko aapka yeh fahrenheit to celcius wala home work solve Kiya mujhe kareeb 1 ghanta laga usko while loop mein karne ke liye but finally I did it 🤟🤟. Very good course, keep up the good work 👏
in the prime number example if we use a bool instead of printing it out every time we can later show if the number is prime or not without much change in code int a; cin >> a ; int b = 2; bool prime = true ; while (a>b) { if(a%b == 0){ prime = false; } } if (prime){ cout
1) # include = Iska matlab hota hai ki bhot saare codes already likhe hue hai or jab hume usse use karna hota hai to hum iostream ka use karte hai. 2) using namespace std = Iska matlab hota hai ki iostream me na data yese hi random nhi hota vo yek yek jagah store hota hai to humara code jis namespace me store hai vha jata hai and use code ko use karne ki permission de deta hai.
Homework:1 - 7:34 #include is written to include the header file which includes the input and output function. (we have to include the namespace to tell the compiler that it should use the standard namespace function and #include is used for printing output and taking input from the user). OR using namespace std is written because there are many namespaces define already so to know which cout to use in which namespace, we define the standard one The name of the function for printing output and taking input is cout and cin. 2. Out of different namespaces select cout of std namespace HOMEWORK:2 Time-Stamp 24:21 Answers:- 1)NINEY Positive 2) 3 3) Love24
HOMEWORK:3 25:39 -> to check whether the character is uppercase or lowercase or digit #include using namespace std; int main(){ char ch; cin>>ch; if(ch>='A' && ch
Q1): "#include" is a header file which contains cout and cin function. 'using namespace std' is written to make the computer understand the code for cout and cin, which is predefined in namespace std. Thats why we need to mention which namespace is used in the program. Q2): (1) NINEYPOSITIVE (2) 3 (3) Love24 Q3): #include using namespace std; int main() { char ch; cin>>ch; if(ch>='a' && ch
I am gonna start this series from today(9th september 2024 ) and swear to do atleast one video in one day, will comment start and end time everyday after completing the video so I can keep myself accountable. kudos and best of luck. Lets do this.....like this to remind me of these at every like thankyou 🥰😍😊😊
Love Bhaiya - the awesome content maker. I am expecting to take maximum benefit from your DSA course. Modern day Dronacharya & we are learning coding (modern day weapons) instead or Archery.
24:22 answer NINEY POSITIVE 24:26 answer 3 as variable a is modified 24:30 answer LOVE because (The else if and else blocks are not executed because the condition of the first if statement was true, and once an if statement is true, the subsequent else if and else statements are skipped.)
H.W 1 #include is written to include the header file which includes the input and output function. using namespace std is written because there are many namespaces define already so to know which cout to use in which namespace, we define the standard one. H.W 2 NINEY 3 Love H.W 3 #include using namespace std; int main() { char ch; cin >> ch; if (ch >= 'A' && ch
Homework: - 7.34 (we have to include the namespace to tell the compiler that it should use the standard namespace function and #include is used for printing output and taking input from the user). The name of the function for printing output and taking input is cout and cin. 25.39 -> to check whether the character is uppercase or lowercase or digit #include using namespace std; int main(){ char ch; cin>>ch; if(ch>='A' && ch
Hi Tejinder 1. You can use cin.get() here but I don't think it is necessary as we don't have to take input of Space, Tab or Enter so a normal cin >> a would do the job. 2. Secondly, try using if - else if block for better readability as told by Love Bhai. 3. We can use (a >= 'A') && (a 64)&&(a
HW1: We use as a header file because it give access to the user to use functions like cout, cin, etc. Since there are many namespaces are present , we use only the standard one. HW2: NINEYPOSITIVE 3 Love24 HW3: int main(){ char ch; cout ch; if(ch>='A'&&ch
We are including header file so that our cout cin function are included in the file And we use std namespace right now for our simple functions like write a line
great video, but one doubt in the question of prime number. How can we get the output in a single line if the number is prime or not prime, unlike what you showed in video? e.g input is 7, I want the output to be "prime". I want to know if it is possible using while loop, if then how?
Teachers with 10-15 years of experience are not able to teach DSA properly but the students graduating are teaching way better than them
That’s the Indian Education RUclips Revolution
Agreed
Not true at all brother there are some of them who are great for exp sourav shukla, Abdul baari and so many who are not teaching online no offense toward your statement tho😅
@@gajendrasharma7038 Yes, true but still these students are best in making us understand
True! That's why institute should hire technical person with more salary than a teacher who can't explain clearly...
ruclips.net/video/QTaiF8N6i3Y/видео.html🙏🏻
Bhaiyya
It's from depth of the heart.
" I had watched mostly videos of DSA on you tube..... But your content is boon for us. All doubtful concept get resolve... 🥰🙏🙏
Hello Babbar Bhaiya, I have started this course after you put DSA for Placements video on Love Babbar channel. Now attending 3rd lecture. I must say it's a great course with minute details which we need to know and most importantly it's engaging. Thank you so much for this course 🙂.
HW answers:
1. NINEY POSITIVE
2. 3
3. LOVE 24
Upper, Lower or Numeric ?
int main() {
char c;
cout c;
if (c >= 'a' && c
But 3 homework question me if condition true hai to kya program else if tak jaega???
Answe LOVE hoga Ya LOVE 24?
@Sudhanshu Tiwari
Haan love true hoga uske baad loop se bahar aa jayenge phir agar tum neeche dekhoge wahan tumhe ek cout
@@scientistakasha7293 but mere me bhi output 3 hi aa raha hai kyu
@@scientistakasha7293 kyuki if bala condition true ho gaya isiliye 3 aa raha hai
Isiliye bo else bala condition excute nahi hoga 3 hi ayega dono me se koi ek hi condition true hoga ya to if ya to else is me if condition true hua so 3 aa raha hai
1->Ninelypositive
2->3
3->Love 24
hey it's been 2 years where are you now have you learn DSA and got job or anything ??
@@chiklate9797
@@piyushchaturvedi5451 😄
2024 students mark your attendence😂
Bro kya mujhe pehle c++ seekhni padegi ki seedha start kr du ??
Sidha start kr do..
@@its_gourav_jii thnx bro❤
Sidha start kar do bro mene bhi direct start hi kiaa h and I thought hame ek din ek lecture ko hi dena chaee abhi for better understanding🎉@@amit-yg9wl
Pata nahi bharat ka kya hoga
Too much informative blessed to have a teacher like you😇
Bhaiya Maza aagya🔥🔥
bhai please reply love babbar do while loops kab karwayane
The hardwork you done for this course
Is really appreciable ❣️
I reall agree with you bro
Good evening bhaiya @love babbar bhaiya mai first time computer language ko seekhne ki koshish me hu maine kbhi nhi kiya phle koi bhi computer related language to maine starting ke lectures dekhe hai to mujhe kafi kuchh smjh aaya sb kuchh nhi bhaiya to mai full course complete krne k baad code krne me capable ho skta hu ?
I am giving a proper time
Bhaiya replit me program run hoja rha pr aap kisme krte hai
How to practice and from where ca do ??
1000%% Beginner friendly Course from The Basics 🔥!! thankyou babbar bhaiya 💖
Hello bro I am first time trying to learn any computer language I don't have any idea about computer languages so it will be helpful for me bcz I have done 3lectures and able to understand everything but not practically like I am not able to relate and what is exact meaning of each term so after some time everything will be crystal clear and will be able to code?? Please suggest me bro bcz even in my school time I don't learn computer ever
@@thetechtime2368 yeah vro you will be able to write code just practice every question on gfgpractice or leeetcode which he taught in videos . if you write code by yourself you will understand moreeeeee
@@thetechtime2368 bhai please reply love babbar do while loops kab karwayane
7:39 cout function is defined under namespace "std" in header file iostream.
24:22 NineyPositive
24:25 3
24:30 Love24
25:49
Code:-
#include
using namespace std;
int main(){
char user_input;
cin >> user_input;
// int ascii = int(user_input);
int ascii = user_input;
if(ascii>=65 && ascii
Can i join your team?
24:30 will only print Love but not 24 as it is if-else and not multiple if
@@aparna321 But see after the if , else-if and else block there is cout
@@aniketmehtaiitmandi6278 yes right, my mistake it was. I thought it was inside else block
@@aniketmehtaiitmandi6278 i still get it should print lovely also right? because a==24
can you explain
Greatest ever DSA series to exist on youtube .Your contribution will be remembered. You're God of DSA for us🙇♂
#include is a preprocessor directive that is processed before compilation of our program and is a file for input and output operations... this statement includes the contents of the iostream file into our program.
we can also write stdio.h in place of iostream i think in c language we can write that
@@LoveShashikanta yeah in C we include stdio.h
@@LoveShashikanta Yupp! we can write most of the c language code in cpp
Literally I was waiting, since 3 pm, thank you bhaiya for such hard work
Bhaiya you are my inspiration my family is facing some hard times, I will be grab a handsome placement and one I day I will meet you bhaiya 😄😄😄
bade veele ho yaar
@@ujalavarshney480 bhai iitian huna 🔥🔥🔥🔥
@@singhparth2210 oh achha tabhi velle ho🤣
@@rudripancholifc bhai mera tho PayPal me ho gaya ab vella ni hu 😎😎
babbar bhai aap hi last ummid bache the.... thanks for this amazing series and i appreciate all your hardwork towards it
Since I started my programing journey I never used while loop, Thanks to you for such great explanation.
bruh is u are an idoit
char ch;
cin>>ch;
if(ch>='A'&& ch
namo
thanks bro!
do baar & lagana jaruri h kya?
sirf niney aayega
Last mei else bhi use kr skte h
33:17
Sum of 1, 2, 3, 4, 5
#include
using namespace std;
int main()
{
int num;
coutnum;
int i = 1;
int sum = 0;
while(i
Another reason to revise DSA again!!!!! enjoying the course and commenting for better reach!!!!
I have seen lots of you tube channel for this type content , but everyone cover only program and that teaching goes over my head. Otherwise you are teaching method is good 😍😍
Babbar bhaiya you are great teacher 😀🤩..you are teaching better than my college teachers,befor watching this video l was confused about DSA but now l m able to understand
Everyone should start this dsa course. so much effort and hard work is being put by bhaiya
i watched first two lecture and i completed homework . thank you love bhayia. your sacrifices donot go unnoticed. i an waiting lecture three yesterday
7:14 HW
Ans-> We use header files so that we can use built in functions like - cout and cin because these functions are declared in the header files.
Bhai smj na aya
bRO THIS IS NOT HEADER FILE THIS IS CLASS
❤❤
Bhai Dil se thank you aapko aapne ise free of cost provide karaya ❤️❤️
Waise paise lagane ke baad bhi aisa course nhi mill sakta thank you so much Bhai 💯💯
Bhos
24:25
1) NINEY
2)cout
All your three ans is wrong
7:14
We include this header file i.e. #inlcude
because in this header file cout and cin are already defined
cout is basically use for print
cin is basically use for read
Cout and cin is not defined in header files .
It's only declare in that
Defined in library files
@@monalisatpute8946explain again
This is my favourite channel. I especially like it when you explain everything so nicely. I wish you a lot of success with the channel and happy life.
Pls do black screen with white or yellow pen and I am enjoying the course ❤️🔥
Bhaiya said he will doing after 5-6 video
Ok
bro ye lovebabbar bhai ne jo vs code ka jis trha se setup kia hua hai wo kese kia hai ap smja skty ho
@@yashi5698 e
Are kuch Lage ki nahi samajh a rHa tonus problem ko yt par search karlo settings fix karne ki vid aa jaegi@@AliHassan-mo8wc
Thank you for all that you do. Your hard work doesn't go unnoticed. You're appreciated! thanks bhaiya 🥰
I am gonna start this series from today(16th april 2023 1854) and swear to do atleast one video in one day, will comment start and end time everyday after completing the video so I can keep myself accountable. kudos and best of luck. Lets do this
kaha tk pahuche janab
whats the status bro.. motivate me
@@bugzzz4u
Was using this account
Got stuck at linked list due to personal reasons
Will start again from tommorow 10 jul monday
@@rishu4225 have u completed ?
1.#include is used for taking input and output i.e; for 'cin' and 'cout'
2. Out of different namespaces select cout of std namespace
Loving this course so much!!
Thank you so much bhaiya! No one explains these basic concepts so deeply and nicely😀🔥😇
output question homework LECTURE 3:-
24:27 output:-
1]the code will give output"NINEY" . the output will work after giving return value to main function.
2]the code EXPECTED output IS "2".the output will work after giving return value to main function.
3]the code will give output "Love24" the output will work after giving return value to main function.
25:26 output:
#include
using namespace std;
int main()
{
char ch;
cout ch;
if (ch >= 'A' && ch
2) value of a show in output is 3
@@Himanshusingh-ev7mv hn
Dear, in 2nd question kindly see the condition given in first if from there it is conclude that a is assigned as value 3 then check == 3 and becomes true...
Now u get it...if not then actually first given if condition is true ...so compiler have to ignore else part ...
The answer is in first part
Bro why we use two time == or && , why please reply
In this code , we don't get digit output when we enter 1-9 Anu digit , i entered 7 and output was uppercase
You are the best teacher to learn code .Thanks for giving this level of good content.
after watching this video , 9 programs completed
1. program to check -ve and +ve
2.sum of 1 to n number
3.sum of 1 to n all even number
4.program to check prime or not
5.print upper case , lower case , numeric
6. 2 pattern program
7.Program covert Fahrenheit to celsius
8. convert Celsius to Fahrenheit
bhai kesay????
@@mahmed4891 video m krwaya h
Including 1st video .... Right ?
really very good quality of teaching. please continue this course ,it will be very helpful for needy students.
starting this dsa course after 1 month and I'm late, but I'm enjoying and understanding this as a beginner. Really a great playlist
bhai please reply love babbar do while loops kab karwayane
@@dshorts9604
number from 1 to 10
int i = 1;
do{
cout
24:37
1) NINEY
2) 2
3) love24
❤️ Enjoy bhaiya ✌️🤩
Tons of love for creating such valuable courses which are better than paid courses❤❤❤
I never commented on u tube but this is the first tym. Thank u sir u are the blessing for 3-tier students BTW best personality I ever seen😝
Coding ninja ka course le lo kya main basics with ds algo c++???
@@SUNNYSINGH-qj7lb haan maine v suna hai uska badhiyaan h
Agar afford kr skte ho to lelo
@@pratyush2331raj tumne liya hai kus
@@SUNNYSINGH-qj7lb nahi bhai mai RUclips se hi kr lunga
@@pratyush2331raj kaun se channel se ds algo kar rhe ho
Amazing bhaiyya
It would be easy to understand if have taken variable names as row and col in pattern questions.
Best course on DSA bhaiyya..
Please don't discontinue this course.
Thank you so much!!
Efforts really appreciated
Can we do competitive programming together if you like then please give me your contact number
#include
using namespace std;
int main()
{
char ch ;
cout
bro o/p nh aarha... kyu
This code is absolute correct i tried it works properly .@@BtechWali
@@nurtruth404 i wanted to know why, when ch(which is character) compared with an integer doesn't give an error, please help
@@Geek_Singscharacter can contain only one byte and when you give more than one bye then it will type cast it hence it will take its ASCII value like 97 as 'a'
@@nurtruth404 Because ch variable break down into asicc value than it break down into binary and every variable is store in the memory on level of binary that's why
is the c++ library that has the definition of i/o functions and namespce std is an standard libray that controls the flow of identifiers.
I am blessed to have a teacher like you
nothing to say i just wanna thank you bhaiya for everything you are doing for us. ❤
7:30 #include is used to import a file which is iostream which is used to get input and output and there are diffrent namespaces , and here we are using standard namespace.
Nerd🤓
24:27 output will be NINEYPOSITIVE
2nd que-- o/p is 3
3rd que-- o/p is Love24
@Harpreet Singh in if condition ((a=3)==b)
First inner bracket solve i.e we assign 3 to a, so our value of a is 3 now.
So now our condition become like this
If(a==b)
Because 3 already assigned to a
So now when we compare a and b
Both are equal 3=3 so our condition is true so we print value of a i.e 3
how love 24 came please explain
@@meghabhutada8756 we are printing " a " at last. (Check line 18 )
Started This series again from scratch and I will complete whole series by summer vacation for sure.
Bro November me konsi winter vacation hoti hai?
Output
1.nineypositive
2.3
3.Lovelovely
3rd is wrong. Do check it again.
@@karantodkar8251 lovelovely hi toh aayega
@@karantodkar8251 24 kahan aayega... Sab ne kiyon likha hai wo
7:36 : #include is written to fetch a header that includes all the functions of a particular utility, some functions are written in more than 1 namespace and so we need to specify that which namespace are we using hence here we use "std"
thank you bhi😄
Each and every thing was clear from this lecture. Thank you Bhaiya.
Your way of teaching is great and every topic is explained nicely
Thankyou bhaiya for DSA series
I loved it
Bhai kal raat ko aapka yeh fahrenheit to celcius wala home work solve Kiya mujhe kareeb 1 ghanta laga usko while loop mein karne ke liye but finally I did it 🤟🤟. Very good course, keep up the good work 👏
agar aap sabi lecture k notes bhe upload kr 2 tho mujhe nhi lagta ki sayad he aap jaisa dsa course pure youtube pr khi hoga 🙂🙂
Discription cheak kar bhai waha per ha notes ka link
@@ankit2023 nhi hai bhai only kuch he vidoe k hai
You can use CTRL + C to terminate a running program
PS: May help when you run a infinite loop or something that you didn't wish to run
thanks
PS kya hai??
@@Pooja-nr3jd side note
Loving this course 😍
24:26 Output of the problems
Q1-> NINEYPOSITIVE
Q2-> 3
Q3-> Love
Q3-> Love 24
See line number 18.
in the prime number example if we use a bool instead of printing it out every time we can later show if the number is prime or not without much change in code
int a;
cin >> a ;
int b = 2;
bool prime = true ;
while (a>b) {
if(a%b == 0){
prime = false;
}
}
if (prime){
cout
Will u not updated the value of b in while loop
int main()
int i=1;
int sum=0;
coutn;
while(i
Value of i should be 2 if we are taking even numbers
Simplified and great content bhaiya. Thankyou for the hard work :)
but you should also do hard work ok 👍👍👍
what did i learn in this lecture
1. what are conditional statements
2. some codes examples
3. what are while loops and how they work
4 . two patterns
bahi puchra hai ya batara hai
@@arnavjain9904 bhai notes bna rha hu
🔥🔥 I was waiting for this loop class only 😁
Thanks Bhaiya 🔥
done bhaiya aaj morning me pad liya Too much informative blessed to have a teacher like you
Absolutely loving the course Babbar Bhai !! 💯
1. NINEYPOSITIVE
2. 3
3. Love24
Can you tell me why a is not equal to 2
Because in the 'if' condition block you are assigning a = 3
I really appreciate the hard work you put in making videos Thank Youuuuuu
Answers of questions at 24:30
1.Niney positive
2.3
3. Love lovely 24❤
right
3. Love 24
1) # include = Iska matlab hota hai ki bhot saare codes already likhe hue hai or jab hume usse use karna hota hai to hum iostream ka use karte hai.
2) using namespace std = Iska matlab hota hai ki iostream me na data yese hi random nhi hota vo yek yek jagah store hota hai to humara code jis namespace me store hai vha jata hai and use code ko use karne ki permission de deta hai.
Is it just me who get very positive vibes when he smiles like this 51:36
timestamp 25:37
#include
using namespace std;
int main(){
char ch;
cout
Thank you you help me solve this h/w
THANKS BHAIYA
U r one of the best teacher i have ever studied 🙏🙌🤗
char ch;
cout ch;
if (ch >= 97 && ch
the numbers assigned in the code is according to the ascii table right?
@@Virajpatil32 yes
@@GUNGUNLASTNAME Thanks bro!
video completed.....lets see the magic
char a;
cin>>a;
if(a>=65&&a
but can you do it without using ascii table
@@swapnilsharma1010 yep I know😁
@@busylife7870 pls post code without ascii
@@DeepakRajput-qu4ck ASCII ke jgah alphabet lelo or no.
I am late for the course.
But I will definitely complete this course with full effort. 🔥
Thank You Love bhaiya for the hardwork.
Have you completed the course??
@@abhishekkumarsah9492 Have you completed this course ? 🤣🤣
Homework:1 -
7:34 #include is written to include the header file which includes the input and output function.
(we have to include the namespace to tell the compiler that it should use the standard namespace function and #include is used for printing output and taking input from the user).
OR using namespace std is written because there are many namespaces define already so to know which cout to use in which namespace, we define the standard one
The name of the function for printing output and taking input is cout and cin.
2. Out of different namespaces select cout of std namespace
HOMEWORK:2
Time-Stamp 24:21
Answers:-
1)NINEY Positive
2) 3
3) Love24
HOMEWORK:3
25:39 -> to check whether the character is uppercase or lowercase or digit
#include
using namespace std;
int main(){
char ch;
cin>>ch;
if(ch>='A' && ch
In home work 3 i have one doubt
It check condition only for 'a' and 'z' then what about the other characters?
Please clear my doubt.
@@idraksheikh301 compare with ascii values you will get the code
@@15priyanshupratapsingh24 ok thank you sir
In exercise 3 use ASCII values
Q1):
"#include" is a header file which contains cout and cin function.
'using namespace std' is written to make the computer understand the code for cout and cin, which is predefined in namespace std. Thats why we need to mention which namespace is used in the program.
Q2):
(1) NINEYPOSITIVE
(2) 3
(3) Love24
Q3):
#include
using namespace std;
int main()
{
char ch;
cin>>ch;
if(ch>='a' && ch
Answer of Part (3) of 2nd question will be
LoveLovely24
Because elseif condition is also true
@@its._ankur love24 is correct bro because first condition is true
Lovelovely24 is the answer
@@antusaha6278 did u executed this code?
@@antusaha6278 love24 is right answer
Completed this lecture on 1 July,2024 Monday at 4:31 PM ....less goo ..maza aaya
bhai kaisa ta , course ?
I am gonna start this series from today(9th september 2024 ) and swear to do atleast one video in one day, will comment start and end time everyday after completing the video so I can keep myself accountable. kudos and best of luck. Lets do this.....like this to remind me of these at every like thankyou
🥰😍😊😊
bhai C LANGUAGE TUJHE PAHLE SIKH RKHI H YA DIRECT START KR RHA H
@@KaranKumar-fn9ql bhai pahle c++ karle mahi to dikkat aayegi
Very excited to complete this course, pls keep going✌️
#Homework
24:28
1. NINEY POSITIVE
2. 2
3. Love
25:48 (uppercase,lowercase or number)
#include
using namespace std;
int main(){
char ch;
cin>>ch;
if(ch>=48 && ch
answer of 2nd question will be 3 cuz we are reassigning the value of a in if condition
@@tribhuwanjoshi6485 yes it should be 3. Thank you.
@@aryan5035 2. 3
3. Love 24
Love Bhaiya - the awesome content maker. I am expecting to take maximum benefit from your DSA course. Modern day Dronacharya & we are learning coding (modern day weapons) instead or Archery.
24:22 answer NINEY POSITIVE
24:26 answer 3 as variable a is modified
24:30 answer LOVE because (The else if and else blocks are not executed because the condition of the first if statement was true, and once an if statement is true, the subsequent else if and else statements are skipped.)
25:27 HW CODE
char ch;
cout ch;
if(ch>='A'&&ch
Great session Thanks a lot!
H.W 1
#include is written to include the header file which includes the input and output function.
using namespace std is written because there are many namespaces define already so to know which cout to use in which namespace, we define the standard one.
H.W 2
NINEY
3
Love
H.W 3
#include
using namespace std;
int main() {
char ch;
cin >> ch;
if (ch >= 'A' && ch
H.W 2 output 1 is wrong
NINEYPOSITIVE both are if condition
@@anjalichauhan5169 exactly
you can take double datatype for accurate result hw5
*HW2
3.Love 24 😁
ANSWER 25:15
int main()
{
char b;
cin>>b;
bool k=isupper(b);
bool i=islower(b);
if( k==1){
cout
24:43
Answer is Love because the check that a > 20 then the give the output and exit from the condition
how many people understand ... when he said ' ab aap samajhdar hai" ......
😂
3
@@niccolopaganini17824
Thank you for such a good content.🙂
hii Nandini_U , how you are
did you complete cource?
which degree u did by the way
Homework: - 7.34 (we have to include the namespace to tell the compiler that it should use the standard namespace function and #include is used for printing output and taking input from the user). The name of the function for printing output and taking input is cout and cin.
25.39 -> to check whether the character is uppercase or lowercase or digit
#include
using namespace std;
int main(){
char ch;
cin>>ch;
if(ch>='A' && ch
bro hum seedha esse nehi likh sakte
&& lgana jaruri h ??
a
@@zostera9107 likh sakhte h
Best teacher ever ❤🎉
Homework Solution(25:53):
#include
using namespace std;
int main(){
char a;
a= cin.get();
if((a>64)&&(a
Hi Tejinder
1. You can use cin.get() here but I don't think it is necessary as we don't have to take input of Space, Tab or Enter so a normal cin >> a would do the job.
2. Secondly, try using if - else if block for better readability as told by Love Bhai.
3. We can use (a >= 'A') && (a 64)&&(a
Time Stamp:-24:29
1) NINEYPOSITIVE
2) 3
3) LOVE24
in que2, why 3 ?
25:26
#include
using namespace std;
int main()
{
char ch;
cin >> ch;
if(ch>= 'a' && ch
HW1:
We use as a header file because it give access to the user to use functions like cout, cin, etc.
Since there are many namespaces are present , we use only the standard one.
HW2:
NINEYPOSITIVE
3
Love24
HW3:
int main(){
char ch;
cout ch;
if(ch>='A'&&ch
where you studying ?
@@_ShreyaSingh-wv4qz In a college 😂 and you??
I know it's a college. I mean name of Institute and it's location
@@_ShreyaSingh-wv4qz Panjab University
and what about both of you?
HW2 CORRECTION:
LoveLovely
24:21
output
1. niney
POSITIVE
2. 2
3. LOVE
LOVELY
answer
25:15
char z;
cout
We are including header file so that our cout cin function are included in the file
And we use std namespace right now for our simple functions like write a line
great video, but one doubt in the question of prime number. How can we get the output in a single line if the number is prime or not prime, unlike what you showed in video? e.g input is 7, I want the output to be "prime". I want to know if it is possible using while loop, if then how?
Yes its possible.
int n;
cin>>n;
int i=2;
while(i
#include
using namespace std;
int main()
{
char ch;
coutch;
if(ch>=97 && ch
If my input is @ then it showing 'This is Numeric'
@@Ved4406 For last else case use else if (ch>=48 && ch=97 && ch