#22 Get to know the power of functions in Java🚀 | in Tamil | Java Tutorial Series 📚 | EMC Academy

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • Unlock the potential of functions in Java with EMC - Error Makes Clever! In this tutorial, we'll guide you through the essentials of functions, empowering you to write more efficient and organised code. Join our Java Tutorial Series and level up your programming skills today! 📚💻 #JavaProgramming #FunctionsInJava #learnjavaonline
    Java in Tamil.
    Join our 700K+ Instagram community
    www.instagram....

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

  • @rishikishore4979
    @rishikishore4979 4 месяца назад +13

    package firstprogram;
    public class garden {
    int apple_count=5;
    int apple_price=20;
    void total_money() {
    System.out.print(apple_count*apple_price);

    }

    public static void main(String[]args){

    garden obj1=new garden();
    obj1.total_money();
    }


    }

  • @jessierin3731
    @jessierin3731 4 месяца назад +17

    Mysql video . Why stopped in between sir. Complete panni irukalam la sir

  • @swethamurugesan2349
    @swethamurugesan2349 4 месяца назад +6

    Bro.. Very useful.. No other channel is explaining this much clearly.. Kindly upload oops in java.. It will helps to clear my tech round.. Thanks in advance

  • @Code_With_Gowtham
    @Code_With_Gowtham 3 месяца назад +4

    public class addtion {
    int apple_price = 20;
    int apple_count = 5;
    void totalmoney(){
    int c = apple_price*apple_count;
    System.out.println(c);
    }
    public static void main(String[] args) {
    addtion summ = new addtion();
    summ.totalmoney ();
    }
    }

  • @Code_With_Gowtham
    @Code_With_Gowtham 3 месяца назад +3

    public class addtion {
    int a=10;
    int b=20;
    void sum(){
    int c = a+b;
    System.out.println(c);
    }
    public static void main(String[] args) {
    addtion summ = new addtion();
    summ.sum ();
    }
    }

  • @nallarasu5085
    @nallarasu5085 Месяц назад +1

    public class add
    {
    int apple_price = 20;
    int apple_count = 5;
    void count()
    {
    System.out.println("$"+apple_price*apple_count);
    }
    public static void main(String[] args)
    {
    add nal = new add();
    nal.count();
    }
    }

  • @AmuthaMurugesan-sx6ii
    @AmuthaMurugesan-sx6ii 4 месяца назад +2

    Very useful without any complication..pls upload oops concept ..this will helps in my technical round..thanks in advance

  • @arimaariharan8907
    @arimaariharan8907 Месяц назад +1

    public class garden{
    int apple_price = 20;
    int apple_count = 5;
    void total_money(){
    System.out.print("Total amount of apple "+apple_price*apple_count);
    }
    public static void main (String[] args)
    {
    garden obj1 = new garden();
    obj1.total_money();
    }
    }

  • @I_dont_know_this.
    @I_dont_know_this. 4 месяца назад +4

    Respect to your dedication 💪🏻 ❤

  • @themovietone7234
    @themovietone7234 4 месяца назад +2

    Bro, keep going with this series-it's super helpful!

  • @Kkirubavlogs
    @Kkirubavlogs 4 месяца назад

    Anna vera marii na bca tha but egga mam sollitharathu enaku puriyathy but neega evalo simple la alaga sollitiga romba tnks na ethumari neraya sollikuduga anna😊❤

  • @pirategaming301
    @pirategaming301 16 дней назад

    class apple
    {
    int apple_price=20;
    int apple_count=5;
    void price()
    {
    System.out.println("total_amount="+apple_price*apple_count);
    }
    public static void main(String[] args)
    {
    apple obj1=new apple();
    obj1.price();
    }
    }

  • @HariKrishnanS-dr4jb
    @HariKrishnanS-dr4jb 4 месяца назад +5

    public class Multiply {
    int apple=20;
    int count=5;

    void Total_money()
    {
    System.out.println(apple*count);
    }
    public static void main(String[] args) {

    Multiply fruits=new Multiply();
    fruits.Total_money();
    }
    }

  • @SivaRakshana-h2l
    @SivaRakshana-h2l 8 дней назад

    class garden{
    int apple_price = 20;
    int apple_count= 5;
    void total_money()
    {
    int multiply = apple_price*apple_count;
    System. out. println(multiply);
    }
    public static void main(String[] args) {
    garden obj = new garden();
    obj.total_money();
    }
    }

  • @_RMS_5411
    @_RMS_5411 4 месяца назад +2

    Bro game development pathi video poodu bro please bro❤❤

  • @jilabikutty0925
    @jilabikutty0925 12 дней назад

    public class garden{
    void total_money()
    {
    int apple_price=20;
    int apple_count=5;
    System.out.println(apple_price*apple_count);
    }
    public static void main(String[] args){
    garden gar=new garden();
    gar.total_money();
    }

    }

  • @manoji.s2814
    @manoji.s2814 4 месяца назад +1

    Machine learning full tutorial video podungaa bro 😢😢

  • @Psangamithiraa
    @Psangamithiraa 4 месяца назад +2

    please upload the videos for oops concepts within this week for in java with an example for each method having an interview soon your videos are so crystal and clear content

  • @LearnwithSSRK
    @LearnwithSSRK 4 месяца назад +1

    Conduct react worsksop bro

  • @nvsbflims4624
    @nvsbflims4624 3 месяца назад +1

    Bro is this correct bro please tell
    public class Garden {
    int apple_price = 20;
    int apple_count = 5;
    void total_money(){
    System.out.println(apple_count *apple_price);
    }

    public static void main (String[] args)
    {
    Garden obj1 = new Garden();
    obj1.total_money();
    }

  • @ummusalmah4937
    @ummusalmah4937 4 месяца назад

    very clear explanation. thx sir

  • @manoji.s2814
    @manoji.s2814 4 месяца назад +1

    MySQL join , sub sqand trigger continue pannungaa😢....

  • @prakashabi1181
    @prakashabi1181 4 месяца назад +1

    bro devops related viedo upload pannu bro

  • @user-gz2xl5qj4z
    @user-gz2xl5qj4z 13 дней назад

    public class Test19{
    int apple_price=20;
    int apple_count=5;
    public int total_money(){
    int total_money=apple_price*apple_count;
    return total_money;
    }
    public static void main(String[] args) {
    Test19 test19= new Test19();
    System.out.println(test19.total_money());
    }
    }

  • @ACUITDINESHP
    @ACUITDINESHP 23 дня назад

    Its okay but is it neccesary to create a main function?why can't we should create just another non static function and call the previous one

  • @feliix.j6640
    @feliix.j6640 4 месяца назад

    Bro React js full course podunga bro... please neenga solli kuduthatha puriyuthuu

  • @balusamyperumal7986
    @balusamyperumal7986 4 месяца назад

    Bro please put video on How to apply intership in Internshala

  • @manjulap7190
    @manjulap7190 Месяц назад

    Square bracket string pakathula podanuma illa args pakathula podanuma

  • @sivavishal750
    @sivavishal750 4 месяца назад +1

    Bro data analyst job ku scope iruka

  • @englishtub
    @englishtub 4 месяца назад

    bro pls explain the python 10 video last q:8and9 pls

  • @vinothinis307
    @vinothinis307 4 месяца назад

    Bro make java video on regular basis pls

  • @subashri3707
    @subashri3707 4 месяца назад

    Anna data science ku konjam videos podunga anna

  • @DreamyWander
    @DreamyWander 4 месяца назад

    bro pls upload video for React Native

  • @cobblerscraft14
    @cobblerscraft14 4 месяца назад

    Bro,Go language explain panni video podunga

  • @c-03-aksheya.v71
    @c-03-aksheya.v71 4 месяца назад

    Bro background image linear gradient vaichu solli thanga anna css la please

  • @swethavenkitesh8141
    @swethavenkitesh8141 4 месяца назад

    Hi bro , pls teach vue.js , Thanks

  • @hariprasath1098
    @hariprasath1098 4 месяца назад

    Bro javascript video podunga pls

  • @accidentgamers3488
    @accidentgamers3488 4 месяца назад

    Bro SQL full tutorial upload pls

  • @Nin-Uyir
    @Nin-Uyir 4 месяца назад

    Digital image processing podunga Bor

  • @AbinayaD-pe1vu
    @AbinayaD-pe1vu 4 месяца назад

    Pls teach oops concept anna

  • @SundarN-v3u
    @SundarN-v3u 19 дней назад

    class mobile{
    void iphone(){
    System.out.println("this is iphone");
    }

    void nokia(){
    System.out.println("this is nokia");
    }
    void vivo(){
    System.err.println("this is vivo");
    }
    public static void main(String[] args) {
    mobile phone=new mobile();
    phone.iphone();
    phone.vivo();
    phone.nokia();
    }
    }

  • @hafis456
    @hafis456 4 месяца назад

    Bro c++ pathi podunga

  • @nivethas359
    @nivethas359 4 месяца назад

    Pls upload next concepts in java🥲

  • @jung___kook1.8
    @jung___kook1.8 Месяц назад

    Why u using print inside x:

  • @manoji.s2814
    @manoji.s2814 4 месяца назад

    MySQL join , sub sq and trigger continue pannungaa......😢

  • @ramaprasath3958
    @ramaprasath3958 4 месяца назад

    Bro Power BI video podunga

  • @hariprasath1098
    @hariprasath1098 4 месяца назад

    Bro javascript video full ah venu, neraya channel la pathute yedhuvum puriya mattudhu pls

  • @hellouma3104
    @hellouma3104 4 месяца назад

    Bro suggest best laptop under 40,000.please

  • @hariprasath1098
    @hariprasath1098 4 месяца назад

    Bro I need javascript video in deep

  • @blackmonster3271
    @blackmonster3271 4 месяца назад

    Hi sir , data entry course padikke enne language theve

  • @vetha3yan3286
    @vetha3yan3286 4 месяца назад

    Put video for hacking course

  • @LearnwithSSRK
    @LearnwithSSRK 4 месяца назад

    React bootcamp podu bro

  • @user-monkeymeme
    @user-monkeymeme 4 месяца назад

    Hi bro..my age 28 working different feild..now can I try IT job kedaikuma bro

  • @AmuthaMurugesan-sx6ii
    @AmuthaMurugesan-sx6ii 4 месяца назад

    K

  • @Code_With_Gowtham
    @Code_With_Gowtham 3 месяца назад

    public class mobile {
    void iphone(){
    System.out.println("iphone");
    }
    void samsung(){
    System.out.println("samsung");
    }
    void realme(){
    System.out.println("realme");
    }
    void asus(){
    System.out.println("asus");
    }
    public static void main(String[] args) {
    mobile brand = new mobile();
    brand.iphone();
    brand.samsung();
    brand.realme();
    brand.asus();
    }
    }

    • @ACUITDINESHP
      @ACUITDINESHP 23 дня назад

      Its okay but is it neccesary to create a main function?why can't we should create just another non static function and call the previous one

  • @englishtub
    @englishtub 4 месяца назад

    bro u last 10 minutes confused pls explain bro

  • @naveena-mn5db
    @naveena-mn5db 3 месяца назад +1

    last question ans..
    public class garden {
    int apple_price = 20;
    int apple_count = 5;
    void total_money()
    {
    System.out.println(apple_count*apple_price);
    }
    public static void main(String[] args)
    {
    garden obj1 = new garden();
    obj1.total_money();
    }
    }

  • @jilabikutty0925
    @jilabikutty0925 12 дней назад

    public class Addition{
    void sum(){
    int a=10;
    int b=20;
    System.out.println(a+b);
    }
    public static void main(String[] args){
    Addition add=new Addition();
    add.sum();
    }
    }

  • @_RMS_5411
    @_RMS_5411 4 месяца назад +1

    Bro game development pathi video poodu bro please bro❤❤

  • @naveena-mn5db
    @naveena-mn5db 3 месяца назад

    public class garden {
    int apple_price = 20;
    int apple_count = 5;
    void total_money()
    {
    System.out.println(apple_count*apple_price);
    }
    public static void main(String[] args)
    {
    garden obj1 = new garden();
    obj1.total_money();
    }
    }

  • @raahin-ic1df
    @raahin-ic1df 29 дней назад

    class garden{
    int apple_price= 20;
    int apple_count= 5;
    void total_money()
    {
    System.out.print(apple_price*apple_count);
    }
    public static void main(String[]args)
    {
    garden obj = new garden();
    obj.total_money();
    }
    }

    • @ACUITDINESHP
      @ACUITDINESHP 23 дня назад

      Its okay but is it neccesary to create a main function?why can't we should create just another non static function and call the previous one

  • @_RMS_5411
    @_RMS_5411 4 месяца назад +1

    Bro game development pathi video poodu bro please bro❤❤

  • @_RMS_5411
    @_RMS_5411 4 месяца назад

    Bro game development pathi video poodu bro please bro❤❤

  • @_RMS_5411
    @_RMS_5411 4 месяца назад

    Bro game development pathi video poodu bro please bro❤❤