If you’re new to programming but want a career in tech, I HIGHLY RECOMMEND applying to one of Springboard’s online coding bootcamps (use code ALEXLEE for $1,000 off): bit.ly/3HX970h
@sicktastic.videos Жыл бұрын
Good to see you making videos again.
@MVPHitter1 Жыл бұрын
You helped me out last year when I was starting in college comp sci, appreciate it
@brianreh6465 Жыл бұрын
Your videos are super helpful. Thanks Alex!
@emmanuelbinen6554 Жыл бұрын
Java is easy with you. When I am stuck I always check your courses
@maechelangelobeats Жыл бұрын
Just found out your channel! The way you explain and show helps alot
@stephenperez8989 Жыл бұрын
Hi, could you make a video how to connect mysql database on your mac Eclipse IDE. Thanks! I really learn a lot from you!
@kingtyphoon29 күн бұрын
Awesome video!
@bustoms Жыл бұрын
Hey Alex could you go over heaps and priority queues?
@asvinkumar5353 Жыл бұрын
Easy to learn brother , Thank u 🫂
@DiaborMagics5 ай бұрын
Precise? But it's a floating point. When I do math with it , I often get things like #.5999999 where it should have been #.6. I was kind of hoping you'd cover rounding to 2 decimal places here, especially because calculating with currency requires precise output ^^
@anirutaramkanagarajan6585 Жыл бұрын
i am a freshman in high school and i am trying to get into AP computer science. i really like ur videos and i have a specific request to you cuz i understand coding only when you teach it, can you do a video with decision statements loops methods nesting scope random numbers strings array text files user input output and formatting sorting debugging and tracing code primitive data types numerical operations comparisons (numerical and boolean) please do this favor for me . i hope you do a video on these topics
@new_upgrades Жыл бұрын
public class Test3 { public static void main(String[] args) { double x = 0129.89; double y = 0167; System.out.println(x+","+y); } output:129.89,119.0 why? ok if it is octal number so 0167 value becomes 119.0 but 129.89 octal value is 89.89 why i got 129.89? can you please explain this