Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Expleo Solutions Team. If you also belong to the team, you can get access from here

Expleo Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Expleo Solutions Softwaretest Engineer Interview Questions and Answers

Updated 10 Feb 2024

Expleo Solutions Softwaretest Engineer Interview Experiences

4 interviews found

Softwaretest Engineer Interview Questions & Answers

user image Varshini Varshu

posted on 10 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude test will be conducted

Round 2 - Technical 

(2 Questions)

  • Q1. Technical hr interview will be conducted
  • Q2. Salary expectation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Software development life cycle
  • Ans. 

    Software development life cycle is a process followed by software development teams to design, develop and test high-quality software.

    • SDLC consists of several phases such as planning, analysis, design, implementation, testing, deployment, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • The goal of SDLC is to produce high-quality software that meets customer requirements and is delivered on tim...

  • Answered by AI
  • Q2. Testing types bug life cycle
  • Q3. Test metrics and test planning

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Overall preparation for Aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Clear with Basics and be confident
Round 4 - HR 

(1 Question)

  • Q1. Basic discussion on salary and joining process
Round 5 - HR 

(1 Question)

  • Q1. Basic discussion on salary and joining process

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall you will get selected according to your performanace
Round 1 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my experience, skills, and the industry standards.

    • I am looking for a salary that reflects my qualifications and contributions to the company.

    • I have researched the average salary range for Software Test Engineers in this industry.

    • I am open to negotiation and would like to discuss the complete compensation package.

    • I value fair compensation that aligns with my experience and responsi...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as a Software Test Engineer at XYZ Company.

    • Performed manual and automated testing of software applications.

    • Created test plans, test cases, and test scripts.

    • Executed test cases and reported defects.

    • Collaborated with developers and product managers to resolve issues.

    • Conducted regression testing to ensure software stability.

    • Participated in code reviews and provided feedback.

    • Used tools like Selenium, JIRA, and Jen...

  • Answered by AI
  • Q3. Tell me about yourself.
  • Ans. 

    I am a software test engineer with experience in testing various applications and ensuring their quality.

    • Experienced in manual and automated testing

    • Proficient in test planning, test case design, and defect tracking

    • Skilled in using testing tools like Selenium and JUnit

    • Strong knowledge of software development life cycle (SDLC) and testing methodologies

    • Excellent problem-solving and analytical skills

    • Effective communication

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Question related to profile and what mentioned in resume
  • Q2. Basic API , Manual in depth
Round 3 - Technical 

(1 Question)

  • Q1. Client interview If you are giving interview for automation then java coding, basic selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - What you are mentioned in resume be prepared with each an every details

Expleo Solutions interview questions for designations

 Software Engineer

 (4)

 Lead Engineer

 (2)

 QA Engineer

 (1)

 Test Engineer

 (1)

 Associate Software Engineer

 (9)

 Senior Software Engineer

 (5)

 Manual Test Engineer

 (1)

 Senior Automation Engineer

 (1)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Reverse a string with spaces present in same position Ex: i am indian o/p:n ai dnimai
  • Ans. 

    To reverse a string with spaces present in the same position, we can split the string by spaces, reverse each word, and then join them back together.

    • Split the string by spaces to get individual words

    • Reverse each word

    • Join the reversed words back together with spaces in between

  • Answered by AI
  • Q2. Difference between put and post in sql
  • Ans. 

    PUT is used to update an existing resource in SQL, while POST is used to create a new resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • POST is not idempotent, meaning multiple identical requests may have different effects.

    • PUT is used to update specific resources identified by the request URI.

    • POST is used to create new resources under the request URI.

    • PUT is ty...

  • Answered by AI
  • Q3. What is bad request in api testing
  • Ans. 

    A bad request in API testing is when the server cannot process the request due to incorrect syntax or missing parameters.

    • Bad request status code is 400

    • Common causes include missing or incorrect parameters, invalid data format, or unauthorized access

    • Examples: missing required parameters, incorrect data type in request body

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Permutations of string of length n in string of length m
  • Ans. 

    Generate all permutations of a string of length n within a string of length m.

    • Use recursion to generate all possible permutations of the string of length n.

    • Iterate through the string of length m and insert the permutations at different positions.

    • Return an array of strings containing all permutations of the string of length n within the string of length m.

  • Answered by AI
  • Q2. Count ocurrence of characters in digit
  • Ans. 

    Count occurrences of characters in a digit

    • Iterate through each digit in the input array

    • For each digit, convert it to a string and iterate through each character

    • Use a hashmap to keep track of the count of each character

  • Answered by AI
  • Q3. Find second highest salary in sql
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find the second highest salary.

    • Use ORDER BY clause to sort the salaries in descending order

    • Use LIMIT 1,1 to get the second row after skipping the first row

    • Consider handling cases where there might be ties for the highest salary

  • Answered by AI
  • Q4. Http status in API
  • Ans. 

    HTTP status codes are used to indicate the result of a HTTP request made to an API.

    • HTTP status codes range from 1xx to 5xx, with each range representing a different type of response.

    • Some common HTTP status codes include 200 (OK), 404 (Not Found), and 500 (Internal Server Error).

    • Status codes starting with 2 indicate success, 4 indicate client errors, and 5 indicate server errors.

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. Explain about your project
  • Q2. How do you run your automation Regression scripts
  • Ans. 

    I run automation Regression scripts using a test automation framework and scheduling tools.

    • I organize regression scripts into test suites based on functionality

    • I use a test automation framework like Selenium or Appium to execute the scripts

    • I schedule the regression runs using tools like Jenkins or TeamCity

    • I analyze the test results and report any failures for further investigation

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java program for prime no
  • Ans. 

    Java program to check if a number is prime or not

    • Create a function to check if a number is prime or not

    • Iterate from 2 to n/2 and check if n is divisible by any number

    • If n is divisible by any number, it is not prime

    • If n is not divisible by any number, it is prime

  • Answered by AI
  • Q2. Dynamic web table element program
  • Ans. 

    A dynamic web table element program involves identifying and interacting with elements in a table that change dynamically.

    • Identify the table element using unique identifiers like class or id

    • Use Selenium WebDriver to locate and interact with the table element

    • Handle dynamic changes in the table by using dynamic XPath or CSS selectors

    • Iterate through rows and columns to extract data or perform actions

  • Answered by AI

Skills evaluated in this interview

Softwaretest Engineer Interview Questions & Answers

Synechron user image SRIMANIKANDAN SEETHARAMAN

posted on 24 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL, RDBMS, ETL transformation related questions
Round 2 - Technical 

(1 Question)

  • Q1. Explain your typical Software Testing Life Cycle.
  • Ans. 

    Software Testing Life Cycle involves planning, designing, executing, and reporting on tests to ensure quality software.

    • 1. Planning phase involves defining test objectives, scope, and resources.

    • 2. Design phase includes creating test cases, test data, and test environment setup.

    • 3. Execution phase is where tests are run, defects are logged, and retesting is done.

    • 4. Reporting phase involves documenting test results, defect...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to change your job?

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions in Tosca
  • Q2. Detail asking about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more and strong from technical wise
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java memory model in java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was simple basic level questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic codes
Round 3 - HR 

(1 Question)

  • Q1. Normal basic hr type questions

Interview Preparation Tips

Topics to prepare for ThoughtWorks Softwaretest Engineer interview:
  • OOPS
Interview preparation tips for other job seekers - just make your basics strong

Expleo Solutions Interview FAQs

How many rounds are there in Expleo Solutions Softwaretest Engineer interview?
Expleo Solutions interview process usually has 3 rounds. The most common rounds in the Expleo Solutions interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Expleo Solutions Softwaretest Engineer interview?

Some of the top questions asked at the Expleo Solutions Softwaretest Engineer interview -

  1. Software development life cy...read more
  2. Client interview If you are giving interview for automation then java coding, b...read more
  3. Technical hr interview will be conduc...read more

Tell us how to improve this page.

Expleo Solutions Softwaretest Engineer Interview Process

based on 2 interviews

1 Interview rounds

  • Technical Round
View more
Expleo Solutions Softwaretest Engineer Salary
based on 201 salaries
₹2.4 L/yr - ₹9.5 L/yr
10% more than the average Softwaretest Engineer Salary in India
View more details

Expleo Solutions Softwaretest Engineer Reviews and Ratings

based on 13 reviews

4.1/5

Rating in categories

3.8

Skill development

4.1

Work-life balance

3.5

Salary

3.9

Job security

3.9

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 13 Reviews and Ratings
Software Engineer
469 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
346 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Softwaretest Engineer
202 salaries
unlock blur

₹2.3 L/yr - ₹9.5 L/yr

QA Associate
183 salaries
unlock blur

₹3 L/yr - ₹6.4 L/yr

Associate Software Engineering Lead
147 salaries
unlock blur

₹5.5 L/yr - ₹16 L/yr

Explore more salaries
Compare Expleo Solutions with

Synechron

3.5
Compare

Movate

3.3
Compare

Sopra Steria

3.8
Compare

SS&C TECHNOLOGIES

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview