Upload Button Icon Add office photos

Slk Software Services

Compare button icon Compare button icon Compare

Filter interviews by

Slk Software Services Softwaretest Engineer Interview Questions and Answers

Updated 21 Feb 2025

Slk Software Services Softwaretest Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Explain docker file
  • Ans. 

    Docker file is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Docker file is used to build Docker images by specifying the base image, dependencies, and commands to run.

    • Each instruction in a Docker file creates a layer in the image.

    • Common instructions include FROM, RUN, COPY, CMD, and ENTRYPOINT.

    • Example: FROM ubuntu:latest, RUN apt-get update, COPY . /app, CMD

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain workflow of Kubernetes
  • Ans. 

    Kubernetes is a container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes uses a master-slave architecture with a control plane (master) and worker nodes (slaves).

    • The control plane manages the cluster and schedules workloads, while worker nodes run containers and communicate with the control plane.

    • Kubernetes uses Pods as the smallest deployable unit...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Explain ci/cd pipelines
  • Ans. 

    CI/CD pipelines automate the process of testing and deploying code changes.

    • CI/CD stands for Continuous Integration/Continuous Deployment.

    • Automates the process of building, testing, and deploying code changes.

    • Helps in detecting bugs early in the development process.

    • Ensures that code changes are consistently tested and deployed.

    • Examples: Jenkins, GitLab CI/CD, CircleCI.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Why this company
  • Ans. 

    I am impressed by the company's innovative products and strong reputation in the industry.

    • Impressed by innovative products

    • Strong reputation in the industry

    • Opportunity for professional growth and development

  • Answered by AI

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About the design pattern
  • Q2. Coding questions in stream api

Interview Preparation Tips

Interview preparation tips for other job seekers - Not selected for round 2
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java code , oops, sql , spring bbot

Round 2 - Technical 

(2 Questions)

  • Q1. Maximum area of Stack
  • Ans. 

    The maximum area of a stack is determined by the size of the stack and the items it can hold.

    • The maximum area of a stack is calculated by multiplying the height of the stack by the width of the stack.

    • For example, if a stack has a height of 10 units and a width of 5 units, the maximum area would be 50 square units.

  • Answered by AI
  • Q2. Length of longest substring
  • Ans. 

    Find the length of the longest substring without repeating characters.

    • Iterate through the string and keep track of the characters seen so far in a set.

    • Use two pointers to mark the start and end of the current substring.

    • Update the maximum length of the substring as you iterate through the string.

  • Answered by AI

Skills evaluated in this interview

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

String Reverse words, Repeated character count etc

Round 2 - One-on-one 

(2 Questions)

  • Q1. This round was with manager, project details discussion and past experiences
  • Q2. Behaviral questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Coding Test 

2 leetcode questions medium level

Round 2 - Technical 

(1 Question)

  • Q1. Real life scenario based java questions based on resume and indepth resume discussion
Round 3 - One-on-one 

(1 Question)

  • Q1. Some behavioural and one coding question
Round 4 - One-on-one 

(1 Question)

  • Q1. Same as above indepth discussion
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
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Apr 2024.

Round 1 - Coding Test 

Python code for array

Round 2 - Aptitude Test 

Computerized test based on simpel math questions

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

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is load testing
  • Q2. What is regression testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview process

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
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Mostly general c sql java basic mcq question. And 2 codes

Round 3 - Group Discussion 

On going global/National topics

Round 4 - Technical 

(4 Questions)

  • Q1. What are different loops in coding
  • Ans. 

    Loops are used to execute a set of instructions repeatedly until a certain condition is met.

    • For loop: executes a block of code a fixed number of times

    • While loop: executes a block of code as long as the specified condition is true

    • Do-while loop: executes a block of code at least once, then repeats the loop as long as the specified condition is true

    • Foreach loop: used to iterate over elements of an array or collection

    • Neste

  • Answered by AI
  • Q2. Questions on distinct keyword
  • Q3. General sql queries
  • Q4. Questions on project
Round 5 - HR 

(2 Questions)

  • Q1. Basic Introduction
  • Q2. Future perspective

Interview Preparation Tips

Topics to prepare for Tietoevry Softwaretest Engineer interview:
  • SQL
  • C
  • Project Management

Slk Software Services Interview FAQs

How many rounds are there in Slk Software Services Softwaretest Engineer interview?
Slk Software Services interview process usually has 4 rounds. The most common rounds in the Slk Software Services interview process are Technical and HR.
What are the top questions asked in Slk Software Services Softwaretest Engineer interview?

Some of the top questions asked at the Slk Software Services Softwaretest Engineer interview -

  1. Explain workflow of Kuberne...read more
  2. Explain ci/cd pipeli...read more
  3. Explain docker f...read more

Tell us how to improve this page.

Slk Software Services Softwaretest Engineer Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Slk Software Services Softwaretest Engineer Salary
based on 310 salaries
₹3 L/yr - ₹8.8 L/yr
At par with the average Softwaretest Engineer Salary in India
View more details

Slk Software Services Softwaretest Engineer Reviews and Ratings

based on 36 reviews

3.9/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.4

Salary

3.7

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 36 Reviews and Ratings
Software Engineer
1k salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Software Engineer
719 salaries
unlock blur

₹5.6 L/yr - ₹21 L/yr

Test Engineer
361 salaries
unlock blur

₹2 L/yr - ₹9.5 L/yr

Softwaretest Engineer
310 salaries
unlock blur

₹3 L/yr - ₹8.8 L/yr

Associate Software Engineer
274 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Explore more salaries
Compare Slk Software Services with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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