Common Java Examples Interview Questions - Part 1 || Looks Easy but Needs Practice

preview_player
Показать описание
In this video, I have discussed about different basic examples of Java programming which are being asked in Interviews.
It looks easy, but you have to practice to solve them quickly.

1 Java Program to Print an Integer (Entered by the User)
2 Java Program to Add Two Integers
3 Java Program to Multiply two Floating Point Numbers
4 Java Program to Find ASCII Value of a character
5 Java Program to Compute Quotient and Remainder
6 Java Program to Swap Two Numbers
7 Java Program to Check Whether a Number is Even or Odd
8 Java Program to Check Whether an Alphabet is Vowel or Consonant
9 Java Program to Find the Largest Among Three Numbers

10 Java Program to Check Leap Year 

~~~~Subscribe to this channel, and press bell icon to get some interesting videos on Selenium and Automation:

Follow me on my Facebook Page:

Let's join our Automation community for some amazing knowledge sharing and group discussion on Telegram:

Paid courses (Recorded) videos:
Рекомендации по теме
Комментарии
Автор

Hi Naveen, You will always be one of the best teacher! The passion you have for technologies and what you teach is contagious! We always look forward to your videos - A big "Thank you!" . One request I had - Can you make a series/videos where you can tell us that what should an Automation Tester prepare and what all points we should follow so that we can also work in companies like Amazon, Oracle, Adobe, Walmart etc. Thanks in advance.

sparshpandey
Автор

Hi naveen I was working as manual tester I started watching your classes started practicing simultaneously really I have seen many changes in me with in very less days heart full thanks for your support

anilrajmanne
Автор

Swapping numbers program might be asked without using any 3rd variable so below code works just by doing addition and subtraction

int a = 10;
int b = 20;
a = a + b; // 10+20 = 30 now a =30
b = a - b; // 30 - 20 = 10 now b = 10
a = a - b; // 30 - 10 = 20 now a = 20

AaryanRajesh
Автор

1 Java Program to Print an Integer (Entered by the User)
03:17

2 Java Program to Add Two Integers
05:00
3 Java Program to Multiply two Floating Point Numbers
06:21

4 Java Program to Find ASCII Value of a character
07:45

5 Java Program to Compute Quotient and Remainder
10:28 (it's remainder but in video it's reminder :P)
6 Java Program to Swap Two Numbers
12:30
7 Java Program to Check Whether a Number is Even or Odd
17:30
8 Java Program to Check Whether an Alphabet is Vowel or Consonant
20:00
9 Java Program to Find the Largest Among Three Numbers
23:50

10 Java Program to Check Leap Year
30:17

ParthKandpal
Автор

Thanks Naveen.Extremely interesting and easy to understand..

medugaonkar
Автор

This is fun, but most of the questions are common too... Any ways, practice never harms :-D Thanks!!!

krishanuchakraborty
Автор

Your explanation is mind-blowing. One request - can you do videos for leetcode questions too?

ramyashrijawaharlal
Автор

Waiting next video, Thank you for this video helps a lot!

hioz
Автор

Simply amazing Naveen! This series really helps in brushing up my core Java coding skills.

anshumansehgal
Автор

Very good session you so much....eagerly waiting for next video

shravan
Автор

Thank you sir.. Waiting for next video

chaithrachaithradr
Автор

Please create a series basically string class functions and program as hot interview questions for selenium tester

shrutitiwari
Автор

Hi Naveen...enjoyed the session...weekend Skill refreshment...and again its only becoz of you

santhoshveluri
Автор

Thank you sir !!!! Finally catch new video.

Doodlerrrr
Автор

Hi Naveen, the logic used for leap year will not work for years 1400, 1800
public class LeapYear {

public static void main(String[] args) {
int year=1400;
if((year%4==0) && ((year%400==0 || year%100!=0))) {
System.out.println(year+" is a leap year");
}else {
System.out.println(year+" is not a leap year");
}
}
}

sachinbchinnu
Автор

Thanks Naveen. Leap year explanation is nice.

akshayrohankar
Автор

thanks so much sir. please post more videos on these kind of things

santoshkpl
Автор

Superb useful video. its very helpful for refreshing the Java skill.. looking f/w for the continuous video.Thank you.

sumabyreddy
Автор

@Naveen Can we have the link for exl file with all questions set

USP
Автор

Hello sir, its an amazing teaching.. and can you share those 86question link over here in comment section .... Thank you

gowthamkumarsn