2.3 More on variables Java Tutorial part 5 | Lecture

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ต.ค. 2024

ความคิดเห็น • 41

  • @ashishmehradotdev
    @ashishmehradotdev 7 ปีที่แล้ว +5

    I'm very curious to join your java lectures from last 1 - 1.5 years and finally I'm here.... 🙂

  • @pranav9339
    @pranav9339 2 ปีที่แล้ว

    Hello Navin, what is the version of jdk which you're using in these videos? Since we are in 2022, I'd like to clear few small syntax changes. Thanks for the tutorial.!

  • @SmartProgramming
    @SmartProgramming 6 ปีที่แล้ว +1

    nice one sir, thanks for this concept 👍👍

  • @yasmeensultana6046
    @yasmeensultana6046 7 ปีที่แล้ว

    Hi sir,
    from past years m trying to learn java but i find too bore to learn but ur lessons are awsome ,it is very easy to learn ,it is very good u give real tym examples .
    request you to give more real time examples to make learning more interesting and easy .
    hats off sir

  • @harpreetkaur-qh2su
    @harpreetkaur-qh2su 6 ปีที่แล้ว

    Hello sir, Mostly I watch ur every tutorial and your way of teaching is amazing. I have one question you had created one program in which using 0B u converted binary to decimal values. is there any similar way to convert decimal to a binary value. Plz, help me out...

  • @vivekdhasal402
    @vivekdhasal402 9 ปีที่แล้ว +5

    sirwe hav writtrn num2 two times
    so y its not reading the initila one num2 which is 3

  • @meghanan114
    @meghanan114 5 ปีที่แล้ว

    I have a doubt
    Class A
    {
    P.S.V.main(String args[])
    {
    char c1=('A'+'B');
    char c2=('a'+'2');
    char c3=('2'+'3');
    S.O.P("c1 :"+c1);
    S.O.P("c2 :"+c2);
    S.O.P("c3 :"+c3);
    }
    }
    Output : c1 : ?
    c2 :?
    c3 :101
    Why c1 and c2 gives question mark
    Plz kindly reply ...

  • @bimalsirg
    @bimalsirg 6 ปีที่แล้ว

    great sir...where is next part.... please make playlist for variable topics

  • @rohanshetye5495
    @rohanshetye5495 6 ปีที่แล้ว +14

    Java is not based on ASCII code it's based on Unicode that's why char having 2 byte size to represent all characters...

    • @AmitTiwari-wf1xj
      @AmitTiwari-wf1xj 4 ปีที่แล้ว +1

      Unicode is a superset of ASCII, and the numbers 0-127 have the same meaning in ASCII as they have in Unicode.Because Unicode characters don't generally fit into one 8-bit byte, there are numerous ways of storing Unicode characters in byte sequences, such as UTF-32 and UTF-8. So if Navin Sir say 'a' or 'A' as ascill or unicode in this context it does not matter until the values lies below 127

  • @sanisan5787
    @sanisan5787 5 ปีที่แล้ว +1

    Sir u said ASCII value ends at 127 ..but u gave 564 y is dat so?

  • @sateesh227
    @sateesh227 7 ปีที่แล้ว

    can u cover a vedio on regular expressions in Java .........if possible thanks in advance

  • @nitinchowdhary1983
    @nitinchowdhary1983 7 ปีที่แล้ว

    really nice , i am going to learn programming

  • @ashutoshbambal614
    @ashutoshbambal614 6 ปีที่แล้ว

    sir i have a question suppose int i=12; so exactly how many bits or byte occupied by 12 or it occupied whole 4 byte if not occupied 4 byte so how many bits or byte wastage. i know int is 4 byte plz explain

    • @ayushgupta4077
      @ayushgupta4077 5 ปีที่แล้ว +2

      binary representation of 12 is 1100(4 bits) but since u r assigning it to int which is of four bytes or thirty two bits it will be allocated as 00000000000000000000000000001100

  • @sairamgorantla1171
    @sairamgorantla1171 3 ปีที่แล้ว

    But java follows Unicode how to get unicode sir..!

  • @Arshadkhan-sj4dv
    @Arshadkhan-sj4dv 7 ปีที่แล้ว

    hey...
    thnx sir ...for java tutorial ...learing java is easy for me..

  • @kongaratenikar2098
    @kongaratenikar2098 4 ปีที่แล้ว

    Tq sir this video halped to know new trick

  • @onlineworld3838
    @onlineworld3838 3 ปีที่แล้ว

    Thank you sir form omprakash

  • @shuvshaw9594
    @shuvshaw9594 5 ปีที่แล้ว

    Very helpful

  • @progyanbiswas4622
    @progyanbiswas4622 4 ปีที่แล้ว

    In online compiler of Java I can't get the value from ASCII to character convertion it's always getting some error while compiling

    • @codingc3684
      @codingc3684 2 ปีที่แล้ว

      public class Main
      {
      public static void main(String[] args) {
      char b=65;
      System.out.println(b);
      }
      }

  • @NishaMeenachocolover
    @NishaMeenachocolover 8 ปีที่แล้ว +1

    Hey
    I am able to compile my code properly but at the run time error is shown
    "the system cannot find the file "C:ProgramData\Orcale\Java\javapath\java.exe"

    • @saiprasad123456
      @saiprasad123456 8 ปีที่แล้ว

      +Nisha Meena You need to configure the path in Environment Variables.

    • @NishaMeenachocolover
      @NishaMeenachocolover 8 ปีที่แล้ว

      I already did that.

    • @NishaMeenachocolover
      @NishaMeenachocolover 8 ปีที่แล้ว

      +Telusko Learnings (tusk) Stiil not working :(

    • @saiprasad123456
      @saiprasad123456 8 ปีที่แล้ว

      +Nisha Meena
      Hope this might help.
      stackoverflow.com/questions/26864662/how-to-solve-the-error-the-system-cannot-find-the-file-c-programdata-oracle-ja

    • @NishaMeenachocolover
      @NishaMeenachocolover 8 ปีที่แล้ว

      +Sai Prasad - Not helping.

  • @srishtirani6356
    @srishtirani6356 5 ปีที่แล้ว

    sir compile or run kaise krna progragramming ko????

  • @himanshumalik5263
    @himanshumalik5263 5 ปีที่แล้ว

    some parts of variable is not showing...

  • @Mahi-pm5li
    @Mahi-pm5li 8 ปีที่แล้ว

    hey
    i am trying to download these videos but some of them are just audible.The contents in some videos are not moving,it is paused but the sound is just going on.

  • @2ndborn283
    @2ndborn283 7 ปีที่แล้ว

    help me ...I am getting
    error: illegal start of expression public static void main( String a [])
    ^

    • @2ndborn283
      @2ndborn283 7 ปีที่แล้ว

      Telusko Learnings I am getting the same error even with a[] without space...

    • @shrutisaraswat1776
      @shrutisaraswat1776 6 ปีที่แล้ว

      MUST WATCH its should be written as String args []

  • @ramakrishnab321
    @ramakrishnab321 4 ปีที่แล้ว

    explain BYTE datatype

  • @gurunarayana1382
    @gurunarayana1382 4 ปีที่แล้ว

    can u fix the audio its very low

  • @Unknown_artist6
    @Unknown_artist6 6 ปีที่แล้ว

    bro after tutorial 1.5 it jumps to another tutorial instead of tutorial no# 1.6

    • @ayushgupta4077
      @ayushgupta4077 5 ปีที่แล้ว

      may be its his numbering mistake i don't think any video is missed