Java Tutorial: Chapter 2 - Practice Set (Java Practice Questions)

preview_player
Показать описание
Java Complete Course: The best way we learn anything is by practice and exercise questions. Here you have the opportunity to practice the Java programming questions with solutions.

Best Hindi Videos For Learning Programming:

►C Language Complete Course In Hindi -

►JavaScript Complete Course In Hindi -

►Django Complete Course In Hindi -

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

The 2nd problem can also be solved without type casting ... as
char grade = 'A' ;
grade += 8; // incrementing char without type casting
Thank you harry bhai for all of this ♥😊

anjaneekumarsingh
Автор

question no 4

float v=40;
float u=4;
float a=6;
float s=8;
float formula= (v*v - u*u) /(2*a*s);
System.out.println(formula);


answer is =16.5
thnq for this playlist

crazyartistyou
Автор

Harry bhai earlier i only used to clear the theoretical concepts and whenever it comes to solve problems i used to run away from it because i could not find the logic behind writing the code but after watching your videos it helped me a lot and boosted my confidence thank you so very much for it these practice set questions are really helpful and amazing....
More such practice set questions will be really helpful to develop the concepts even more and boos confidence to touch complex programs

Thank You for your contribution towards students like us with average knowledge in coding yet willing to learn the language

abhirupdey
Автор

The best day in my life when I found your channel in 1st year of my engineering ❤

mayurigawande
Автор

for calculating two digits

kids use calculator
man use mobile
legend use URL

big fan harry bhai

maheshmahadar
Автор

// Question 4: Following exp in JAVA Program: V^2 - U^2 / 2as
float a = 2, s = 2, v = 8, u = 2;
float exp = (v*v - u*u) / (2*a*s);
System.out.println("\n"+exp);

PratikBanger
Автор

finally I am understanding things in JAVA.. Thank You Harry Sir..

abhilashnair
Автор

Placed in Infosys..my first training language is java ..I am from non cs background.. thanks u for explaining java in easiest way.. it's too helpful for me!

Pmu
Автор

public static void main (String [] args){
Scanner sc = new Scanner(System.in);
float v = sc.nextFloat();
float u = sc.nextFloat();
float a = sc.nextFloat();
float s = sc.nextFloat();

float ans = (v*v -u*u) / (2*a*s);
System.out.println(ans);
}

ankursingh
Автор

int v=4;
int u=9;
int a=5;
int s=2;
int sum=(v*v-u*u)/(2*a*s);
System.out.println(sum);
Sout(“brilliant harry bhai”);

himanshumohod
Автор

Harry bhai due to people like you on the internet, today nothing is impossible, you have developed my interest so much in coding, I can't express my gratitude towards you. Always learning from you. Thank you so much for everything you do for us

AshishKhetwal
Автор

float v = 10.0f, u = 5.0f, a = 3.0f, s = 2.0f;
(v * v - u * u ) / (2 * a * s)

Result :- 6.25

gtaanime
Автор

Hey Bro please make a video on how you learned all the programming languages, How was your journey, it would be very interesting....

rudrakshcodes
Автор

// Question 4

int v = 8;
int u = 2;
int a = 8;
float sum = (v*v - u*u) / (2.0f*a*5.0f);
System.out.println(sum);

Thank you Harry sir for this course😀🙏

onlygaming
Автор

Thankyou so much sir for playlist.

public static void main(String[] args) {
int u = 3;
int v = 5;
int S = 4;
int a = 6;
int k= (v*v-u*u)/(2*a*S);
System.out.println(k);

AliHassantalks
Автор

public class PracticeSet{
public static void main (String args[]){

float v = 10.0f;
float u = 5.0f;
float a = 6.0f;
float s = 8.0f;

float i = (v*v - u*u)/(2*a*s);
System.out.print(i);
}
}



Result = 0.7815




Thankyou Harry Sir❣️

sunnygupta
Автор

*Upload video frequency in java playlist humble request*
.
.
.
.
*Like if u agree*

yashgour
Автор

Amazing content sir thankyou Soo much for this seriously dol karta hai kai jav karti rhun mera second semester chal rha hai first ami c parhyai thi uni mai maind chorne ka fiasla karfi atha programming ki wjh se likin ab yaqeen hai inshallah hojayega.❤ thankyou sir from Pakistan

malihaaamir
Автор

I really don't have words to describe your hard work and dedication.
Thank you harry bhayya lots of love

maazahmad
Автор

float v=4.0f;
float u =5.0f;
float a =2.0f;
float s =3.0f;
float qwes = (v*v-u*u)/(2*a*s);
System.out.println(qwes);







thank you very much harry sir
i really love this java course.
it is very useful to us.

vinodKumar-tdmb