Encapsulation in Java
7:20
14 күн бұрын
Abstraction Using Interfaces in Java
5:27
Hybrid Inheritance in Java
7:09
14 күн бұрын
Hierarchical Inheritance in Java
5:44
Multilevel Inheritance in Java
5:50
14 күн бұрын
Single Level Inheritance in Java
4:28
Inheritance in Java
1:14
14 күн бұрын
HashMap in Java
17:10
21 күн бұрын
Method Overriding in Java
10:30
21 күн бұрын
Super Keyword with Constructor in Java
15:09
Super Keyword with Methods in Java
6:07
Super Keyword with Variables in Java
7:24
Jagged Array in Java
21:46
21 күн бұрын
3D Array in Java
18:44
21 күн бұрын
2D Array in Java
22:30
21 күн бұрын
Assign Values to an Array in Java
9:15
Array in Java Basic to Expert Level
22:49
Character Array in Java
2:17
28 күн бұрын
String Builder in Java
4:17
28 күн бұрын
Пікірлер
@serafimurbas3440
@serafimurbas3440 Жыл бұрын
link to page?????
@avscode2705
@avscode2705 Жыл бұрын
how you made this can you give the link of code
@BhujiaCoder
@BhujiaCoder Жыл бұрын
Can I use this code for College project ??
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
please reply me i literally need your help friend its really messed up i need to know how to set up the complete environment can u please ping me back
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
please reply me i literally need your help friend its really messed up i need to know how to set up the complete environment can u please ping me back
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
please reply me i literally need your help friend its really messed up i need to know how to set up the complete environment can u please ping me back
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
please reply me i literally need your help friend its really messed up i need to know how to set up the complete environment can u please ping me back
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
please reply me i literally need your help friend its really messed up i need to know how to set up the complete environment can u please ping me back
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
please reply me i literally need your help friend its really messed up i need to know how to set up the complete environment can u please ping me back
@pawansinghchaudhary
@pawansinghchaudhary 2 жыл бұрын
hey friend need your help please reply , regarding this project asap please
@kiyokiriha8294
@kiyokiriha8294 2 жыл бұрын
bro pls reply and provide this code in java
@kiyokiriha8294
@kiyokiriha8294 2 жыл бұрын
provide this code in java
@adityakumarsahu1884
@adityakumarsahu1884 2 жыл бұрын
which IDE it is..plz
@movie41life
@movie41life 2 жыл бұрын
did u find out
@sadekomar
@sadekomar 2 жыл бұрын
This program won't work with numbers like 000682 it'll only see 3 digits.
@builder481
@builder481 2 жыл бұрын
#include <stdio.h> #include <string.h> int main(void) { char *s = "000682"; int length = strlen(s); printf("name length: %u", length); }
@builder481
@builder481 2 жыл бұрын
python >>> number_long = ('000682') >>> print('the length of the string is', len(number_long))
@builder481
@builder481 2 жыл бұрын
Hey great video but can you explain to me why bigger numbers does not work with this method?
@sadekomar
@sadekomar 2 жыл бұрын
Because it's int not long int
@builder481
@builder481 2 жыл бұрын
@@sadekomar that is true thank you
@nighthyper3140
@nighthyper3140 2 жыл бұрын
thank you so much
@zohaibhamdule
@zohaibhamdule 2 жыл бұрын
Why doesn't this video have more likes?
@SuperMaDBrothers
@SuperMaDBrothers 10 ай бұрын
its the wrong way of thinking about it
@bragelbytes779
@bragelbytes779 3 жыл бұрын
Great video, this helped me out so much!
@tezz_budhhi
@tezz_budhhi 3 жыл бұрын
thoda help chahiye dm kaise kre plzzz help
@entertainment11378
@entertainment11378 3 жыл бұрын
How can we do sum of uniques items in object array [ {id :1,chat: 2},{id :1, chat:3}] result should be [{ id:1, chat : 5}] ?
@ajaygoswami3791
@ajaygoswami3791 3 жыл бұрын
Which app is this
@topnewinformation7142
@topnewinformation7142 3 жыл бұрын
Brother Can you make video how to install this step by step
@nehemiatejoasa1298
@nehemiatejoasa1298 3 жыл бұрын
Hello, How do you turn the data from images into CSV?
@saivardhanpallerla9
@saivardhanpallerla9 3 жыл бұрын
coding ninjas
@mjvirus
@mjvirus 3 жыл бұрын
Bhai can plzz tell me how to control run tym execution in JavaScript like Sleep keyword of #include<unistd.h> library
@programmerly
@programmerly 3 жыл бұрын
Hi! Please check this method and let me know what do you think about it : kzfaq.info/get/bejne/n5yRoqtky9CWpZc.html
@rajattiwari6697
@rajattiwari6697 3 жыл бұрын
can you solve in python.?
@codekaleidoscope4980
@codekaleidoscope4980 3 жыл бұрын
Java solution for similar questions can be found in kzfaq.info/get/bejne/qdKqnqR3rqfLm3U.html
@monsurchowdhury5582
@monsurchowdhury5582 3 жыл бұрын
If it is not returning anything then why it is printing ?
@alm3rfa195
@alm3rfa195 3 жыл бұрын
Same Question 😂
@Easy_crafts_fr_u
@Easy_crafts_fr_u 3 жыл бұрын
Sir ,why we use return statement(means without return statement also it will print output).
@jyothiswarreddy514
@jyothiswarreddy514 3 жыл бұрын
The void main() indicates that the main() function will not return any value, but the int main() indicates that the main() can return integer type data. When our program is simple, and it is not going to terminate before reaching the last line of the code, or the code is error free, then we can use the void main().
@Easy_crafts_fr_u
@Easy_crafts_fr_u 3 жыл бұрын
Sir ,why we use return statement(means without return statement also it will print output).
@steamgamer8384
@steamgamer8384 3 жыл бұрын
I'm sorry I tried really hard to understand what you're saying, I'll give it one more try and play the video again
@programmerly
@programmerly 3 жыл бұрын
Try this: kzfaq.info/get/bejne/n5yRoqtky9CWpZc.html
@jgicreativity9588
@jgicreativity9588 3 жыл бұрын
not working
@ProgramCodeChannel
@ProgramCodeChannel 3 жыл бұрын
Because it's possible that you have different version of opencv Check your opencv version and other libraries
@jgicreativity9588
@jgicreativity9588 3 жыл бұрын
unable to run
@aumobilechamps1142
@aumobilechamps1142 3 жыл бұрын
Humlog 0 yaa fir 1 kyo likhte h return ke baad Wahi mujhe samajh nhi aa rha😔
@ProgramCodeChannel
@ProgramCodeChannel 3 жыл бұрын
Kyuki ager hamara function integer type he to function ko integer return karna chahiye and jab hamare pass return Karne ko nahi hota he to ham 0 ya 1 return karwa dete he. Ager function ka type void he to hame return karwane ki jarurt nahi he.
@mdshoyeb3150
@mdshoyeb3150 2 жыл бұрын
agar function ka return type int hai to RETURN k aage 0 or 1 ko mentoin krte hai agr return type void hai to sirf retun likhte hai
@chibspro
@chibspro 3 жыл бұрын
This video isn't clear
@neela681sumanth8
@neela681sumanth8 3 жыл бұрын
thank u sir ,for simple explanation.
@Chhiling08
@Chhiling08 3 жыл бұрын
Can we implement in android app using android studio
@ProgramCodeChannel
@ProgramCodeChannel 3 жыл бұрын
Yes you can do it, go for it.
@Chhiling08
@Chhiling08 3 жыл бұрын
@@ProgramCodeChannel Can you Mansion the library that can handel AI data set like tensorflow lit
@asheemishra4076
@asheemishra4076 4 жыл бұрын
thankyou so much helped alot
@pycodingai_ml602
@pycodingai_ml602 4 жыл бұрын
sir error aa rahi he TypeError: object of type 'NoneType' has no len() please sol this error please help me
@ProgramCodeChannel
@ProgramCodeChannel 4 жыл бұрын
Send your error and code line screenshot on [email protected]
@ishikagupta4005
@ishikagupta4005 3 жыл бұрын
@@ProgramCodeChannel Hi , I got the same error in line 43 , if len(cnts) >= 1: TypeError: object of type 'NoneType' has no len(). Can you please help?
@parthmaheshwari9961
@parthmaheshwari9961 3 жыл бұрын
@@ishikagupta4005I am getting the same error..did u got any solution please it would be great help!
@ishikagupta4005
@ishikagupta4005 3 жыл бұрын
@@parthmaheshwari9961 what I did was googled hindi character recognition and got a different author's code which is similar to this one. Try that it executed with 0 errors.
@parthmaheshwari9961
@parthmaheshwari9961 3 жыл бұрын
@@ishikagupta4005 can u please share it to me
@olaabokhader6185
@olaabokhader6185 4 жыл бұрын
How can i see the code
@pediabot
@pediabot 4 жыл бұрын
What’s Gero. Which language you’re talking in. These people pollute the whole internet
@psd90
@psd90 4 жыл бұрын
You don’t pollute the internet, I understand you and thank you for uploading! Very easy to understand
@bragelbytes779
@bragelbytes779 3 жыл бұрын
This comment is just pure ignorance.
@mykesmyth8856
@mykesmyth8856 3 жыл бұрын
Honestly...its really hard to understand. I get his frustration because you are looking for a solution and you finally find a video and its of a guy who can barely speak english. It's just frustrating thats all. I run across this issue a lot. Many Indians will upload helpful videos but their english is super bad. Thanks for uploading though. I did see your code. Good job!
@sohanatarafder9905
@sohanatarafder9905 4 жыл бұрын
Please help me I'm unable to write through webcam
@ProgramCodeChannel
@ProgramCodeChannel 4 жыл бұрын
to write through webcam you have to use a blue color that can be your pen backside . if you have confusion with that you can contact me on my GitHub Email .
@sohanatarafder9905
@sohanatarafder9905 4 жыл бұрын
@@ProgramCodeChannel I was using the blue colorpen but nothing happens I don't know what is wrong everything was going perfect but the web cam captured by tshirt's color.
@ProgramCodeChannel
@ProgramCodeChannel 4 жыл бұрын
@@sohanatarafder9905 what is the color of tshirt
@ProgramCodeChannel
@ProgramCodeChannel 4 жыл бұрын
you should share the screenshot so that I can help you with that
@sohanatarafder9905
@sohanatarafder9905 4 жыл бұрын
@@ProgramCodeChannel blue
@theroock8944
@theroock8944 4 жыл бұрын
Nice bro
@Prashanth_Vlogs2213
@Prashanth_Vlogs2213 4 жыл бұрын
Tq
@Prashanth_Vlogs2213
@Prashanth_Vlogs2213 4 жыл бұрын
Plz solve this problem in c language
@ProgramCodeChannel
@ProgramCodeChannel 4 жыл бұрын
if you want the solution in C language just change cout with printf here is code void printPattern(int n){ int a=0, b=n-1,c=1; int arr[n][n]; for(int i=0; i<n; i++) { if(i%2==0){ for(int j=0; j<n; j++){ arr[a][j] = c; c++; } a++; } else{ for(int j=0; j<n; j++){ arr[b][j] = c; c++; } b--; } } for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ printf("%d ",arr[i][j]); } printf(" "); } }
@piya876
@piya876 4 жыл бұрын
lol he says var is datatype :P
@MrViciousway
@MrViciousway 4 жыл бұрын
my mentor just drilled me on this...can't believe I couldn't figure it out.
@factoftechandlogic698
@factoftechandlogic698 4 жыл бұрын
Sir kuch samaj nahi aya
@alexlerner8327
@alexlerner8327 4 жыл бұрын
there is something clearly wrong with your measurements. You are saying 900 seconds, yet the program clearly comes back instantly. Are you sure you are not confusing seconds with milliseconds? 900 seconds is 15 minutes -- it doesnt take 15 minutes to push 1000 numbers.
@blazebite30
@blazebite30 3 жыл бұрын
Ofc is not seconds, but the code still doing it correctly which is why we are here.