Java Bangla Tutorials 101 : Introducing method inside a class

preview_player
Показать описание
➡️ In this video, I will discuss adding methods inside a class.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) Add methods inside a class
⌨️ (08:04) Outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS Office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

Hi, I study CS at Queen Mary University of London, your teaching style is better than my lecturer well done mate.

nowmanislam
Автор

I have watched many bangla videos on JAVA . I am sure this channel is the best for beginners in JAVA, Instructors teaching capability is very good

Aminulislam-jfct
Автор

You have made our lives easier. thank you.

arafatrahman
Автор

Very appreciated, everyone category of students can easily learn from your channel. You are a nice instructor. Also your tutorial most synchronous and explicit explanation. May Allah bless you.

muhammadminhazuddin
Автор

vaiya onk onk thanks 🥺🥺🥺atto sundor bojhan❤️❤️

shirinshila
Автор

sir apnar bujhanor ability khub sohoj...darun

rabibinahmed
Автор

Thank you, sir. Thank you very much that's explaining is easy.👌👌👍👍

mdrakibul-gifn
Автор

Sir, method and class niye arektu detail video chai. For example

Question: Write a java program to find maximum and minimum of three numbers with following classes and methods.


Class1

- Method to input numbers

-Method to find maximum 

-Method to find minimum

  Class2

- main method

akib
Автор

ধন্যবাদ দিয়ে ছোট করবনা ভাই
অসাধারন টিউটোরিয়াল

md.hasibulislam
Автор

অনেক অনেক ধন্যবাদ আপনাকে । আপনার ভিডিও আমাকে অনেক সাহায্য করেছে ।
Can i do same thing with array?

nehamoni
Автор

extremely awesome lecture.keep it up brother.

sourovrahman
Автор

displayInformation();
এইডা কি কেমেল কেস নাকি প্যাসকেল কেস?

riverpoolcns
Автор

package oop;


public class Student {
String name;
int id;
double cgpa;

void display(){
System.out.println("Name = "+name);
System.out.println("Id = "+id);
System.out.println("CGPA = "+cgpa);



}
}


package oop;


public class Test {
public static void main(String[] args) {
Student s1 = new Student();
Student s2 = new Student();

s1.name = "Aditi";
s1.id = 331530;
s1.cgpa = 3.68;
s1.display();
System.out.println();
s2.name = "Adi";
s2.id = 331531;
s2.cgpa = 3.38;
s2.display();
}
}

tomabanik
Автор

package objectorientedprogramming;

public class Teacher {

String name, gender;
int phone;

void displayinfo(){
System.out.println("Name: "+name);
System.out.println("Gender: "+gender);
System.out.println("Phone: "+phone);
System.out.print("\n");
}


}


package objectorientedprogramming;

public class Test {

public static void main(String[] args){

Teacher teacher1 = new Teacher();

teacher1.name = "Anisul Islam";
teacher1.gender = "male";
teacher1.phone = 223344;
teacher1.displayinfo();


Teacher teacher2 = new Teacher();

teacher2.name = "Alamgir Hossain";
teacher2.gender = "male";
teacher2.phone = 556677;
teacher2.displayinfo();

}

}

srishteebhattacharjee
Автор

এইতা java তে পারতাছি না ভাই---Find out the sum of the following series:
S=1!+2!+3!+….+n!
Class design
Member data
int sum, n
Methods
void input()
Int factorial(int x)
Void sum()
Void main()

rajadasgupta