#2.3 Java Tutorial | Primitive Data Type in Java

Поділитися
Вставка
  • Опубліковано 25 сер 2024
  • Instagram : / navinreddyofficial
    Linkedin : / navinreddy20
    Discord : / discord
    More Learning :
    Java - bit.ly/3xleOA2
    Python :- bit.ly/3H0DYHx
    Django :- bit.ly/3awMaD8
    Spring Boot :- bit.ly/3aucCgB
    Spring Framework :- bit.ly/3GRfxwe
    Servlet & JSP :- bit.ly/3mh5CGz
    Hibernate Tutorial :- bit.ly/3NWAKah
    Rest API | Web Service Tutorial :- bit.ly/38RJCiy
    Git :- bit.ly/3NUHB3V
    JavaScript :- bit.ly/3mkcFys
    Kotlin :- bit.ly/3GR2DOG
    Donation:
    PayPal Id : navinreddy20
    Patreon : navinreddy20
    www.telusko.com...

КОМЕНТАРІ • 50

  • @kavishagarwal2938
    @kavishagarwal2938 6 років тому +13

    I don't think anyone can explain this concept better than you... It was beautifully delivered.
    Thanks alot!

  • @vladanulardzic5859
    @vladanulardzic5859 4 роки тому +2

    Well done practical explanation (implicit conversion, explicit conversion, int ...), nice, clear, easy to understand. Thank you. Keep on.

  • @vishaalguru9666
    @vishaalguru9666 4 роки тому +1

    Sir video very nice, myself first time learner I am much more learned with ur lesson teaching Sridhar Kandukari my first coding master very happy now, i celebrate with u sir many more wishes from India sir, i am eating lemon pickle from vah chef very happy rn sir

  • @66thakur99
    @66thakur99 6 років тому +9

    Sir, also give 2-3 task for us at the end of the video so that we can practice it as well.

  • @johnsonbenjamin464
    @johnsonbenjamin464 6 років тому +3

    please continue to upload more videos don't give up keep up the good work Sir. Your content are great.

  • @afifkhaja
    @afifkhaja 4 роки тому +1

    Superb tutorial as always. Short and to the point

  • @mithank2666
    @mithank2666 2 роки тому

    thank you so much tumba tumba thanks

  • @Siddharth-uo6zw
    @Siddharth-uo6zw 4 роки тому +1

    Congratulations sir for 1million subscribers.

  • @bhaskarchary1231
    @bhaskarchary1231 5 років тому +15

    Did you said aliens at the beginning?

  • @kalpeshchandora6294
    @kalpeshchandora6294 6 років тому

    I'm following you since you had 20k subscribers. Thanks always

  • @solomonyosef6768
    @solomonyosef6768 4 роки тому

    Sir! You really awesome! God Bless you!

  • @tarinigupta7292
    @tarinigupta7292 4 роки тому +1

    500th like by me✌🏻👏🏻👏🏻

  • @anirudhpai7487
    @anirudhpai7487 3 роки тому

    Thanks a lot for the explanation

  • @sp4033
    @sp4033 4 роки тому

    Amazing explanation, thanks a lot!

  • @ayanroy9382
    @ayanroy9382 2 роки тому

    Thanks

  • @595saiteja8
    @595saiteja8 6 років тому +1

    Air you are really awesome
    Keep up the good work

  • @rohini2107
    @rohini2107 4 роки тому +1

    Hi Navin...i am a beginner in java and while i was watching this video ..i was wondering why dont we add "d" in the end when we are using double

    • @hrithiksrinivas
      @hrithiksrinivas 3 роки тому

      Double is the default for numbers like 5.5 etc

  • @jaybartgis5148
    @jaybartgis5148 6 років тому

    Why do you have to specify a long as L at the end of a number if you already specified it as one when you declared it?

  • @riteshkumarsinha7823
    @riteshkumarsinha7823 6 років тому

    Thanks sir for new Java series...

  • @UCSALAGUPRIYAM
    @UCSALAGUPRIYAM 3 роки тому

    Why java store string type in default

  • @rohitvats8019
    @rohitvats8019 6 років тому

    I have a question why long data type cast to float data type

  • @bibhuprasadsharma7097
    @bibhuprasadsharma7097 5 років тому +1

    char c='A';
    c=66;
    My doubt is that if c is first A then the c becomes 66 then A is not equal to 66 andA=65 then it should come error

  • @parasgoyal8588
    @parasgoyal8588 6 років тому +1

    How long can b assigned to float as shown in diagram.. because long takes 8 bytes whereas float takes only 4

  • @tharunkumar9208
    @tharunkumar9208 3 роки тому

    Long is of 64bit where as float is of 32bit....how can we assign long to a float

  • @h.rehaief3567
    @h.rehaief3567 5 років тому +1

    you are a great teacher but,,,,,,,, pleasesssssssss can you speak slowly thanks!

  • @ashsihver
    @ashsihver 6 років тому

    I have a question for float Vs double may be its a silly question , as said we have to mark r after float, how will I do when i take user input for decimal values?? or should i use double always for user input?

    • @rudhir8
      @rudhir8 5 років тому +1

      Literal values containing float are always implicitly considered as type 'double' in Java. When you assign the float literal (which is of type double) to a float variable, you are essentially trying to fit a value of type double (bigger container 64 bits) to a smaller container i.e type float (32 bits). Java then forces you to explicitly add the float literal with f or F to indicate that you really want to force the float literal (type is double) to a float type (potentially losing precision).
      So you can either always use double (which java does as float literal are implicitly double and it's simpler) or use float but you have to implicitly cast the float literal value to float.

  • @letstalkbodybuilding7943
    @letstalkbodybuilding7943 3 роки тому

    I didn't understand in int short we didn't write 'I' or 'S' at the end numerical literal then to write L for long

  • @ManishPandey-oq8wm
    @ManishPandey-oq8wm 6 років тому

    Sir please ... Complete data structure series please in java

  • @funkysplash4844
    @funkysplash4844 4 роки тому

    Sir, can you explain me how long is 64 bit integers?

    • @teluskosupport
      @teluskosupport Рік тому

      64-bit signed integer type is used to store negative or positive whole number. Range of 64-bit integer is from -9223372036854775808 to 9223372036854775807.

  • @ramkarank7613
    @ramkarank7613 6 років тому

    is there any lang. that is not strongly data type

  • @natialo
    @natialo 2 роки тому

    Aliens?

  • @rohittiwari-cp9ux
    @rohittiwari-cp9ux 6 років тому

    Sir, one suggestion. Kindly add link to donate in your video's description.So, if ppl want to donate for Telusko learning then they know where to go.

  • @pratikgupta7373
    @pratikgupta7373 6 років тому +1

    Please make servlet video

  • @PrinceThinks
    @PrinceThinks 6 років тому

    sir i am goin to start wid java so can i go with your old course or current this course, i have no knowledge of programming

  • @rajjat1146
    @rajjat1146 6 років тому +1

    sir pleas mke tutorials on jquery
    It is needed in java

  • @aditisingh3389
    @aditisingh3389 6 років тому

    Can you teach pattern printing too please?

  • @pavanrai6196
    @pavanrai6196 6 років тому

    Please upload videos for java jsp, servlet , spring

    • @priteshshinde6779
      @priteshshinde6779 6 років тому

      Telusko Learnings That means you are going to cover both Core Java as well as Servlets JSP series parallely, aren't you??

  • @595saiteja8
    @595saiteja8 6 років тому

    Sir is it ok to do on bluej

  • @riteshkumarsinha7823
    @riteshkumarsinha7823 6 років тому +1

    U forgot to give number on this video... 2.3

  • @hunnybunny786
    @hunnybunny786 6 років тому

    sir pattern printing please

  • @thegreatcheater7154
    @thegreatcheater7154 6 років тому

    Haha he is crazy