Skip to main content

EPAM India 2019 2020 2021

 EPAM India Hiring | Junior Test Automation Engineer | Hyderabad/ Pune/ Bengaluru/ Chennai/ Gurugram (Any of the EPAM India offices)


EPAM India Hiring: EPAM schedule to hire Junior Test Automation Engineer for 2021. The location of the job is Hyderabad/ Pune/ Bengaluru/ Chennai/ Gurugram (Any of the EPAM India offices). Freshers can also apply. The detailed eligibility criteria and HCL application process are given below.

EPAM Systems, Inc. is an American company that specializes in product development, digital platform engineering, and digital and product design. One of the world’s largest manufacturers of custom software and consulting providers.

Job Position:- Junior Test Automation Engineer

Job Locations:- Hyderabad/ Pune/ Bengaluru/ Chennai/ Gurugram (Any of the EPAM India offices)

Salary Package:- 6 Lacs per annum + standard benefits

Training Location:- Hyderabad

Registration Closes On:- 27th September 2021, Monday, 11:59 PM IST.

Education Qualification:-

  • BE/B.Tech/ME/M.Tech (Any Branch), MCA and MSc. Computers Graduates, with minimum of 60% academic scores from grade X to highest graduation.
  • Eligibility: 2019, 2020 & 2021 Graduates ONLY.

Experience:- 0-12 Months with relevant training or work experience on Testing Tools using Java Selenium.

Mandatory Programming Language:- Java/Java 8+

Soft Skills:-

  • Communication and inter-personal skills
  • Problem solving & critical thinking
Hiring Process:
  • One round of online coding assessment, followed by Technical and HR interview (more details will be shared in further emails to the eligible candidates)
  • If selected & offered you will be assigned to Test Automation Practice

Online Coding Assessment Date:- Friday, 01 Oct 2021

Apply Link:👇

Job link 👈


Popular posts from this blog

Check whether a number is Seed of another number

 A number P is said to be the seed of another number Q if multiplying P with its digits equates to Q. Ex:-  123 is seed of 738 as    123 * 1 * 2 * 3 = 738  Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 public class Seed{ public static void main (String[] args){ int num1 = 123 , num2 = 738 ; num1 = Math. min (num1,num2); num2 = Math. max (num1,num2); System. out . println (checkSeed(num1, num2)); } public static boolean checkSeed ( int num1, int num2){ int seed = num1; while (num1> 0 ){ seed = seed * (num1% 10 ); num1 = num1 / 10 ; } if (seed==num2) return true ; else return false ; } } Python def checkSeed(num1,num2): seed = num1 while num1 > 0 : seed = seed * (num1 % 10 ) num1 = num1 // 10 if seed == n

Program to sort the first half of an array in ascending and second half in descending order

Ex:-  [2, 4, 3, 10, 5, 8] [2, 4, 3]  and [10, 5, 8] ====>  [2, 3, 4] ascending                                                              [10, 8, 5] descending [ 2, 3, 4, 10, 8, 5] is the required answer.  Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 public class ArraySort{ public static void main (String[] args){ int [] arr = { 2 , 4 , 3 , 10 , 5 , 8 }; //sorting first half in ascending order for ( int i= 0 ; i<(arr. length / 2 ); i++){ for ( int j=i+ 1 ; j<(arr. length / 2 ); j++){ if (arr[i]>arr[j]){ int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } } } //sorting second half in descending order for ( int i=(arr. length / 2 ); i<arr. length ; i++){ for ( int j=i+ 1 ; j<arr. length ; j++)

Write a method to move hyphens to the left and characters to the right in a string

 Ex:-     code--heist--   ==>     ----codeheist Note:-  Return null or None if str is empty. Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public static String moveHyphens (String str) { if (str. length ()== 0 ) return null ; else { String result = "" ; for ( int i= 0 ; i<str. length (); i++){ char ch = str. charAt (i); if (ch== '-' ) result = ch + result; else result += ch; } return result; } } Python def moveHyphens (str): if len(str)== 0 : return None else : result = "" for char in str: if char== '-' : result = char + result; else : result += char return result