Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Intelliswift - An LTTS Company Team. If you also belong to the team, you can get access from here

Intelliswift - An LTTS Company Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Intelliswift - An LTTS Company Interview Questions and Answers

Updated 16 Jun 2025
Popular Designations

25 Interview questions

A Senior Android Developer was asked 1w ago
Q. In Compose UI, how do you prevent recomposition?
Ans. 

In Compose UI, recomposition can be minimized using various techniques to optimize performance and maintain UI state.

  • Use `remember` to store state across recompositions: `val count = remember { mutableStateOf(0) }`.

  • Leverage `derivedStateOf` to create derived states that only recompute when their dependencies change.

  • Utilize `key` in lists to help Compose identify items and avoid unnecessary recompositions: `LazyCol...

View all Senior Android Developer interview questions
A Software Engineer was asked 6mo ago
Q. What is polymorphism?
Ans. 

Polymorphism allows objects to be treated as instances of their parent class, enabling method overriding and overloading.

  • Polymorphism is a core concept in Object-Oriented Programming (OOP).

  • It allows methods to do different things based on the object it is acting upon.

  • Example: A function 'draw()' can be used for both 'Circle' and 'Square' classes, each implementing their own version.

  • There are two types: Compile-tim...

View all Software Engineer interview questions
A Senior Software Engineer was asked
Q. How do you select event rows from a table using an SQL query?
Ans. 

To select event rows from a table using SQL query, use the SELECT statement with appropriate conditions.

  • Use the SELECT statement to specify the columns you want to retrieve from the table.

  • Use the FROM clause to specify the table from which you want to retrieve the rows.

  • Use the WHERE clause to specify the conditions that the rows must meet to be selected.

  • Example: SELECT * FROM events WHERE event_type = 'concert';

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is SOLID, and can you explain it in detail with examples?
Ans. 

SOLID is a set of principles for designing software that is easy to maintain, understand, and extend.

  • S - Single Responsibility Principle: A class should have only one reason to change.

  • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

  • L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.

  • I - Interface Segregation Principle: Clients...

View all Senior Software Engineer interview questions
A Database Admin was asked
Q. How can database performance be improved?
Ans. 

To improve db performance, optimize queries, use indexes, and regularly maintain the database.

  • Optimize queries by avoiding unnecessary joins and subqueries

  • Use indexes to speed up data retrieval

  • Regularly maintain the database by cleaning up unused data and optimizing table structures

  • Consider partitioning large tables to improve query performance

  • Use caching to reduce the number of database queries

  • Upgrade hardware or...

View all Database Admin interview questions
A Database Admin was asked
Q. How do you resolve a high CPU usage issue?
Ans. 

High CPU issue can be resolved by identifying the root cause and optimizing the system accordingly.

  • Identify the process or application causing high CPU usage

  • Check for any background processes or services consuming CPU resources

  • Optimize the system by upgrading hardware, tweaking system settings, or optimizing code

  • Consider load balancing or scaling out if the issue persists

  • Monitor system performance regularly to pre...

View all Database Admin interview questions
A Database Admin was asked
Q. What are the different compaction strategies?
Ans. 

Compaction strategies are used to optimize database performance by reducing disk space usage.

  • Leveled compaction

  • Size-tiered compaction

  • Time-window compaction

  • Date-tiered compaction

  • Tiered compaction

View all Database Admin interview questions
Are these interview questions helpful?
A Database Admin was asked
Q. How do read and write operations occur in a database?
Ans. 

Reads and writes happen through input/output operations between the database and the application.

  • Data is read from the database and transferred to the application for processing.

  • Data is written to the database from the application after processing.

  • Reads and writes are performed through SQL statements or APIs.

  • The database management system manages the read and write operations.

  • Concurrency control mechanisms ensure ...

View all Database Admin interview questions
A Database Admin was asked
Q. What is a Bloom Filter?
Ans. 

Bloom Filter is a probabilistic data structure used to test whether an element is a member of a set.

  • Bloom Filter uses a bit array and multiple hash functions to store and check for the presence of elements in a set.

  • It can return false positives but never false negatives.

  • It is commonly used in caching, spell checking, and network routers.

  • Example: A Bloom Filter can be used to check if a URL has already been visited...

View all Database Admin interview questions
A Database Admin was asked
Q. How do you set up a new Cassandra Datacenter?
Ans. 

To setup a new Cassandra Datacenter, follow these steps:

  • Choose a location for the new datacenter

  • Install Cassandra on the new nodes

  • Configure the new nodes to join the existing cluster

  • Update the replication factor for the new datacenter

  • Test the new datacenter for performance and reliability

View all Database Admin interview questions

Intelliswift - An LTTS Company Interview Experiences

27 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. In Compose UI how do you prevent recomposition?
  • Ans. 

    In Compose UI, recomposition can be minimized using various techniques to optimize performance and maintain UI state.

    • Use `remember` to store state across recompositions: `val count = remember { mutableStateOf(0) }`.

    • Leverage `derivedStateOf` to create derived states that only recompute when their dependencies change.

    • Utilize `key` in lists to help Compose identify items and avoid unnecessary recompositions: `LazyColumn {...

  • Answered by AI
  • Q2. Basic algorithm of splittion words and reverse of a sentence
  • Ans. 

    This algorithm splits a sentence into words and reverses the order of those words.

    • 1. Split the sentence into words using a space as a delimiter. Example: 'Hello World' -> ['Hello', 'World']

    • 2. Reverse the array of words. Example: ['Hello', 'World'] -> ['World', 'Hello']

    • 3. Join the reversed array back into a string with spaces. Example: ['World', 'Hello'] -> 'World Hello'

    • 4. Handle punctuation and special charact...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a less-than-ideal experience during the interview process with this company. The interviews were rescheduled multiple times, and despite clearing the rounds and being well-qualified, there was no proper communication from the HR team regarding the outcome. It was disappointing to be left without any closure after investing significant time and effort
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Nov 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. What is polymorphism
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Had an assessment with MCQs. Only 7 questions and 20 mins given to complete,

Round 2 - Technical 

(1 Question)

  • Q1. Basic javascript questions
Round 3 - Technical 

(1 Question)

  • Q1. Understanding of the tech stack and concepts

Software Associate Interview Questions & Answers

user image Harsh Borwal

posted on 11 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. .net related questions to WPC SESSIONS WCF card payment management scenario with proc sql entity framework

MIS Executive Interview Questions & Answers

user image Anonymous

posted on 13 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Can you tell me about yourself?
  • Q2. What motivates you to want to work for this company?
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I applied via Approached by Company

Round 1 - One-on-one 

(1 Question)

  • Q1. Basics of c#,oops Init keyword Dependency injection for multiple classes with same interface
Round 2 - Technical 

(1 Question)

  • Q1. Sql related questions likr cursor,views. .net wcf vs web api Rest vs restful
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to select event rows from the table using sql query?
  • Ans. 

    To select event rows from a table using SQL query, use the SELECT statement with appropriate conditions.

    • Use the SELECT statement to specify the columns you want to retrieve from the table.

    • Use the FROM clause to specify the table from which you want to retrieve the rows.

    • Use the WHERE clause to specify the conditions that the rows must meet to be selected.

    • Example: SELECT * FROM events WHERE event_type = 'concert';

  • Answered by AI
  • Q2. What is the SOLID and explain in detail with examples?
  • Ans. 

    SOLID is a set of principles for designing software that is easy to maintain, understand, and extend.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes must be substitutable for their base types.

    • I - Interface Segregation Principle: Clients shou...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2023. There were 6 interview rounds.

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 - Coding Test 

Python,web development,html,css,js, django

Round 3 - Aptitude Test 

Oriented programming

Round 4 - HR 

(1 Question)

  • Q1. Python web development
Round 5 - Assignment 

Python, web development, html, css, js

Round 6 - Technical 

(1 Question)

  • Q1. Python, web development html css js
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jan 2023. There were 3 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. SQL coding questions
  • Q2. Looker, GCP based questions
Round 3 - Technical 

(1 Question)

  • Q1. It was a techno-managerial round, where questions were mostly behavioural and some technical questions on GCP, Bigquery.

Interview Preparation Tips

Topics to prepare for Intelliswift - An LTTS Company Senior Software Associate interview:
  • GCP
  • BigQuery
  • Looker
  • Tableau
  • SQL
Interview preparation tips for other job seekers - Deep knowledge on Looker, BigQuery, GCP tech stack and SQL.

Interview Questions & Answers

user image Anonymous

posted on 23 Jul 2023

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

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

2 DSA Questions and 40 MCQ including Front end and Backend Technologies

Round 3 - Technical 

(1 Question)

  • Q1. Basic Java related questions and Oops Concept
Round 4 - Technical 

(1 Question)

  • Q1. Core Java related questions

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Intelliswift - An LTTS Company?
Ask anonymously on communities.

Intelliswift - An LTTS Company Interview FAQs

How many rounds are there in Intelliswift - An LTTS Company interview?
Intelliswift - An LTTS Company interview process usually has 2-3 rounds. The most common rounds in the Intelliswift - An LTTS Company interview process are Technical, Resume Shortlist and HR.
How to prepare for Intelliswift - An LTTS Company 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 Intelliswift - An LTTS Company. The most common topics and skills that interviewers at Intelliswift - An LTTS Company expect are Java, SQL, Javascript, Spring Boot and Python.
What are the top questions asked in Intelliswift - An LTTS Company interview?

Some of the top questions asked at the Intelliswift - An LTTS Company interview -

  1. What are the things you should consider in test pla...read more
  2. What does Quality Assurance mean in Software testi...read more
  3. What is the difference between test scenario and test ca...read more
What are the most common questions asked in Intelliswift - An LTTS Company HR round?

The most common HR questions asked in Intelliswift - An LTTS Company interview are -

  1. Why are you looking for a chan...read more
  2. Why should we hire y...read more
How long is the Intelliswift - An LTTS Company interview process?

The duration of Intelliswift - An LTTS Company interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 22 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 83%
4-6 weeks 8%
More than 8 weeks 8%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 287 Interviews
Altimetrik Interview Questions
3.7
 • 239 Interviews
Xoriant Interview Questions
4.1
 • 210 Interviews
INDIUM Interview Questions
4.1
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
Globant Interview Questions
3.7
 • 181 Interviews
Iris Software Interview Questions
4.0
 • 177 Interviews
ThoughtWorks Interview Questions
3.9
 • 156 Interviews
View all

Intelliswift - An LTTS Company Reviews and Ratings

based on 333 reviews

3.3/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.2

Salary

2.8

Job security

3.2

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 333 Reviews and Ratings
Technical Recruiter
168 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Senior Software Engineer
140 salaries
unlock blur

₹6.8 L/yr - ₹27.3 L/yr

Software Engineer
74 salaries
unlock blur

₹5 L/yr - ₹16.1 L/yr

Senior Software Associate
74 salaries
unlock blur

₹7.3 L/yr - ₹28.2 L/yr

Technical Lead
57 salaries
unlock blur

₹15.2 L/yr - ₹36 L/yr

Explore more salaries
Compare Intelliswift - An LTTS Company with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview