Upload Button Icon Add office photos

Filter interviews by

Techolution Interview Questions, Process, and Tips

Updated 15 Jan 2025

Top Techolution Interview Questions and Answers

View all 49 questions

Techolution Interview Experiences

Popular Designations

27 interviews found

generative ai intern Interview Questions & Answers

user image Anonymous

posted on 4 Sep 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(6 Questions)

  • Q1. Introduction about yourself
  • Ans. 

    I am a passionate computer science student with a strong interest in artificial intelligence and machine learning.

    • Currently pursuing a degree in computer science

    • Completed multiple projects related to AI and ML

    • Participated in coding competitions and hackathons

    • Familiar with programming languages like Python, Java, and C++

  • Answered by AI
  • Q2. High level overview of projects, challenges faces and how you overcomed those
  • Q3. Two DSA simple DSA questions one on printing Pattern and binary search
  • Q4. And also baisc NLP and gen AI questions (what is stemming, lemmatization and chunking, what are hyperparameters, how can we resolve hallucinations)
  • Q5. One real world application of gen ai on a small problem statement (it was you have a e-commerce platform how will you use llms here> finetuning/ rag or some other)
  • Q6. Last question was if a llm is generating repitive outputs how do you resolve it
Round 2 - Technical 

(5 Questions)

  • Q1. Introduction about yourself
  • Ans. 

    I am a passionate computer science student with a strong interest in generative AI and machine learning.

    • Currently pursuing a degree in computer science

    • Completed multiple projects related to machine learning and AI

    • Participated in hackathons and coding competitions

    • Familiar with programming languages like Python, Java, and C++

  • Answered by AI
  • Q2. An AI engineer will ask questions about your projects
  • Q3. NLP, LLMs(rag &finetuning) and machine learning concepts( what is regression, can we implement regression as classification, how to evaluate a rag model etc)
  • Q4. Then again another DSA Question on printing a pattern this was the Pattern: 1 2 9 3 8 10 4 7 11 14 5 6 12 13 15
  • Q5. Then he gave me some challenge faced in building gen ai appliations i dont really recall the question but it was more about seeing your problem solving approach
Round 3 - Technical 

(4 Questions)

  • Q1. Basic introduction
  • Q2. Indepth concepts on your projects like in my project i use Qlora finetuning he asked me to explain Quantization in depth (pruning and all)
  • Q3. Then he asked me what are transformers?
  • Q4. Then again on coding part he asked me to implement binary search, quick sort, merge sort

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong DSA and Domain knowledge.
Offering 30K for internship and 7-11LPA PPO
for this 5 Rounds ain't worth it plus the office timing for this role is very odd it's 2pm-11pm
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(9 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate Python developer with experience in web development and data analysis.

    • Experienced in Python programming language

    • Skilled in web development using frameworks like Django and Flask

    • Proficient in data analysis with libraries like Pandas and NumPy

  • Answered by AI
  • Q2. Some questions around my resume (first round is taken by a HR who knows some tech)
  • Q3. I was specifically asked question around APIs, their structure
  • Q4. Multi threading and Multiprocessing in python
  • Ans. 

    Multi threading and Multiprocessing are techniques used in Python to achieve parallelism and improve performance.

    • Multi threading allows multiple threads to run concurrently within the same process, sharing the same memory space.

    • Multiprocessing involves creating multiple processes to run tasks in parallel, each with its own memory space.

    • Multi threading is more suitable for I/O-bound tasks, while multiprocessing is bette...

  • Answered by AI
  • Q5. Decorators and lambda function in python
  • Ans. 

    Decorators are functions that modify the behavior of other functions. Lambda functions are anonymous functions defined using the lambda keyword.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • Lambda functions are used for creating small, anonymous functions.

    • Example of decorator: @staticmethod decorator in Python.

    • Example of lambda function: lambda x: x*2

  • Answered by AI
  • Q6. API design for a book store (what would be the endpoints and what methods would you use)
  • Ans. 

    Endpoints and methods for a book store API

    • Endpoints: /books (GET, POST), /books/{id} (GET, PUT, DELETE), /authors (GET, POST), /authors/{id} (GET, PUT, DELETE)

    • Methods: GET (retrieve data), POST (create new data), PUT (update existing data), DELETE (delete data)

    • Example: GET /books - retrieve all books, POST /books - add a new book to the store

  • Answered by AI
  • Q7. DSA question based on binary search
  • Q8. DSA question based on simple array manipulation separate odd and even from array
  • Q9. DSA question on array manipulation : splitting array into N subarrays such that each subarray has the same sum. I was asked my proficency in DP and I said I am begginer
Round 2 - One-on-one 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate Python developer with experience in web development and data analysis.

    • Experienced in Python programming language

    • Skilled in web development using frameworks like Django and Flask

    • Proficient in data analysis with libraries like Pandas and NumPy

  • Answered by AI
  • Q2. DSA question Reverse a linked list. Optimized and brute force discussion type of interview
  • Q3. DSA question DP problem, leetcode jump game question. (DP is their favourite ig)
  • Q4. Deep copy and shallow copy in python
  • Ans. 

    Deep copy creates a new object and recursively copies the objects found in the original. Shallow copy creates a new object and references the objects found in the original.

    • Deep copy creates a new object and recursively copies all nested objects, while shallow copy creates a new object and references the nested objects.

    • Deep copy is used when you want to create a completely independent copy of an object, while shallow co...

  • Answered by AI
  • Q5. How would you rate yourself in python
  • Ans. 

    I would rate myself as proficient in Python, with experience in developing various projects and solving complex problems.

    • Proficient in Python programming language

    • Experience in developing projects using Python

    • Able to solve complex problems using Python

    • Familiar with popular Python libraries and frameworks

    • Continuously learning and improving my Python skills

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Techolution Python Developer Intern interview:
  • Dynamic Programming
  • DSA
  • API
  • Multiprocessing
  • Multithreading
  • API authentication
Interview preparation tips for other job seekers - Be thorough with DSA. Since position was for python they asked questions around python and APIs. I did expect some more question in one n one technical round but they were not satisfied with my DSA so ig they didnt move forward.

Skills evaluated in this interview

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)

Associate System and Network Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

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

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

Round 1 - HR 

(5 Questions)

  • Q1. Introduce yourself ?
  • Q2. Day to Day activities ?
  • Q3. What are your strengths and weakness ?
  • Q4. Do you about technical concepts like DNS, DHCP, Firewalls, Servers, Microsoft Intune ?
  • Q5. What is your opinion in joining this company ? out of 10 ?
Round 2 - Technical 

(17 Questions)

  • Q1. Introduce yourself ?
  • Q2. What have you worked on last three months ?
  • Q3. Some Employees are unable to access some websites ? Some are able to access ? what might be the issue ?
  • Q4. What devices you have worked on in your previous organization ?
  • Q5. Types of Network switches ? L1 , L2 ?
  • Q6. Write down the steps to backup the running-config of a switch ?
  • Ans. 

    Steps to backup the running-config of a switch

    • Access the switch's command line interface

    • Enter privileged EXEC mode by typing 'enable'

    • Copy the running-config to a TFTP server using the 'copy running-config tftp' command

    • Follow the prompts to specify the TFTP server IP address and the destination filename

    • Verify the backup by checking the TFTP server for the saved configuration file

  • Answered by AI
  • Q7. Most challenging situation you faced and how did you resolved it ? Explain in star format ?
  • Ans. 

    Handled a network outage during a critical project deadline.

    • Identified the root cause of the network outage

    • Collaborated with team members to troubleshoot and resolve the issue

    • Implemented temporary workarounds to ensure project progress

    • Communicated updates and progress to stakeholders

    • Documented the incident for future reference

  • Answered by AI
  • Q8. How does the Internet work ?
  • Q9. 192.168.1.0/24 how many usable IP addresses are there ?
  • Ans. 

    There are 254 usable IP addresses in the 192.168.1.0/24 subnet.

    • A /24 subnet mask means there are 256 total IP addresses available.

    • Subtracting the network address (192.168.1.0) and broadcast address (192.168.1.255), leaves 254 usable IP addresses.

    • Example: 192.168.1.1 to 192.168.1.254 are the usable IP addresses in the 192.168.1.0/24 subnet.

  • Answered by AI
  • Q10. Explain the steps to create policies in firewall ?
  • Ans. 

    Creating policies in a firewall involves defining rules to control traffic flow and access permissions.

    • Access the firewall management interface

    • Navigate to the firewall policies section

    • Create a new policy

    • Define the source and destination addresses

    • Specify the allowed or denied services/ports

    • Set the action to allow or block traffic

    • Apply the policy to the appropriate interfaces

    • Save and activate the policy

  • Answered by AI
  • Q11. How do you troubleshoot VPN issues in the network ?
  • Q12. Types of VPNs and differences ?
  • Ans. 

    Types of VPNs include site-to-site, remote access, and client-to-site. They differ in their use cases and configurations.

    • Site-to-site VPN connects two or more networks together over the internet, commonly used for connecting branch offices.

    • Remote access VPN allows individual users to connect to a private network from a remote location, often used for telecommuting.

    • Client-to-site VPN is similar to remote access VPN but ...

  • Answered by AI
  • Q13. What is L2TP & PPTP ?
  • Q14. What is the use of STP ?
  • Q15. Difference between STP,, RPST, RPVST ?
  • Q16. What is MSTP ?
  • Ans. 

    MSTP stands for Multiple Spanning Tree Protocol, a network protocol that creates a loop-free topology for Ethernet networks.

    • MSTP allows for multiple VLANs to share a single spanning tree instance, reducing the number of spanning tree instances needed in a network.

    • It uses a single spanning tree for all VLANs, which helps in optimizing network resources and reducing complexity.

    • MSTP is an enhancement of the original Spann...

  • Answered by AI
  • Q17. Any feedback about the interview ?
Round 3 - One-on-one 

(23 Questions)

  • Q1. Introduction and day to day activities ?
  • Q2. Explain OSI model in depth ?
  • Q3. In which layer Firewall works ?
  • Ans. 

    Firewall works at the network layer.

    • Firewall operates at the network layer of the OSI model.

    • It filters incoming and outgoing network traffic based on a set of security rules.

    • Firewalls can be hardware-based or software-based.

    • Examples of firewalls include Cisco ASA, Palo Alto Networks, and pfSense.

  • Answered by AI
  • Q4. What is port number of SSH ?
  • Q5. What is port number of apache ?
  • Ans. 

    The port number of Apache is 80 by default.

    • The default port number for Apache is 80.

    • Port 80 is used for HTTP traffic.

    • Apache can be configured to listen on different port numbers if needed.

  • Answered by AI
  • Q6. Where we can change default port of apache web server to 80 ?
  • Ans. 

    The default port of Apache web server can be changed in the configuration file httpd.conf.

    • Locate the httpd.conf file in the Apache installation directory.

    • Search for the 'Listen' directive in the httpd.conf file.

    • Change the port number specified after 'Listen' to the desired port number.

    • Save the changes and restart the Apache web server for the new port to take effect.

  • Answered by AI
  • Q7. Where is actual web content stored in apache web server ?
  • Ans. 

    Web content in Apache web server is stored in the DocumentRoot directory specified in the configuration file.

    • Web content is stored in the DocumentRoot directory specified in the Apache configuration file.

    • The default location for DocumentRoot in Apache is /var/www/html.

    • Additional directories can be specified for storing web content using VirtualHost configurations.

  • Answered by AI
  • Q8. What is APIPA ?
  • Q9. What is NAT ? what is it's purpose ?
  • Q10. Explain DHCP in depth ?
  • Ans. 

    DHCP is a network protocol that automatically assigns IP addresses to devices on a network.

    • DHCP stands for Dynamic Host Configuration Protocol.

    • It allows devices to obtain IP addresses, subnet masks, default gateways, and DNS server addresses automatically.

    • DHCP servers lease IP addresses to devices for a specific period of time.

    • DHCP uses a four-step process: Discover, Offer, Request, and Acknowledge (DORA).

    • DHCP reduces ...

  • Answered by AI
  • Q11. What is the process followed by DHCP ? Explain in depth ?
  • Q12. What is IP sec VPN ?
  • Ans. 

    IPsec VPN is a secure network connection that uses encryption and authentication to protect data transmitted over the internet.

    • IPsec VPN stands for Internet Protocol Security Virtual Private Network.

    • It provides secure communication by encrypting data packets and authenticating the parties involved.

    • IPsec VPN can be used to connect remote offices securely over the internet.

    • It is commonly used for secure remote access to ...

  • Answered by AI
  • Q13. Difference between SSL & Site-to-Site VPN ?
  • Ans. 

    SSL is used to secure individual connections, while Site-to-Site VPN is used to securely connect entire networks.

    • SSL is used to encrypt data transmitted between a client and a server over the internet.

    • Site-to-Site VPN is used to securely connect two or more networks over the internet or other public networks.

    • SSL is commonly used for securing online transactions, email, and web browsing.

    • Site-to-Site VPN is commonly used...

  • Answered by AI
  • Q14. How to add interfaces to a VLAN ?
  • Q15. Devices in the same VLAN can communicate with each other ? what are those ports called as ?
  • Ans. 

    Yes, devices in the same VLAN can communicate with each other. The ports used for this communication are called as access ports.

    • Devices in the same VLAN can communicate with each other using access ports

    • Access ports are used to connect end devices like computers, printers, etc. to the VLAN

    • Access ports are typically configured on switches to assign a specific VLAN to a specific port

  • Answered by AI
  • Q16. If we have to assign multiple ports to same VLAN, what command we should use ?
  • Q17. What are ports called as which carries multiple VLANs ?
  • Q18. By default how many S3 buckets can we create in AWS ?
  • Ans. 

    By default, you can create up to 100 S3 buckets in AWS.

    • By default, AWS allows you to create up to 100 S3 buckets per AWS account.

    • This limit can be increased by submitting a service limit increase request to AWS support.

    • The limit applies to the total number of buckets in an AWS account, including those in all AWS Regions.

    • If you reach the limit, you will need to delete existing buckets or request a limit increase to crea

  • Answered by AI
  • Q19. AWS VPC related scenario based question ?
  • Q20. What service you used to monitor aws services ?
  • Q21. How to take backup of firmware in firewall without affecting production ?
  • Q22. How do you automate firmware update and backup ?
  • Ans. 

    Automate firmware update and backup by using scripting languages and configuration management tools.

    • Use scripting languages like Python, PowerShell, or Bash to automate the process of downloading and applying firmware updates.

    • Utilize configuration management tools such as Ansible, Puppet, or Chef to automate the deployment of firmware updates across multiple devices.

    • Schedule regular backups of firmware configurations a...

  • Answered by AI
  • Q23. Have you worked with MPLS ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident, even if we don't know, try to explain it in a clear way.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

I cleared the L1 and L2 rounds. The interviewer didn't seem to know how to solve the questions, just throwing leetcode questions. Luckily, I've been griding leetcode for over a month now. In the L3 round, I was interviewed by their senior developer, who had less experience than me. He didn't know how to conduct an interview and was really annoying. It was monstly like, 'You solved it?, now great, I want it this way or that way now...' contantly confusing me along the way. Despite solving all the questions, I asked him about his approach, and his reponse made me laugh and confused at the same time. The HR was really nice and supportive throughout the process, though. All good though, I've taken interviews myself and build a strong team. I am glad I am not like the interviewer, I actually know how to approach candidates and how to ask questions. What he is doing is just showing off and confusing. Another thing to note here is not a single question related to development or achievement was asked to me. No questions related to projects as well.
Tip for Techolution: Get better Seniors.

Interview Preparation Tips

Interview preparation tips for other job seekers - just do leetcode, they only know how to copy paste the question from there.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Techolution interview questions for popular designations

 Artificial Intelligence Intern

 (4)

 Senior Full Stack Developer

 (2)

 Software Engineer

 (2)

 Associate Engineer

 (1)

 Associate Project Manager

 (1)

 Azure DevOps Engineer

 (1)

 Business Executive

 (1)

 Computer Vision Engineer

 (1)

Lead HRBP Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. HR technical questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Experiences of HR

Get interview-ready with Top Techolution Interview Questions

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Focus on basic,domain level questions

Round 2 - HR 

(2 Questions)

  • Q1. Whats your future goal.
  • Ans. 

    To become a senior React Native developer and contribute to innovative projects in the tech industry.

    • Continuously improve my skills and knowledge in React Native development

    • Work on challenging projects to gain more experience

    • Contribute to open-source projects to give back to the community

    • Lead a team of developers to deliver high-quality products

  • Answered by AI
  • Q2. What do you like about the company.
  • Ans. 

    I appreciate the company's commitment to innovation and employee growth.

    • Innovative projects and technologies being used

    • Opportunities for professional development and growth

    • Positive company culture and work environment

  • Answered by AI

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)

Jobs at Techolution

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

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

Round 1 - Coding Test 

Basic DSA and python implementation problems

Artificial Intelligence Intern Interview Questions asked at other Companies

Q1. Which AI field you are interested?
View answer (4)
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Basic interview questions and DSA

Computer Vision Engineer Interview Questions asked at other Companies

Q1. Can you train model using MATLAB for image classifications?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. What are your long and short term goal

Artificial Intelligence Intern Interview Questions asked at other Companies

Q1. Which AI field you are interested?
View answer (4)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2023. There were 5 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 - Assignment 

A problem statement was given and I was asked to provide a solution for it. Post which I was scheduled with 1st round of interview.

Round 3 - Technical 

(1 Question)

  • Q1. What are different scrum ceremonies? Can AI replace everything? Professional experience
  • Ans. 

    Scrum ceremonies include Sprint Planning, Daily Standup, Sprint Review, and Sprint Retrospective.

    • Sprint Planning involves setting goals for the sprint and selecting tasks to work on.

    • Daily Standup is a short meeting where team members discuss what they did yesterday, what they plan to do today, and any obstacles they are facing.

    • Sprint Review is a meeting at the end of the sprint to demonstrate the completed work to stak...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. What is sprint demo? At which part of scrum events is it placed? Long term and short term goals What does success mean to you? Most challenging project handled from your end?
Round 5 - One-on-one 

(1 Question)

  • Q1. I was called to office and had 2 rounds there. A problem statement was given and I was asked to portray a play role as a project manager to face the client and then to the tech lead. Questions around JIRA ...

Interview Preparation Tips

Topics to prepare for Techolution Project Manager interview:
  • Scrum
  • Agile
Interview preparation tips for other job seekers - For the first 3 rounds, the HR continuously followed up with me and asked me to save her number for further communications which I did so. Post the interview I had in their office, the HR didn't respond to my calls or messages, neither did I get any rejection email. The interview process was smooth, but didn't find it professional from HRs end.

In this company I could see people of lesser experience are promoted to director of AI and other bigger roles. It would be difficult for laterals to learn under them. In case you are a fresher this would be a good place to start with.

I feel that the JD does not match with the title of the designation as they tend to mix several responsibilities under one head. There is a lack of clarity within themselves.

Skills evaluated in this interview

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

Techolution Interview FAQs

How many rounds are there in Techolution interview?
Techolution interview process usually has 2-3 rounds. The most common rounds in the Techolution interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Techolution 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 Techolution. The most common topics and skills that interviewers at Techolution expect are Artificial Intelligence, Python, Monitoring, Process automation and Java.
What are the top questions asked in Techolution interview?

Some of the top questions asked at the Techolution interview -

  1. Which AI field you are interest...read more
  2. API design for a book store (what would be the endpoints and what methods would...read more
  3. Some Employees are unable to access some websites ? Some are able to access ? w...read more
How long is the Techolution interview process?

The duration of Techolution interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Techolution Interview Process

based on 15 interviews in last 1 year

Interview experience

3.1
  
Average
View more

People are getting interviews through

based on 23 Techolution interviews
Job Portal
Campus Placement
Company Website
74%
13%
4%
9% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
View all

Techolution Reviews and Ratings

based on 138 reviews

3.1/5

Rating in categories

3.1

Skill development

3.0

Work-Life balance

3.3

Salary & Benefits

2.8

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 138 Reviews and Ratings
Associate Project Manager
23 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Devops Engineer
18 salaries
unlock blur

₹2.6 L/yr - ₹11 L/yr

Android Developer
14 salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

Technical Lead
14 salaries
unlock blur

₹14.4 L/yr - ₹30.5 L/yr

Senior Full Stack Developer
12 salaries
unlock blur

₹13 L/yr - ₹36.3 L/yr

Explore more salaries
Compare Techolution with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview