COBOL - Wednesday talk on a new Topic - USAGE Clause - DISPLAY, COMP, COMP-1 , COMP-2 , COMP-3

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024

Комментарии • 23

  • @shayubsk5653
    @shayubsk5653 2 года назад +1

    Excellent

  • @keerthigayam2076
    @keerthigayam2076 2 года назад +1

    Thank you very much, your videos are very useful

  • @sindhuvelusamy9116
    @sindhuvelusamy9116 3 года назад +1

    Thanks for such a clear explanation.. I am sharing the videos with my friends too..

  • @santhoshKUMAR-fd2es
    @santhoshKUMAR-fd2es 3 года назад +2

    Thank you so much Kumar for such a good explanation. It is very useful for interview purpose. You explained with mainframe practical in very less time. Keep doing more videos and big thanks from our end.

  • @Anitha_V
    @Anitha_V 3 года назад +2

    Excellent sir🙏🏻.....thank you so much....waiting for this for a long time.....

  • @doronfishman1824
    @doronfishman1824 Год назад

    THANK YOU MR. KUMAR FRO TLV

  • @saikatghosh3793
    @saikatghosh3793 3 года назад +1

    Thanks for such a wonderful explanation Kumar.. Stay safe and keep teaching us

  • @sathyamoorthynagarajan964
    @sathyamoorthynagarajan964 3 года назад +1

    That was a brilliant explanation.

  • @ashishl3623
    @ashishl3623 2 года назад +1

    Please make complete mainframe in-depth course with simple to complex maninframe prgms.

  • @saikrishna6344
    @saikrishna6344 3 года назад +1

    Thank you so much for upload the vdeo☺️☺️

  • @manishagarwal8946
    @manishagarwal8946 3 года назад +2

    Hi Kumar, Nice video this helps a lot for all of us to refresh our knowledge….I request you to please start some series on refreshment so that we can keep it up 👍

  • @mahaalakshmipalaniappan3144
    @mahaalakshmipalaniappan3144 2 года назад

    Thanks for the Detailed explanation. I have one doubt... PIC S9(13)V(2) USAGE COMP-3... For this it will take 8 bytes and each digit will take 1/2 a byte? Please correct me if I am wrong.
    And also this shows 13 digits.. In that 13 it will take 2 for decimal point? Or 13 digits for the whole number and extra 2 digits for the decimal point( total-15)?

  • @aswinibalakrishnan613
    @aswinibalakrishnan613 3 года назад +2

    Hi Kumar. I have a question, if comp saves space and is more fast and efficient then why normal numeric like 9(5) etc is used in cobol code. Why we are not using comp for all numeric values?

  • @AmexL
    @AmexL Год назад

    Thanks man!

  • @aravind_ontagodi
    @aravind_ontagodi 3 года назад +2

    Sounds like this is Hitesh here from lco

  • @Prabha123-jj9wh
    @Prabha123-jj9wh 8 месяцев назад

    PIC S9(9) USAGE COMP-5 ,can you tell me how to declare in Easytrive

  • @VivekYadav-pf9vc
    @VivekYadav-pf9vc 3 года назад +1

    Great concept explained...Honest work man... Keep it up👍🏻

  • @monisharaji5686
    @monisharaji5686 3 года назад +1

    Hi kumar sir,Sir I want to get comp-1 variable as input from user through jcl . In working storage section I given
    77 ws-num1 comp1
    77 ws- num2 comp1
    In jcl
    I pass 77.77 and 33.33 through sysin Jcl sir
    BUT am getting IGYPA3018-S as the Identifer(floating pt) was used in accept should be discarded.
    What I need to change sir?

    • @KumarITChannel
      @KumarITChannel  3 года назад

      Try with 01 Level number
      COMP1 should be COMP-1
      Ex:
      01 WS-NUM1 COMP-1.
      01 WS-NUM2 COMP-1.
      Ex:
      Number 1.234 can be represented as +0.1234 x 101.
      In the above example :+ is the sign of the number, 1 in 101 is the exponent and 1234 is the mantissa which is represented using 3 bytes.