Java Bangla Tutorials 10 : Variable and data type in java (Part-2)

preview_player
Показать описание
➡️ In this video, I will show how to use variables and data types in a java program.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:20) demo of variables and data types
⌨️ (08:55) 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
Рекомендации по теме
Комментарии
Автор

ভাইয়া আমি একটি স্বনামধন্য মাল্টিন্যাশনাল ট্রেনিং ইনস্টিটিউট থেকে অ্যাপ ডেভেলপমেন্ট কোর্স করছি। কিন্তু আপনার মত সাবলীলভাবে সবকিছু উপস্থাপন করা মেনটর আমি এখনও পর্যন্ত পাইনি। কারণ আমি আরও অনেক কোর্স অনেক ভাল ভাল ট্রেনিং ইনস্টিটিউট থেকে করেছি। ধন্যবাদ দিয়ে আপনাকে ছোট করতে চায় না। আশা করি আপনার এই সহযোগীতা অব্যাহত থাকবে।

eminembabu
Автор

প্রথম ‍দিনেই আট টি পার্ট শেষ করলাম।পেইড ভিডিও দেখে আমি কিছুই বুঝতে পারছিলাম না সব মাথার উপর দিয়ে যাইতে ছিলো।কিন্তু বিশ্বাস করেন স্যার আপনার এই ভিডিও গুলো দেখার পর সব আস্তে আস্তে ক্লিয়ার হলাম এত সুন্দর করে শেখানো বোঝানো আর মনে হয় কেউ পারবে না আজ থেকে আমি আপনার ফেন আপনি আমার গুরু(শিক্ষক) যাই হোক না চাওয় সত্বেও কমেন্ট করে ফেললাম কারন ভালোবেসে ফেললাম স্যার আপনাকে লাভ ইউ স্যার, , ,

saifahmed
Автор

Thanks a lot my brother. Apnar Class gulo fully Paid batch deserve kore. onk onk thanks vaia Class gula free te deyar jonno.

MdRaduansarkar-ys
Автор

Excellent video tutorial for Java beginners...❤

jannatulnayeem
Автор

you are the best vaiya!
onek sundhor bujhate paren thank you vaiya

RA_JU
Автор

Thanks a lot sir 👌👍But thanks isn't enough

mdrakibul-gifn
Автор

For those who are using eclipse instead of netbeans, use ctrl+alt+ down arrow to copy the line

zahidulhassan
Автор

public class Variable {
public static void main(String[] args)
{
boolean b=true;
char c='a';
float d=3.7f;
System.out.println("b = "+b);
System.out.println("c = "+c);
System.out.println("f = "+d);
}
}

tuhinarmoy
Автор

Thank you so much.Via you'll make video for githuf...like how to save program in the githuf and how to communicate each other...like everything...

mdjaberhossain
Автор

/*
* assign variable value
* then print them with their value
*/

public class DataType { //call this class
public static void main(String[] args) {

//take some variable
//dynamic initialization

boolean b = true;
char c ='A';
short s =32677;
int i = 97;
float f =5.098f; //for float, all time use f with assign values.
double d = 10.2;

//print those
System.out.println("b =" +b);
System.out.println("c = "+c);
System.out.println("s ="+ s);
System.out.println("i = "+i);
System.out.println("f = "+f);
System.out.println("d = "+d);

}

}

AvinandanRoy
Автор

package basicjava;


public class BioData {

public static void main(String[] args){

int x =55;
System.out.print("shakil\n");

System.out.printf("%d\n", x);
}

}

mhs_
Автор

Vai por por 2ta project nile second project tai error show kore. Lekha dekhai "containes file with error"

EaminHaider
Автор

package firstjava;


public class DataTypes_Variable {
public static void main(String[]args){
boolean B= false;
char C= 's';
byte D= -123;
short E=-400;
int I= 5000;
long
float F=10.0f;
double d=10.5;
System.out.println("B= "+B);
System.out.println("C= "+C);
System.out.println("D= "+D);
System.out.println("E= "+E);
System.out.println("I= "+I);
System.out.println("L= "+L);
System.out.println("F= "+F);
System.out.println("D= "+D);
}

}

mrmurad
Автор

dada, Netbeans 8 to paitechina? Ki korum?

arunavabasak
Автор

public class Variabletype {


public static void main(String args[]) {
boolean b=true;
char c='b';
int i=890;
short s=4994;
long l=680;
byte t=7;
float f=10.78f;
double d=79.9998;
System.out.println("b = "+b);
System.out.println("c = "+c);
System.out.println("i = "+i);
System.out.println("s = "+s);
System.out.println("l = "+l);
System.out.println("t = "+t);
System.out.println("f = "+f);
System.out.print("d = "+d);

}
}

mst.ummayfatemamim
Автор

package javabeginner;

public class Datatype {
public static void main(String[] args) {
boolean b = false;
int i = 30;
short s = 123;
long l = 12456;
float f = 12.74f;
double d = 45.87;

System.out.println("Boolean b : "+b);
System.out.println("Integer i : "+i);
System.out.println("Short s : "+s);
System.out.println("Long l : "+l);
System.out.println("Float f : "+f);
System.out.println("Double d : "+d);



}

}

tomabanik
Автор

স্যার, jsp এর ওপর কিচ্ছু ভিডিও বানান :-)

asaduzzaman
Автор

ভাইয়া,
সব গুলা এক লাইনে ইনপুট দেওয়া যাবে কিনা।দেওয়া গেলে কিভাবে?

Infinitysquad
Автор

please make tutorial on data structure .

setukanti
Автор

package Assignment_2;
/*
* Assignment-2 (Variable and Data type)
* step 1: create a class called Product
* step 2: create a main method
* step 3: declare variables: id, title, price, description, category
* step 4: assign the following data in main method
101, iphone15, 1895 euros, perfect product with best image quality, phone,
* step 5: print the data
*/

public class Product {

public static void main(String[] args) {
int id;
String title;
String Price;
String Description;
String Catagory;

id = 101;
title = "iPhone 15";
Price= "1895 euros";
Description = "perfect product with best image quality";
Catagory = "phone";

System.out.println("id = "+id);
System.out.println("title = "+title);
System.out.println("Price = "+Price);
= "+Description);
= "+Description);



}

}

RaiyanFardin-km