Upload Button Icon Add office photos

Filter interviews by

IDS Technologies Interview Questions and Answers

Updated 16 Nov 2022

IDS Technologies Interview Experiences

Popular Designations

2 interviews found

I applied via Naukri.com and was interviewed in Oct 2022. 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 - HR 

(1 Question)

  • Q1. Normal question like job experience working process... And. Some information about family background..
Round 3 - Technical 

(1 Question)

  • Q1. Normal question form. Electrical background and questions from my experience on field and my previous job profile based..

Interview Preparation Tips

Interview preparation tips for other job seekers - Only previous job background and experience relevant questions and then salary package negotiations

Design Engineer Interview Questions & Answers

user image VIKASH BHARDWAJ

posted on 4 Mar 2022

Round 1 - Technical 

(2 Questions)

  • Q1. Qualification family past experience
  • Q2. Cad knoweldge excel knowldge

Interview Preparation Tips

Interview preparation tips for other job seekers - Very friendly work evriement. Al the best

Design Engineer Interview Questions asked at other Companies

Q1. Stress Strain curve, What will happen if you use petrol in diesel engine and Diesel in petrol engone.
View answer (5)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

1. Prime Factors Operations

You are given an integer n. In one operation, you can do the following

• Pick a number P such that P is prime and n is divisble by P. Assign P

Find the maximum number of operations you can perform.

Function description

Complete the primeGame function in the editor below. It has the following param

Name

Type

Description

INTEGER

The given integer n.

n

Return

The function must return an INTEGER denoting the maximum operations you can perform.

Constraints

• 1 ≤ n ≤ 10^9

Input format for debugging

• The first line contains an integer, n, denoting the initial value of n. desc

Round 2 - Technical 

(5 Questions)

  • Q1. What is Object-Oriented Programming (OOP) in Java, and can you explain concepts such as encapsulation and polymorphism with examples?
  • Ans. 

    OOP in Java is a programming paradigm that uses objects to design applications. Encapsulation is the bundling of data and methods, while polymorphism allows objects to be treated as instances of their parent class.

    • OOP in Java focuses on creating objects that interact with each other to design applications

    • Encapsulation in Java involves bundling data (variables) and methods (functions) within a class to restrict access f...

  • Answered by AI
  • Q2. What are wrapper classes in Java, and what is their purpose?
  • Ans. 

    Wrapper classes in Java are classes that allow primitive data types to be used as objects.

    • Wrapper classes provide a way to convert primitive data types into objects.

    • They are used when an object is required, such as in collections like ArrayList.

    • Examples include Integer for int, Double for double, Boolean for boolean, etc.

  • Answered by AI
  • Q3. Given an array, how can it be rotated to the left?
  • Ans. 

    To rotate an array to the left, shift all elements to the left by one position and move the first element to the end.

    • Create a temporary variable to store the first element of the array.

    • Shift all elements to the left by one position.

    • Assign the temporary variable value to the last element of the array.

  • Answered by AI
  • Q4. Can you explain the projects you have completed and provide details about your internships?
  • Ans. 

    I have completed projects in renewable energy and automation systems. I have also interned at a manufacturing company and a research institute.

    • Completed a project on designing a solar-powered irrigation system for a rural community

    • Completed a project on developing an automated warehouse management system using RFID technology

    • Interned at a manufacturing company where I worked on optimizing production processes

    • Interned a...

  • Answered by AI
  • Q5. What is the difference between an ArrayList and an array in Java?
  • Ans. 

    ArrayList is a dynamic array in Java that can grow or shrink in size, while an array has a fixed size.

    • ArrayList can dynamically resize itself, while array has a fixed size.

    • ArrayList is a class in Java, while array is a basic data structure.

    • ArrayList provides methods to add, remove, and access elements easily, while array requires manual manipulation.

    • Example: ArrayList<String> list = new ArrayList<>(); Strin...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude test

Round 2 - One-on-one 

(4 Questions)

  • Q1. Why do you choose our concern?
  • Q2. Can you explain your previous work experience step on step?
  • Q3. The role you choose is irrelevant to previous one what makes believe you that you can survive
  • Q4. We have 6 months of probation period for all the payroll staffs,post the probation only you will be a confirmed payroll employee, is that ok for you?
Round 3 - HR 

(2 Questions)

  • Q1. About previous role and duties
  • Q2. Why do you left the organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect delay in onboarding process
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Nov 2024.

Round 1 - Case Study 

Here’s a simple framework to approach a case study effectively:


---

Case Study Framework

1. Understand the Problem

Read the case thoroughly and identify the key issue.

Ask clarifying questions if needed (if in a live setting).

Summarize the problem in your own words.



2. Analyze the Situation

SWOT Analysis (Strengths, Weaknesses, Opportunities, Threats)

Identify relevant stakeholders.

Gather data or key insights from the case text.



3. Identify Alternatives

Brainstorm possible solutions to the problem.

Consider multiple approaches (e.g., short-term vs. long-term solutions).



4. Evaluate the Alternatives

Weigh the pros and cons of each solution.

Assess feasibility, costs,

Round 2 - Technical 

(2 Questions)

  • Q1. What are the common performance issues that can occur in a system?
  • Ans. 

    Common performance issues in a system include slow response times, high resource usage, bottlenecks, and crashes.

    • Slow response times can be caused by inefficient code, network latency, or overloaded servers.

    • High resource usage can lead to system slowdowns and crashes, often caused by memory leaks or inefficient algorithms.

    • Bottlenecks occur when a component of the system becomes a limiting factor, such as a database ser...

  • Answered by AI
  • Q2. What is your experience with software bug fixing?
  • Ans. 

    I have experience in identifying and resolving software bugs through thorough testing and collaboration with developers.

    • Identifying bugs by reproducing issues reported by users

    • Collaborating with developers to understand root cause of bugs

    • Testing bug fixes to ensure they are effective

    • Utilizing bug tracking tools like Jira or Bugzilla

    • Experience with regression testing to prevent reoccurrence of bugs

  • Answered by AI
Round 3 - Coding Test 

Shortcut Tips for Coding Tests: 1. Master the Basics: Familiarize yourself with arrays, strings, loops, and conditional statements. 2. Learn Patterns: Concentrate on sliding window, two-pointer techniques, recursion, and divide-and-conquer methods. 3. Use Standard Algorithms: Study breadth-first search (BFS), depth-first search (DFS), sorting algorithms, and dynamic programming principles. 4. Understand Data Structures: Practice with stacks, queues, linked lists, and trees. 5. Practice Edge Cases: Consider scenarios involving empty inputs, duplicates, and large datasets. 6. Write Pseudocode: Outline your plan before starting to code. 7. Optimize Early: Always strive for efficiency in your solutions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Quick Tips for Job Seekers:

1. Know Your Strengths: Identify skills and tailor your resume.


2. Network: Leverage LinkedIn, industry events, and connections.


3. Customize Applications: Align resumes and cover letters to job descriptions.


4. Prepare for Interviews: Research companies and practice answers.


5. Upskill: Learn in-demand tools, certifications, and soft skills.


6. Stay Organized: Track applications and follow-ups.


7. Be Positive: Handle rejections as learning opportunities.


8. Leverage Social Media: Optimize LinkedIn and maintain professionalism online.


9. Consider All Opportunities: Explore freelance, contract, or adjacent roles.


10. Follow Up: Send thank-you notes and stay connected with recruiters.



Stay consistent and persistent—your opportunity is ahead!
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Company Website

Round 1 - Technical 

(5 Questions)

  • Q1. Cloud migration steps and challenges.
  • Ans. 

    Cloud migration involves planning, executing, and optimizing the process of moving data, applications, and workloads to a cloud environment.

    • Assess current infrastructure and applications to determine what can be migrated to the cloud

    • Choose the right cloud service provider based on requirements and budget

    • Develop a migration plan including timelines, resources, and potential risks

    • Execute the migration in phases to minimi...

  • Answered by AI
  • Q2. Technology stack of product
  • Ans. 

    The technology stack of the product includes Java, Spring Boot, Angular, and MySQL.

    • Java

    • Spring Boot

    • Angular

    • MySQL

  • Answered by AI
  • Q3. Which DB were used in your system?
  • Ans. 

    We used MySQL and MongoDB databases in our system.

    • MySQL was used for structured data storage

    • MongoDB was used for unstructured data storage

  • Answered by AI
  • Q4. How did your execute data pipelines?
  • Ans. 

    I executed data pipelines by designing the workflow, implementing data transformations, scheduling jobs, and monitoring performance.

    • Designed the workflow for data pipelines to ensure efficient data processing

    • Implemented data transformations using tools like Apache Spark or Python libraries

    • Scheduled jobs to run at specific intervals for automated data processing

    • Monitored performance of data pipelines to identify bottlen

  • Answered by AI
  • Q5. What is team velocity?
  • Ans. 

    Team velocity is a measure of the amount of work a team can complete in a sprint.

    • Team velocity is calculated by summing up the story points completed in a sprint.

    • It helps the team understand their capacity and plan future sprints accordingly.

    • Velocity is not a measure of productivity but rather a guide for planning and forecasting.

    • For example, if a team completes 30 story points in a sprint, their velocity is 30.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer maintained a casual demeanor, conducting the interview from their desk while occasionally waving at or smiling at colleagues in the vicinity.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Company know about you and your work experience and your knowledge
  • Q2. Aptitude test check your IQ
Round 2 - HR 

(1 Question)

  • Q1. After clear test hr discussion salary and hr policies
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(6 Questions)

  • Q1. Tell me about youtself?
  • Q2. What do you know about TDS?
  • Q3. Situation AP based journal entries
  • Q4. What is GST on reverse charge?
  • Q5. What are the documents required to initiate a foreign remittance?
  • Q6. More situational based AP journal entries.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time where you have to raise against management
  • Q2. Tell me about a time where you have to go through a change in company
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about a time where you were not able to meet upto mark
  • Q2. Tell me about a time where you have to say against your manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and expect the u expected. They are friendly anyway
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Business Administration and a passion for leadership and strategic planning.

    • Graduated with a degree in Business Administration

    • Passionate about leadership and strategic planning

    • Completed internships in marketing and finance

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. Why did you choose this job
  • Ans. 

    I chose this job because of the opportunity for growth and development in a dynamic industry.

    • Opportunity for growth and development

    • Interest in the industry

    • Alignment with my skills and career goals

  • Answered by AI
  • Q3. Why you want to do sales
  • Ans. 

    I am passionate about building relationships, meeting new people, and achieving targets through effective communication and negotiation.

    • Enjoy interacting with people and building relationships

    • Excited about meeting new challenges and targets

    • Skilled in communication and negotiation

    • Thrives in a fast-paced and competitive environment

  • Answered by AI
  • Q4. Explain the different types of insurance
  • Ans. 

    Types of insurance include life, health, auto, home, and disability insurance.

    • Life insurance: Provides financial protection to beneficiaries in case of the insured's death.

    • Health insurance: Covers medical expenses and treatments for illnesses and injuries.

    • Auto insurance: Protects against financial loss in case of accidents or theft involving a vehicle.

    • Home insurance: Covers damage to a home and its contents due to even...

  • Answered by AI
  • Q5. Who is the CEO of hdfc life
  • Ans. 

    The CEO of HDFC Life is Vibha Padalkar.

    • Vibha Padalkar is the current CEO of HDFC Life.

    • She has been associated with HDFC Life since 2008 and has held various leadership positions before becoming the CEO.

    • Under her leadership, HDFC Life has seen significant growth and expansion in the insurance sector.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak with confidence
Know your job role
Know the basics about insurance

IDS Technologies Interview FAQs

How many rounds are there in IDS Technologies interview?
IDS Technologies interview process usually has 2 rounds. The most common rounds in the IDS Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for IDS Technologies 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 IDS Technologies. The most common topics and skills that interviewers at IDS Technologies expect are Javascript, Service Engineering, JQuery, SQL and MS SQL.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
HDFC Life Interview Questions
4.0
 • 591 Interviews
Cyient Interview Questions
3.7
 • 281 Interviews
View all

IDS Technologies Reviews and Ratings

based on 14 reviews

2.3/5

Rating in categories

1.9

Skill development

2.1

Work-life balance

2.0

Salary

2.5

Job security

1.7

Company culture

1.5

Promotions

2.2

Work satisfaction

Explore 14 Reviews and Ratings
Software Developer
5 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Software Engineer
4 salaries
unlock blur

₹7.4 L/yr - ₹8.1 L/yr

Test Engineer
4 salaries
unlock blur

₹2.1 L/yr - ₹3.2 L/yr

Sales Support Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹4.6 L/yr

IT Developer
4 salaries
unlock blur

₹2.8 L/yr - ₹3.3 L/yr

Explore more salaries
Compare IDS Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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