Upload Button Icon Add office photos

Filter interviews by

Slk Software Services Associate Engineer Interview Questions and Answers

Updated 21 Dec 2024

Slk Software Services Associate Engineer Interview Experiences

2 interviews found

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

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

Round 1 - Coding Test 

It covers all the fundamental questions from various subjects such as Operating Systems, Database Management Systems, and Data Structures and Algorithms, along with concepts from programming languages and aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. What is the process to determine if a number is a palindrome?
  • Ans. 

    A palindrome number is the same when read forwards and backwards.

    • Convert the number to a string.

    • Reverse the string.

    • Compare the original string with the reversed string to check if they are equal.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What questions were you asked regarding your family background?
  • Ans. 

    I was not asked any questions regarding my family background.

    • No questions were asked about my family background

    • The interview focused on my qualifications and experience

  • Answered by AI
  • Q2. What situational-based questions were asked during the interview?

Interview Preparation Tips

Interview preparation tips for other job seekers - Simply put forth your best effort, as the hiring process is quite approachable.

I was interviewed before Jan 2021.

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 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - They asked about me and I gave my answer

Associate Engineer Interview Questions Asked at Other Companies

asked in Nagarro
Q1. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more
asked in Nagarro
Q2. Trailing Zeros in Factorial Problem Find the number of trailing z ... read more
asked in Nagarro
Q3. Convert First Letter to Upper Case Given a string STR, transform ... read more
asked in Tata Steel
Q4. What are the test done during maintenance of a power transformer?
asked in Tata Steel
Q5. how to control the speed of an EOT crane without VFD?

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Linear search how to find algorithm
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basics analytical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Core java and basics sql
  • Q2. Html,CSS, basics questions
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Salary discussions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2023. There were 4 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 - Coding Test 

Basic coding in Java. MySql, HTML.

Round 3 - Coding Test 

Adavance coding in Java programming.

Round 4 - HR 

(1 Question)

  • Q1. About salary. Location.

I applied via Campus Placement and was interviewed in Sep 2022. There were 7 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 

6 sections with section timings
Aptitude 10 questions
Reasoning 10 questions
Coding 1(30min)
Data structure 10
Pseudo Code 10
About Company 5

Round 3 - Group Discussion 

Topic 1-drone
Topic - self driving cars

Round 4 - Technical 

(3 Questions)

  • Q1. Program to count spaces in string Program to print only digits in string
  • Ans. 

    Program to count spaces and print digits in string

    • For counting spaces, loop through the string and check for ' ' character

    • For printing digits, loop through the string and check for '0' to '9' characters

    • Use isdigit() function in Python to check for digits

    • Use a counter variable to keep track of spaces

    • Use a separate string variable to store digits and print it at the end

  • Answered by AI
  • Q2. Why string is immutable
  • Ans. 

    String is immutable because it cannot be changed once created.

    • Immutable objects are safer to use in multi-threaded environments

    • String pool in Java is possible because of immutability

    • StringBuffer and StringBuilder are mutable alternatives to String

  • Answered by AI
  • Q3. About Constructor Dictionary Access modifiers in python
Round 5 - Technical 

(1 Question)

  • Q1. Which is difficult program that you wrote in python Which is difficult program wrote in c Dictionary use with code implications
  • Ans. 

    Difficult program in Python: A web scraper to extract data from dynamic websites. Difficult program in C: A program to implement a custom data structure.

    • Python program required knowledge of web scraping libraries like BeautifulSoup and Selenium

    • C program required understanding of memory management and pointers

    • Python program had to handle dynamic website elements and login authentication

    • C program had to implement a custo...

  • Answered by AI
Round 6 - HR 

(1 Question)

  • Q1. Self intro About Company Hobbies Related to resume
Round 7 - HR 

(1 Question)

  • Q1. Self intro Intrested field

Interview Preparation Tips

Topics to prepare for TEKsystems Associate Engineer interview:
  • Dbms
  • Python
  • Java
  • OOPS
  • Programming
Interview preparation tips for other job seekers - Be confident and try to solve programing part well

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Arrays sort using largest element

Round 2 - HR 

(1 Question)

  • Q1. Tell about yourself
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is a stack and implement it
  • Ans. 

    A stack is a linear data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added to the top of the stack and removed from the top as well.

    • Common operations include push (add element to top) and pop (remove element from top).

    • Stacks can be implemented using arrays or linked lists.

    • Example: undo/redo functionality in a text editor.

    • Example: function call stack in programming languages.

  • Answered by AI
  • Q2. What is hashing and does it have key?
  • Ans. 

    Hashing is a process of converting data into a fixed-size output. It has a key that is used to access the data.

    • Hashing is used to store and retrieve data quickly.

    • It uses a hash function to generate a unique key for each input data.

    • The key is used to access the data in constant time.

    • Hashing is used in password storage, data indexing, and cryptography.

    • Examples of hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be cool and present yourself peacefully. they might ask u more on coding if u are weak you need to divert towards your strong topic

Skills evaluated in this interview

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

I applied via campus placement at Koneru Lakshmaiah College of Engineering (KLCE), Arni and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

All the aptitude topics were asked

Round 2 - One-on-one 

(1 Question)

  • Q1. Asked about java questions and about my projects in resume
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 Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Its mixture of aptitude and coding

Round 3 - Technical 

(1 Question)

  • Q1. Its one on one with the technical project team where they intetview on your mentioned skillset- a deep dive for sure
Round 4 - HR 

(1 Question)

  • Q1. Generic HR round

Interview Preparation Tips

Topics to prepare for Apexon Associate Engineer interview:
  • C
  • C#.Net
  • SQL Coding

Slk Software Services Interview FAQs

How many rounds are there in Slk Software Services Associate Engineer interview?
Slk Software Services interview process usually has 2-3 rounds. The most common rounds in the Slk Software Services interview process are HR, Resume Shortlist and Coding Test.
How to prepare for Slk Software Services Associate Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Slk Software Services. The most common topics and skills that interviewers at Slk Software Services expect are Quality Testing, Software Services, Test Case Execution, Test Scenarios and Analytical skills.

Tell us how to improve this page.

Slk Software Services Associate Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Slk Software Services Associate Engineer Salary
based on 95 salaries
₹3 L/yr - ₹6.5 L/yr
16% less than the average Associate Engineer Salary in India
View more details

Slk Software Services Associate Engineer Reviews and Ratings

based on 8 reviews

3.9/5

Rating in categories

2.5

Skill development

4.4

Work-life balance

1.7

Salary

4.3

Job security

4.8

Company culture

2.2

Promotions

4.3

Work satisfaction

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

₹2.8 L/yr - ₹10.1 L/yr

Senior Software Engineer
722 salaries
unlock blur

₹5.7 L/yr - ₹21 L/yr

Test Engineer
359 salaries
unlock blur

₹2 L/yr - ₹9.5 L/yr

Softwaretest Engineer
305 salaries
unlock blur

₹2.8 L/yr - ₹9.1 L/yr

Team Lead
268 salaries
unlock blur

₹8.3 L/yr - ₹31 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