Пікірлер
@limbo4878
@limbo4878 Ай бұрын
Wow.. i was searching 30 minutes for the terminal where I have to type in the command. I have to say that i learn Java for the 1st time lul
@rabiumuideen2470
@rabiumuideen2470 Ай бұрын
Pls how to convert plaintext given in alphabetical to binary bits
@stewartwares3287
@stewartwares3287 2 ай бұрын
Nice vid - thanks!
@AnjaneeWijewardana
@AnjaneeWijewardana 2 ай бұрын
I think we are supposed to use .startsWith and .endsWith built in methods. otherwise your code will not cover if the DNA sequence starts with TGA and ends with ATG.
@projectcodemastery9243
@projectcodemastery9243 2 ай бұрын
Hi, The whole point is to write your own logic by following Codecademy's instructions shown on the left and which do not include the built in methods.
@tabithachee6380
@tabithachee6380 3 ай бұрын
I tried following this project on an IDE but i keep getting an error in my code to say that the IF conditions of loanLength<= 0 and interestRate <= 0 will always return false. Im assuming its because we already declared it as 3years and 5% respectively. i wonder if this should have been made into a exception handing to print the error message?
@Ipoyu
@Ipoyu 4 ай бұрын
Short, easy, simple and straight to the points. Very good video.
@adnanmusa3675
@adnanmusa3675 5 ай бұрын
Thanks 👍
@projectcodemastery9243
@projectcodemastery9243 4 ай бұрын
Welcome 👍
@hiraamin7049
@hiraamin7049 5 ай бұрын
Bcz what ever workspace i had created is corrupt after few days
@hiraamin7049
@hiraamin7049 5 ай бұрын
Is it a best workspace to work
@carpios1986
@carpios1986 5 ай бұрын
the error in part 7/8 was in the radius formula, there should have been doubles instead of int
@equationaeecrama8517
@equationaeecrama8517 5 ай бұрын
great keep uploading like leetCode questions or project
@Ice_2192
@Ice_2192 6 ай бұрын
4:03 I think you mean type integer not string.
@projectcodemastery9243
@projectcodemastery9243 6 ай бұрын
Hi! Yes, you are correct indeed! I misread what what on the screen
@Ice_2192
@Ice_2192 6 ай бұрын
I've been following your videos for the while now and this is the firs project in the Java section that I managed to do 100% on my own while this one gave you trouble. Regardless, you've been a huge help!
@UmeR_UFA
@UmeR_UFA 7 ай бұрын
thank you so much for helping me
@projectcodemastery9243
@projectcodemastery9243 7 ай бұрын
You are most welcome! Keep on learning!
@scooperofcoop
@scooperofcoop 7 ай бұрын
Got stuck on one of the levels, your explanation was thoughtful and helped me immediately, thank you so much
@projectcodemastery9243
@projectcodemastery9243 7 ай бұрын
You're very welcome! Keep on learning!
@paulopescotapa788
@paulopescotapa788 7 ай бұрын
Thanks you
@projectcodemastery9243
@projectcodemastery9243 7 ай бұрын
Thank you too!
@informaticash
@informaticash 7 ай бұрын
Hey! Thank you for helping other who couldn't afford to buy Pro Version of Codeacademy like me, But Thanks a lot! Happy Learning 🙂
@projectcodemastery9243
@projectcodemastery9243 7 ай бұрын
You're very welcome!
@BIKENEW1
@BIKENEW1 8 ай бұрын
thank you for this film, it"s so much easyer!!!!
@projectcodemastery9243
@projectcodemastery9243 8 ай бұрын
You're most welcome! keep on learning!
@obinnaeke9663
@obinnaeke9663 8 ай бұрын
What if I want to calculate this with an underlying cipher being a Bitwise OR with say 1101?
@twilightgang4828
@twilightgang4828 9 ай бұрын
would be a very nice video if it didnt sound like you were trying to do asmr along with it.
@projectcodemastery9243
@projectcodemastery9243 8 ай бұрын
well i can't ge everyone happy and that's ok. This is MY work which takes time and effort - where are your vids ? Wait you have none and yet you complain about mine. If you don't like it move on brother
@Theascrochetfun
@Theascrochetfun 9 ай бұрын
on page number 3 questsion number 1 i cant get it right wvwn when i do exately as you say. can you help ?
@user-gv3ew1vo1r
@user-gv3ew1vo1r 9 ай бұрын
extremly helpful , thanks a lot
@projectcodemastery9243
@projectcodemastery9243 9 ай бұрын
You are welcome!
@KlanBr1
@KlanBr1 10 ай бұрын
"it's already turned to blue so it won't be getting anyyy... errors" jajaja just defined the typical day of a programmer
@KlanBr1
@KlanBr1 10 ай бұрын
thank you for your videos, you have a beautiful voice, and this is a course I'll never be able to see because in Latin American is much expensive. Sorry for my grammar, I' m not too good in English
@BassBass2.0
@BassBass2.0 10 ай бұрын
Your videos are a blessing! Thank you. Respectfully.
@phutruong3868
@phutruong3868 10 ай бұрын
Thanks for uploading. Please upload more courses walkthrough like this. Can i ask, im new to Java, which playlist should i watch first because i see that u upload a lot of playlist about Java which make me confuse as a beginner. Thanks for reading
@projectcodemastery9243
@projectcodemastery9243 10 ай бұрын
Hello and thank you for your message! I would recommend you start with this playlist as it covers the whole Java course from Codecademy kzfaq.info/sun/PL8sudCk7hR1qhgH7KAvwJzsZ1wc-owipv
@aaravkansal4174
@aaravkansal4174 10 ай бұрын
Can you please make a 2D Arrays image manipulation project tutorial!!!
@paolamerino4792
@paolamerino4792 11 ай бұрын
And, if I have a plaintext of an unpair number (7) I must add an ‘extra’ letter (for example: x) and do the process dividing my plain text in blocks of 2 letters
@projectcodemastery9243
@projectcodemastery9243 10 ай бұрын
Hello, Someone else asked the same question so I will repost my answer below: "you just divide by 2 and work with each side like shown in the video. If the number of bits is odd, you just fill up the missing bit/bits at the end with zeros. So for example if we have the plaintext 10101010101 (length is 11), the divided would be 101010 101010" I hope this helps!
@paolamerino4792
@paolamerino4792 11 ай бұрын
If I have a long plaintext (18 words) I must repeat the process 9 times?
@projectcodemastery9243
@projectcodemastery9243 9 ай бұрын
no, you just split it in half
@DrParstin
@DrParstin 11 ай бұрын
Thank you so much!! I needed this 🥹
@projectcodemastery9243
@projectcodemastery9243 11 ай бұрын
Thank you for your message! Keep on learning!
@hemanthkandalla4735
@hemanthkandalla4735 11 ай бұрын
Hi There, Thanks for the videos, i was trying to find them for a long time.
@projectcodemastery9243
@projectcodemastery9243 11 ай бұрын
Hi, thanks for stopping by! Keep on learning !
@icantsnipe4421
@icantsnipe4421 Жыл бұрын
It would be very much appreciated if you could take the Java intermediate course and continue the epic series. I also wanted to share a suggestion regarding this series. If you follow the instructions as provided, it could potentially lead to an even smoother outcome compared to completing the tasks beforehand and then explaining the process in the project. Thanks for all the efforts.
@icantsnipe4421
@icantsnipe4421 Жыл бұрын
at 7:27 I think that {1.7, 3.5} should be the elements in the ArrayList since initially the Array is {1.7, 2.5 ,3.5} ratings.remove(1); removes (2.5) not (1.7) so 0th element should be 1.7 and 1st element should be 3.5 regardless. Thanks for all the effort :)
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
Hey, you are most certainly right, well spotted and thank you for pointing it out!
@icantsnipe4421
@icantsnipe4421 Жыл бұрын
Thank you Alexandra.
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
you're most welcome! keep on learning!
@kamalraj2948
@kamalraj2948 Жыл бұрын
you are grate mam !! it really usefull
@sunandagupta7192
@sunandagupta7192 Жыл бұрын
What to do on hide and seek java
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
hello, what do you mean? if you can get me more info about this I can look into it! Happy learning !
@cradleofrelaxation6473
@cradleofrelaxation6473 Жыл бұрын
God bless your ma’am. I’ve watched the encoding and now watching the decoding. I have exams on Friday 7/July/2023
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
God bless you too and good luck with your exams! Keep on learning!
@danyahsan3958
@danyahsan3958 Жыл бұрын
cant understand ,, where did the variable i came from in .get() method
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
hey, if you can point which minute in the video, I can have a look and try help you out
@ghostofathens6600
@ghostofathens6600 8 ай бұрын
The expenses hold all the expenses we made and the total is at 0 so what we do is that by putting get we combine all our expenses into one large sum which is 230.36 + the total which is 0 wich will equal to the expenses.
@mansisakariya2193
@mansisakariya2193 Жыл бұрын
well explained
@igorkful
@igorkful Жыл бұрын
Thank you very much for this tutorial. I was struggling with compilation and you helped me a lot!!
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
You're very welcome! Keep on learning!
@Karamanchu
@Karamanchu Жыл бұрын
Thank you
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
you're most welcome! keep on learning!
@FFD80
@FFD80 Жыл бұрын
Thank you so much for posting these videos. They are such a great enforcement to the learning on Codecademy.
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
you're most welcome, and thank you for your appreciation message! Keep on learning!
@FFD80
@FFD80 Жыл бұрын
@@projectcodemastery9243 will you or did you do any videos for these topics in the Learn Java course of Codecademy 1. Access, Encapsulation and Static Methods 2. Two-Dimensional Arrays If you haven’t, would you please consider them? I haven’t found anyone else that explains with the clarity that you do while using the actual Codecademy examples.
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
@@FFD80 I haven't done them... yet! If there is enough demand I will surely continue the series and go into more advanced topics! Keep on learning no matter what !
@adheesvarana.k8888
@adheesvarana.k8888 Жыл бұрын
Thank you mam your video is very helpful
@charbilysf7592
@charbilysf7592 Жыл бұрын
What if we have multiple rounds!
@adheesvarana.k8888
@adheesvarana.k8888 Жыл бұрын
Need more videos mam
@NG-ee5qm
@NG-ee5qm Жыл бұрын
God bless you🙏
@vaithegivy6647
@vaithegivy6647 Жыл бұрын
Thank you so much dear...
@rofaida2938
@rofaida2938 Жыл бұрын
mrc
@elena_usa
@elena_usa Жыл бұрын
Thank you for your help!!!
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
You're most welcome Elena!
@lastspark4611
@lastspark4611 Жыл бұрын
Could you please specify the compiler that you use to run the program?
@projectcodemastery9243
@projectcodemastery9243 Жыл бұрын
Hey, the complier is the one made available by Codecademy inside their platform. If you follow along the videos locally on your PC, you should install the Java Development Toolkit (JDK). I also have a video on how to How to create, compile and run a Java file from Command Prompt CMD here: kzfaq.info/get/bejne/fsWhmpei0Je1p3U.html