OOPs - Java Programming | Ep-15 | Final, Super & this Keyword | Tamil | code io

Поділитися
Вставка
  • Опубліковано 9 лис 2024

КОМЕНТАРІ • 15

  • @Mohamed-bk9np
    @Mohamed-bk9np Рік тому +5

    Bro Collections kum video pottinga na romba useful ah irrukum

  • @gokulgoku2557
    @gokulgoku2557 Рік тому +3

    nice explaination bro♥ small suggestion bro i'm trying to place in siemens technology bro how to place on that company bro

  • @Guru-mx4ez
    @Guru-mx4ez Рік тому +1

    TQ so much bro

  • @PriyaPriya-kl3jt
    @PriyaPriya-kl3jt Рік тому +1

    Bro I want more daimention about this keyword so please upload the separate vedio for this keyword of another points.

  • @sugu3388
    @sugu3388 Рік тому +1

    Post a video on looping

  • @informer9261
    @informer9261 Рік тому +1

    Bro dsa video podunga bro, tamil la.

  • @leavers8865
    @leavers8865 Рік тому +3

    bro neenga use panrathu ena IDE

    • @codeio
      @codeio  Рік тому +3

      IntelliJ by JetBrains bro

  • @simassaboordeen3768
    @simassaboordeen3768 11 місяців тому

    compiler name plssss

  • @user-jr3ff3zj4m
    @user-jr3ff3zj4m Рік тому

    🦋🦋🦋🦋🦋🦋🦋🦋🦋🦋🦋🦋✨

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

    Bro java intelij enaikku laptop support aachala solution sollugga

  • @vinothe9675
    @vinothe9675 Рік тому +3

    Python language code
    a= 0.3
    b= 0.1+0.2
    if a== b:
    print("a and b is equal")
    else:
    print ("a and b are not equal")
    Answer :: a and b are not equal
    Let's be explained this one bro

    • @vgodwin877
      @vgodwin877 9 місяців тому +2

      The code assigns a variable a with the value 0.3, and another variable b with the sum of 0.1 and 0.2. Then it compares a and b using the == operator, which checks if they are exactly equal. If they are, it prints “a and b is equal”, otherwise it prints “a and b are not equal”.
      You might expect that a and b would be equal, since mathematically 0.3 is the same as 0.1 + 0.2. However, due to the limitations of floating-point precision, there might be a slight difference in their values when stored in memory. This is because most decimal fractions cannot be represented exactly as binary fractions, which is how computers store numbers. For example, the decimal fraction 0.1 has the binary fraction 0.0001100110011001100110011001100110011001100110011..., which is infinitely repeating. Therefore, the computer has to truncate or round this fraction to fit in a fixed number of bits, which introduces some error.