Top 10 String Interview Questions On Logical Programs - Explained Coding

Sdílet
Vložit
  • čas přidán 8. 02. 2023
  • #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
    ✍️✍️ Register Here For Online Training : bit.ly/3Crpgbr
    ✍️ ✍️ Join Here For Technical Discussions : bit.ly/3iP2KyA
    📞 WhatsApp Us : wa.me/+919985396677
    💡 Subscribe to our channel and hit the bell 🔔🔔🔔 icon to get video updates.
    💡 Visit Our Website
    For Online Training: ashokitech.com/
    ☎ WhatsApp Number: wa.me/+919985396677
    💡 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:
    ☎ WhatsApp Number: wa.me/+919985396677
    ► Website : ashokitech.com/
    ► Join with us in Telegram : bit.ly/3iP2KyA
    ► Like us in Facebook : bit.ly/38riDKn
    ► Follow us in Instagram : bit.ly/3jzEKl8
    ► Follow us in Twitter : bit.ly/3N85pkw
    #JavaProgramming
    #StringProgramming
    #JavaString
    #JavaTutorial
    #ProgrammingTutorial
    #CodeinJava
    #JavaCode
    #LearnJava
    #JavaDeveloper
    #JavaStringManipulation
    #JavaTips
    #JavaBasics

Komentáře • 33

  • @ashokit
    @ashokit  Před rokem +1

    💡 Welcome to Ashok IT..!! 💡
    👉 Register Here For Online Training : bit.ly/3Crpgbr
    🔥 Download Android App : bit.ly/3Z2vXcO
    🔥 Download IOS App (MyInstitute) : apple.co/3IcEao3
    👉 ORG Code For IOS : CNFXJ
    🌐 Visit Our Website : ashokitech.com/

  • @softwaretestinglearninghub

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

  • @arunkumar-ks1fl
    @arunkumar-ks1fl Před rokem +1

    mind blowing bgm in the starting......

  • @codingbabu4u
    @codingbabu4u Před rokem +9

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

  • @ssuvidha
    @ssuvidha Před 10 měsíci +2

    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!

    • @mesmerizeart663
      @mesmerizeart663 Před 4 měsíci

      Hi, can you help me for preparing fake experience certificate of form16

  • @satlarajsekhar340
    @satlarajsekhar340 Před rokem

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

    • @VivekKumar-xy4nb
      @VivekKumar-xy4nb Před 4 měsíci

      j can’t be i+1 because for every character need to compare from 0 to length-1

  • @praveendayanidhi5647
    @praveendayanidhi5647 Před 8 měsíci

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

    • @ashokit
      @ashokit  Před 8 měsíci

      Yes, soon

    • @ProgrammingKT
      @ProgrammingKT Před 7 měsíci

      You can find onemore good resource, crack coding round array problems.
      czcams.com/video/o_hNrb2XlGw/video.html

    • @user-tm2ir9fq6h
      @user-tm2ir9fq6h Před 5 měsíci

      ​@@ashokitHave You Posted The Array's Logical Questions And Solution?

    • @GUNDLAPALLICHAITANYA
      @GUNDLAPALLICHAITANYA Před 16 dny

      ​@@ashokitpost questions on arrays also sir

  • @gowrisankar2177
    @gowrisankar2177 Před rokem +1

    How to improve coding skills @ashok

    • @ashokit
      @ashokit  Před rokem

      Please Contact Our Admin Team:wa.me/+919985396677
      👉 Subscribe To Our CZcams Channel: bit.ly/41IHJdj

  • @neerunirmal1179
    @neerunirmal1179 Před rokem +2

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

    • @AnkitTiwari-qt5ds
      @AnkitTiwari-qt5ds Před rokem +1

      In project related Questions.. you will get asked about the project that you have worked on.. and it's gonna be different for the different projects.. so just Try to go through your projects and learn how the exceptions are handled and what are the Features that this project provides and what exactly this project is all about.. just go through it once and you're good to clear any interview related to your Project.. All the Best 👍

    • @ashokit
      @ashokit  Před rokem

      Please Contact Our Admin Team:wa.me/+919985396677
      👉 Subscribe To Our CZcams Channel: bit.ly/41IHJdj

  • @deardeva9268
    @deardeva9268 Před měsícem

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

  • @KunalPawar-gq5yv
    @KunalPawar-gq5yv Před 3 měsíci

    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);
    }
    }

  • @Abhishek-df5tf
    @Abhishek-df5tf Před 6 měsíci

    Sir ur paid course fees and link

  • @Abhishek-df5tf
    @Abhishek-df5tf Před rokem

    Sir can give string program pdf

    • @ashokit
      @ashokit  Před rokem

      Please Contact: +919985396677
      👉 Subscribe To Our CZcams Channel: bit.ly/41IHJdj

  • @Mk-br5bj
    @Mk-br5bj Před 7 měsíci +1

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

    • @kukuusah
      @kukuusah Před 6 měsíci

      Can you write pgm for this

    • @kvs2326
      @kvs2326 Před 26 dny

      ​@@kukuusahhi

  • @tejpartapsingh9909
    @tejpartapsingh9909 Před 11 dny

    Sir we have any approach to solve of interviewer

    • @ashokit
      @ashokit  Před 4 dny

      please contact our admin team : +91 9985396677