Important Java Interview Programs | 01 | How to reverse a String | Test Automation | Tamil

preview_player
Показать описание
Selenium Testing is one of the easiest way of getting into IT. However, the increasing demand has made lot of people to look into Selenium automation for better career options. Having said that, there are huge amount of crowd and companies have started asking lot of java programs for filtering the candidates.

In this video series, we are going to learn how to crack the java coding interview by practicing the most frequently asked java programs in the interview.

In this video, we will learn how to reverse a String. This video is for absolute beginner who is willing to get into IT and for working professionals who want to crack the coding round in the interview.

Support by donating:
---------------------------------
Name: Arulprasath

You can watch my other tutorials
------------------------------------------------------

#JavaPrograms #selenium #LAO #Tamil
Рекомендации по теме
Комментарии
Автор

Collection reverse method used in for String First Time Seen in Tutorial... Thanks...

dineshbabu
Автор

On using string we can also iterate as normal and add the reverse at the end


for(int i=0; i<arr.length ; i++){
reverse = arr[i] + reverse;
}
System.out.println(reverse);

nathamuni
Автор

In the 3rd technique, you could have used System.out.print() instead of System.out.println()to get the output in the same line

chandramohanm
Автор

Great job god bless you and your family.... you are teaching very easy to understand.... i know how u had spent lots of time to makinf an video.... all coz for the person as me and likes...

aarujeeva
Автор

Hi Arul, I did the same for loop to reverse the srting, But interview asked me that instead of using inbuilt fucntion length(). find the size and mention. can you please suggest any way to do that?

sivas
Автор

This is my first interview java code question they asked

priyadharshiniprabhakaran
Автор

import java.util.Scanner;
class ReverseSrting{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
System.out.println("Enter the input string:");
int n= sc.nextInt();
int a, i=0, j=0;
a=n
while(a>0){
i=a%10;
j=(j*10)+i;
a=a/10;
}
System.out.println("the reversered number is:"+j)
}
}

Mr.Mommad
Автор

Bro why previous function is not working in LItr even after removing collection.reverse(list);

nathamuni
Автор

String Builder use pani konjam code solla mudiyuma... and what is the difference between string Builder and string Buffer

revathimahalakshmi
Автор

super bro ...Very useful concepts ..keep it up good work

kannankasthuri
Автор

why are we using instead of this reversed = characterArray[i];

kirleshkumar
Автор

Sir.. can you give example for missing number in sorted array and non sorted array???

kitlermech
Автор

Can u please post videos on javascript, beginners's stage.

anithadevi
Автор

Super bro pls upload UI path videos bro

naveenm
Автор

Can u please share the java topics link....

natarajanu
Автор

Hello Arul sir, requesting you to do SQL Videos pls ..

abarnajayachandran
Автор

Hi anna, one interview i got question from CTS...5km taxi cost=100;
After that it increases by +12 rupee per each km you pls make a program for that

priyadharshiniprabhakaran
Автор

Sir one request it's possible to create one telegram group so we can discuss all doubts there so everyone come to know the solutions ?

Fuelsports
Автор

bro, job placement ku degree compulsory thevaiya ??? College pogum podhe job ku poga mudiyuma ???? idha pathi oru general video ready pannunga

HarishKumar-pinb
Автор

Nice bro...! What is hashnext() and next()

Ashok_triplefive