TCS Java Interview Questions | Core Java Interview Questions

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

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

  • @RDTechnicalLearning
    @RDTechnicalLearning  23 дня назад +1

    #javainterviewquestions

  • @dipaksahane2120
    @dipaksahane2120 23 дня назад

    Nice mock.. Thank rakesh sir👍

  • @Tradex_ak
    @Tradex_ak 23 дня назад

    Ask some tough questions sir plz

  • @fariahasan3965
    @fariahasan3965 23 дня назад

    I think the example for constructor overloading is not correct because she provided return type "void" for constructor.

  • @SyedDanishHusain-n7j
    @SyedDanishHusain-n7j 19 дней назад

    Easy Solution ----- Beginner Friendly--- Rverse of Word in String...
    package Programs;
    import java.util.ArrayList;
    import java.util.Iterator;
    public class Reverseword {
    public static void main(String[] args) {


    String str="I love java programming";
    int end=str.length();

    ArrayList ar=new ArrayList();

    for(int i=str.length()-1;i>=0;i--)
    {
    if(str.charAt(i)==' ')
    {

    ar.add(str.substring(i+1,end));
    end=i;
    }
    else if(i==0)
    {
    ar.add(str.substring(i,end));
    }

    }

    Iterator it=ar.iterator();

    while(it.hasNext())
    {
    System.out.print(it.next()+" ");
    }
    }
    }