EPAM | 1st Technical Round | Coding Qestions

Company- EPAM
Postition- Java Developer
Date- 30/08/2023

3 round of technical interview.

1st Round

  1. Write a program to count a frequency of word from a given string s=" This is is name name" and store them in map using java 8 stream api.
  2. WAP to find given two string is isomophic or not.
  3. WAP to find the first index of given target from a given sorted non-decreasing array.
    Ex: array a = [-2, -1, 3, 3, ,3, 10,10,10,23], target = 10
    output = 5;
    You have to do this in log(n) time complexity.
Comments (3)