Top 10 String Interview Questions On Logical Programs - Explained Coding

Поделиться
HTML-код
  • Опубликовано: 19 ноя 2024

Комментарии • 42

  • @ashokit
    @ashokit  Год назад +1

    🔥 Welcome to Ashok IT..!!
    👉 Register Here For Online Training : bit.ly/4dBYJbX
    👉 Follow us in Instagram : bit.ly/3jzEKl8
    👉 Follow Us in WhatsApp : bit.ly/49wCWje
    👉 Visit Our Website : ashokit.in/

  • @Ved-Gaikwad
    @Ved-Gaikwad 3 месяца назад +1

    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...!!!

    • @ashokit
      @ashokit  3 месяца назад

      Thankyou... follow us in whatsapp channel to get more updates :
      whatsapp.com/channel/0029Va9NnSdCHDyqwAoeIB1G

  • @TheBikerDude2024
    @TheBikerDude2024 3 месяца назад

    Excellently illustrated all the String problems in Java.

    • @ashokit
      @ashokit  Месяц назад

      Please contact our admin team : 9985396677

  • @softwaretestinglearninghub
    @softwaretestinglearninghub Год назад +4

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

    • @ashokit
      @ashokit  Год назад

      You're very welcome!

  • @codingbabu4u
    @codingbabu4u Год назад +9

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

    • @ashokit
      @ashokit  Год назад +1

      Thank you so much

  • @Mk-br5bj
    @Mk-br5bj 10 месяцев назад +1

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

    • @kukuusah
      @kukuusah 10 месяцев назад

      Can you write pgm for this

    • @kvs2326
      @kvs2326 4 месяца назад

      ​@@kukuusahhi

  • @KunalPawar-gq5yv
    @KunalPawar-gq5yv 7 месяцев назад

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

    • @ashokit
      @ashokit  Месяц назад

      🔥 Please follow us in WhatsApp channel : bit.ly/49wCWje

  • @praveendayanidhi5647
    @praveendayanidhi5647 Год назад

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

    • @ashokit
      @ashokit  Год назад

      Yes, soon

    • @ProgrammingKT
      @ProgrammingKT 10 месяцев назад

      You can find onemore good resource, crack coding round array problems.
      ruclips.net/video/o_hNrb2XlGw/видео.html

    • @DeepakKumarRout-h6t
      @DeepakKumarRout-h6t 9 месяцев назад

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

    • @GUNDLAPALLICHAITANYA
      @GUNDLAPALLICHAITANYA 4 месяца назад

      ​@@ashokitpost questions on arrays also sir

  • @arunkumar-ks1fl
    @arunkumar-ks1fl Год назад +1

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

    • @ashokit
      @ashokit  Год назад

      Thankyou

    • @ProgrammingKT
      @ProgrammingKT 10 месяцев назад

      ruclips.net/video/o_hNrb2XlGw/видео.html

  • @neerunirmal1179
    @neerunirmal1179 Год назад +2

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

    • @AnkitTiwari-qt5ds
      @AnkitTiwari-qt5ds Год назад +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  Год назад

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

  • @deardeva9268
    @deardeva9268 4 месяца назад

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

  • @ssuvidha
    @ssuvidha Год назад +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 8 месяцев назад

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

  • @tejpartapsingh9909
    @tejpartapsingh9909 3 месяца назад

    Sir we have any approach to solve of interviewer

    • @ashokit
      @ashokit  3 месяца назад

      please contact our admin team : +91 9985396677

  • @deepnarayandaw308
    @deepnarayandaw308 Месяц назад

    Is this type of questions coming in interviews

    • @ashokit
      @ashokit  Месяц назад +1

      Please contact our admin team : 9985396677

  • @gowrisankar2177
    @gowrisankar2177 Год назад +1

    How to improve coding skills @ashok

    • @ashokit
      @ashokit  Год назад

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

  • @satlarajsekhar340
    @satlarajsekhar340 Год назад

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

    • @VivekKumar-xy4nb
      @VivekKumar-xy4nb 7 месяцев назад

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

    • @happytripathi5415
      @happytripathi5415 2 месяца назад

      we have to use j=i+1

  • @Abhishek-df5tf
    @Abhishek-df5tf 10 месяцев назад

    Sir ur paid course fees and link

    • @ashokit
      @ashokit  3 месяца назад

      please contact our admin team : +91 9985396677

  • @Abhishek-df5tf
    @Abhishek-df5tf Год назад

    Sir can give string program pdf

    • @ashokit
      @ashokit  Год назад

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