↳
Please give more input about this interview
↳
Please if you see the comment please give more input about this interview
↳
In these sorts of interviews you really need to drill down and understand what the interviewer is looking for. A good way to simulate a real interview experience is to do a mock with one of the EPAM Systems Senior Test Automation Engineer experts on Prepfully, rated super strongly on TrustPilot... prepfully.com/practice-interviews Less
↳
public class Func35 { public static void main(String[] args) { for(int i=1;i<=100;i++){ if(i%3==0 && i%5==0){ System.out.print("Z"+","); } else if(i%3==0){ System.out.print("X"+","); } else if(i%5==0){ System.out.print("Y"+","); } else { System.out.print(i+","); } } } } Less
↳
for(int i=1;i<=100;i++) { boolean flag=false; if(i%15==0) { System.out.println(i+"Z"); flag=true; } else if(i%3==0 && flag==false) { System.out.println(i+"X"); flag=true; } else if(i%5==0&&flag==false) { System.out.println(i+" Y"); } } Less
↳
Used a bool variable added the two division in the loop (with the loop variables) (i%5 and i%3). The first division only sets the bool variable and the second division writes the output according Less
↳
Did u get schedule date?
↳
I have completed L1 & l2 rounds of interview. I am waiting for another Managerial round as per the consultancy guy said. Less
↳
Did u give interview by video call? They took me interview via Microsoft teams . That was first round its almost 3 days i didnt get any response. My interview was regarding python developer 2+ experience. They took around 45min interview . I dono whom to contact for further updates Less
↳
Output should be 0. Since compareTo() implements Comparable interface.
↳
Have you received offer.?
↳
Have you received offer?
↳
Carrefour native app and website
↳
Can you please tell me by when they gave you the feedback for your tech task ?
↳
I could answer most of the questions as the environment was really friendly and I was given the opportunity to express and showcase what I have done in my previous organisations. They rolled out a very generous offer to me within 2 days of the interview and I happily accepted the same. Less
↳
Use data provider annotations and declare username and password as the variables. and from excel extract the username name and password in form for list or array. and using data provider you can test it for both valid and non valid username and password. NOTE:- @dataprovider annotation follow one to one mapping do care of that while providing values in your test case. Less