Top 10 String Interview Questions On Logical Programs - Explained Coding

preview_player
Показать описание
#stringsinjava #javainterviewquestions #logicalprogramming

In this video i have explained, below String logical programs with coding
1) Reverse a String using Java
2) Remove Duplicate Characters in String
3) Reverse Each word in String
4) Find Each Characater occurrence in String
5) Find First Non Repeated Character in String
6) Replace Character with its occurrence in string
7) Find Longest Substring without repeated characters
8) Sort String characters using Java
9) Remove Whitespaces in String
10) Remove Special Characters in String

💡 Subscribe to our channel and hit the bell 🔔🔔🔔 icon to get video updates.

💡 Visit Our Website

💡 About Ashok IT :

Ashok IT is the No.1 quality training institute in India for the candidates who want to build their future in Information Technology. We are into online training, class room training, corporate training and one to one training with more passion and dedication. Ashok IT aims in providing best quality realtime oriented trainings on C, C++, Java, Spring , Spring REST, Spring Cloud, Microservices, Python, DJango, .Net, Angular, React JS, Salesforce, , Testing, Android, Docker, Kubernates, Manual Testing, Selenium and Digital Marketing.

-----------------------------------------------------------------------------------

💡 Our Online Training Features

🎈 Training with Real-time Working Professionals
🎈 Industry Matching use cases
🎈 Live Coding
🎈 Real-time Environment
🎈 Class Notes
🎈 Doubts Clarifications in Each Session

-----------------------------------------------------------------------------------

💡 Contact details:

#JavaProgramming
#StringProgramming
#JavaString
#JavaTutorial
#ProgrammingTutorial
#CodeinJava
#JavaCode
#LearnJava
#JavaDeveloper
#JavaStringManipulation
#JavaTips
#JavaBasics
Рекомендации по теме
Комментарии
Автор

Hello Sir, I saw Logic of Occurance of String Everywhere but as you explain and did this prog is very simple and clear to Understand Thank you so much...!!!

Ved-Gaikwad
Автор

Excellently illustrated all the String problems in Java.

TheBikerDude
Автор

Great video, and it's very useful for interview preparation. Thank you!

softwaretestinglearninghub
Автор

If u know Ashok sir then u know everything in Java 👍

codingbabuu
Автор

Very useful video...Can you post a video on popular Array questions with solutions

praveendayanidhi
Автор

Hi sir .Im preparing for 3yrs interview for java dev ..can i please know whether interviewer gonna ask for palindrome fibannaci kind of program for experienced people also ..can you plz give liat of coding questions...hope you please reply on this it really helps me!

ssuvidha
Автор

challenge 5 - Using C# but Logic Is Preety Same
using System;
using System.Text;
using System.Collections.Generic;

public class H
{
public static void Main(string[] args)
{
string str = "OPENTEXT";
int count = 0;
char[] str1 = str.ToCharArray();
for (int i = 0; i < str1.Length; i++)
{
if (str1[i] == 'T' || str1[i]=='t')
{
count++;

str1[i] = (char)(count + 48);
}
}
str = new string(str1);
Console.WriteLine(str);
}
}

KunalPawar-gqyv
Автор

Sir can u please upload Java 8 feature coding questions and answers for experience

deardeva
Автор

sir please make a video on particular project related interview question as a experience of 2+ years .

neerunirmal
Автор

Sir we have any approach to solve of interviewer

tejpartapsingh
Автор

Sir if we j=1 then we don't require to the condition I!=j

satlarajsekhar
Автор

For 7) Find Longest Sub string without repeated characters (Refer Sliding window algorithm / Techinique as well)..

Mk-brbj