Upload Button Icon Add office photos
Engaged Employer

i

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

Techindo Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Techindo Systems Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Carbon footprint and ways to achieve

Round 2 - Coding Test 

1. which data structure is used to create an editor?

Senior Associate Interview Questions & Answers

Shorthills AI user image tajender singh chahal

posted on 28 Sep 2023

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

I applied via Referral and was interviewed before Sep 2022. 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 - One-on-one 

(2 Questions)

  • Q1. Can you describe yours experience with web research
  • Q2. Discuss your time management and prioritization?
Round 3 - One-on-one 

(1 Question)

  • Q1. Explain your commitement to ethical research practices
Round 4 - One-on-one 

(1 Question)

  • Q1. Describe your ability to colloborate with other colleauges in a research setting
  • Ans. 

    I excel in collaborating with colleagues in a research setting by actively listening, sharing ideas, and working towards common goals.

    • I actively listen to my colleagues' ideas and perspectives to ensure effective communication

    • I share my own ideas and insights while being open to feedback and constructive criticism

    • I work collaboratively towards common research goals, leveraging each team member's strengths and expertise

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Showcase your enthusiasm for the position and the understanding of its significance in the it service industry
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 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 - One-on-one 

(3 Questions)

  • Q1. Tell me something about yourself
  • Q2. What is your intrest and hobbies
  • Q3. Why should i hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - highlight your resume
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me about redux in reactJs
  • Ans. 

    Redux is a state management library for React applications.

    • Redux helps manage the state of your application in a predictable way

    • It stores the state of your application in a single immutable state tree

    • Actions are dispatched to update the state using reducers

    • Components can subscribe to the state changes using connect() function

  • Answered by AI
Round 2 - Coding Test 

Just a question need to count no. of digits of each element of the array and return them

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your Project and why you use this tech for this project.
  • Q2. Find the mid element in the link list.
  • Ans. 

    To find the mid element in a linked list, use two pointers - one moving at double the speed of the other.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The element pointed to by the slow pointer at this point is the mid element of the linked list.

  • Answered by AI

Skills evaluated in this interview

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 

I was given assignments on sql query. what I had to solve there. Some questions were asked on python and sql

Round 3 - One-on-one 

(2 Questions)

  • Q1. My prior experiences.
  • Q2. Why I am choosing this domain

Interview Preparation Tips

Interview preparation tips for other job seekers - If you choose data engineering. Then you must have knowledge in sql and python.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. Difference Between let var and Const ?
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • let: block-scoped, can be reassigned

    • var: function-scoped, can be reassigned

    • const: block-scoped, cannot be reassigned, but its properties can be modified

  • Answered by AI
  • Q2. What is the difference between struct and objects ?
  • Ans. 

    Struct is a value type while object is a reference type in C#.

    • Structs are value types and stored on stack, while objects are reference types and stored on heap.

    • Structs are passed by value, while objects are passed by reference.

    • Structs do not support inheritance, while objects do.

    • Example: struct Point { int x, y; } vs class Point { int x, y; }

  • Answered by AI
  • Q3. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q4. Compilier Programming language and Intepreter Programming language examples
  • Ans. 

    Compiler programming languages convert source code into machine code before execution, while interpreter programming languages execute code line by line.

    • Compiler programming languages: C, C++, Java

    • Interpreter programming languages: Python, Ruby, JavaScript

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About projects and skills the asked
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about virtual function
  • Ans. 

    Virtual functions allow a function to be overridden in a derived class

    • Virtual functions are declared in a base class and can be overridden in derived classes

    • They are used in polymorphism to achieve runtime binding

    • Virtual functions are implemented using virtual keyword in C++

    • Example: virtual void display() = 0; // pure virtual function

  • Answered by AI
  • Q2. Tell me about friend function
  • Ans. 

    Friend function is a function that is not a member of a class but has access to its private and protected members.

    • Friend functions are declared inside a class with the keyword 'friend'.

    • They can access private and protected members of the class.

    • They are not member functions of the class but have the same access rights as member functions.

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular lifecycle hooks
  • Q2. Directives, callbacks, Observable, promise
Round 2 - One-on-one 

(1 Question)

  • Q1. Past project related questions
Round 3 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Very polite interviewer. Easy interview process

Tell us how to improve this page.

Interview Questions from Similar Companies

Zeta Interview Questions
3.3
 • 69 Interviews
embedUR Systems Interview Questions
3.3
 • 48 Interviews
CoinDCX Interview Questions
3.8
 • 29 Interviews
Seclore Interview Questions
4.1
 • 26 Interviews
MoEngage Interview Questions
4.0
 • 25 Interviews
Convin Interview Questions
4.3
 • 21 Interviews
Exponentia.ai Interview Questions
4.2
 • 15 Interviews
Jio Haptik Interview Questions
3.4
 • 14 Interviews
Shorthills AI Interview Questions
4.3
 • 11 Interviews
View all

Techindo Systems Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare Techindo Systems with

Watchyourhealth.com

4.7
Compare

Zeta

3.3
Compare

Shorthills AI

4.3
Compare

Sequretek It Solutions

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