Upload Button Icon Add office photos

Techolution

Compare button icon Compare button icon Compare

Filter interviews by

Techolution Interview Questions and Answers

Updated 17 Apr 2025
Popular Designations

47 Interview questions

An Associate System and Network Engineer was asked 8mo ago
Q. What is the port number for SSH?
Ans. 

SSH (Secure Shell) uses port 22 for secure remote access and management of network devices and servers.

  • SSH stands for Secure Shell, a protocol for secure remote login.

  • Port 22 is the default port for SSH connections.

  • SSH encrypts data to provide confidentiality and integrity.

  • Commonly used for remote server management and file transfers.

  • Example: To connect to a server via SSH, you would use 'ssh user@hostname'.

An Associate System and Network Engineer was asked 8mo ago
Q. What is IPsec 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 acces...

An Associate System and Network Engineer was asked 8mo ago
Q. 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 red...

An Associate System and Network Engineer was asked 8mo ago
Q. What process does DHCP follow? Explain in depth.
Ans. 

DHCP automates IP address assignment in networks through a four-step process: Discover, Offer, Request, and Acknowledge.

  • 1. DHCP Discover: Client broadcasts a request to find available DHCP servers.

  • 2. DHCP Offer: Servers respond with an offer, including an IP address and configuration details.

  • 3. DHCP Request: Client selects an offer and requests the offered IP address from the chosen server.

  • 4. DHCP Acknowledge: The...

An Associate System and Network Engineer was asked 8mo ago
Q. Explain the steps to create policies in a 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

An Associate System and Network Engineer was asked 8mo ago
Q. What is APIPA?
Ans. 

APIPA (Automatic Private IP Addressing) allows devices to self-assign IP addresses when DHCP is unavailable.

  • APIPA assigns IP addresses in the range 169.254.0.1 to 169.254.255.254.

  • It is used when a device cannot obtain an IP address from a DHCP server.

  • For example, if a computer fails to connect to a DHCP server, it may assign itself 169.254.1.2.

  • APIPA enables local network communication without manual IP configurati...

Techolution HR Interview Questions

16 questions and answers

Q. What devices have you worked on in your previous organization?
Q. What is your opinion on joining this company, on a scale of 1 to 10?
Q. Describe the most challenging situation you faced and how you resolved it u ... read more
An Associate System and Network Engineer was asked 8mo ago
Q. Explain the OSI model in depth.
Ans. 

The OSI model is a conceptual framework used to understand network communication in seven layers.

  • Layer 1: Physical - Deals with the physical connection between devices (e.g., cables, switches).

  • Layer 2: Data Link - Responsible for node-to-node data transfer (e.g., Ethernet, MAC addresses).

  • Layer 3: Network - Manages routing of data packets (e.g., IP addresses, routers).

  • Layer 4: Transport - Ensures complete data tran...

Are these interview questions helpful?
An Associate System and Network Engineer was asked 8mo ago
Q. In which layer does a Firewall operate?
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.

An Associate System and Network Engineer was asked 8mo ago
Q. 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 ...

An Associate System and Network Engineer was asked 8mo ago
Q. How do you troubleshoot VPN issues in the network?
Ans. 

Troubleshooting VPN issues involves systematic checks of configurations, connectivity, and logs to identify and resolve problems.

  • Check VPN client configuration: Ensure the correct server address, authentication method, and credentials are used.

  • Verify network connectivity: Use ping and traceroute to check if the VPN server is reachable from the client.

  • Examine firewall settings: Ensure that the necessary ports (e.g....

Techolution Interview Experiences

30 interviews found

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

I applied via Campus Placement 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
  • Ans. 

    Binary search is an efficient algorithm for finding an item from a sorted list of items.

    • Binary search works on sorted arrays. Example: [1, 2, 3, 4, 5].

    • It divides the search interval in half. If the target is less than the middle element, search the left half.

    • If the target is greater, search the right half. Example: Searching for 3 in [1, 2, 3, 4, 5] results in mid index 2.

    • The time complexity is O(log n), making it much...

  • Answered by AI
  • Q8. DSA question based on simple array manipulation separate odd and even from array
  • Ans. 

    Separate odd and even numbers from an array using Python.

    • Use list comprehension to filter odd and even numbers.

    • Example: For array [1, 2, 3, 4], evens = [2, 4], odds = [1, 3].

    • You can also use a loop to append to separate lists.

    • Example: Initialize two lists, iterate through the array, and append accordingly.

  • Answered by AI
  • 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

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
  • Ans. 

    Aspiring AI intern with a passion for generative models and a background in computer science and machine learning.

    • Currently pursuing a degree in Computer Science with a focus on AI and machine learning.

    • Completed projects on generative adversarial networks (GANs) and natural language processing.

    • Interned at a tech startup where I assisted in developing AI-driven applications.

    • Participated in hackathons, winning first plac...

  • Answered by AI
  • 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 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 ?
  • Ans. 

    I would rate my interest in joining this company as a solid 9, due to its innovative projects and collaborative culture.

    • The company's commitment to cutting-edge technology aligns with my career goals.

    • I admire the emphasis on teamwork and knowledge sharing, which fosters growth.

    • The opportunity to work on diverse projects excites me, as it enhances my skill set.

    • I appreciate the company's focus on employee development and...

  • Answered by AI
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 ?
  • Ans. 

    I have worked on various networking devices including routers, switches, firewalls, and servers to ensure optimal network performance.

    • Configured Cisco routers for WAN connectivity and optimized routing protocols.

    • Managed HP and Cisco switches to maintain VLANs and improve network segmentation.

    • Implemented firewall rules on Fortinet and Palo Alto devices to enhance security.

    • Monitored network performance using tools like S...

  • Answered by AI
  • 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 ?
  • Ans. 

    Troubleshooting VPN issues involves systematic checks of configurations, connectivity, and logs to identify and resolve problems.

    • Check VPN client configuration: Ensure the correct server address, authentication method, and credentials are used.

    • Verify network connectivity: Use ping and traceroute to check if the VPN server is reachable from the client.

    • Examine firewall settings: Ensure that the necessary ports (e.g., UDP...

  • Answered by AI
  • Q12. Types of VPNs and differences ?
  • Q13. What is L2TP & PPTP ?
  • Q14. What is the use of STP ?
  • Q15. Difference between STP,, RPST, RPVST ?
  • Q16. What is MSTP ?
  • Q17. Any feedback about the interview ?
  • Ans. 

    The interview was insightful, providing a clear understanding of the role and expectations while also allowing for candidate questions.

    • The interviewers were knowledgeable and provided detailed explanations about the team's projects.

    • I appreciated the opportunity to ask questions, which helped clarify the role's responsibilities.

    • The technical questions were relevant and aligned with the skills required for the position, ...

  • Answered by AI
Round 3 - One-on-one 

(23 Questions)

  • Q1. Introduction and day to day activities ?
  • Q2. Explain OSI model in depth ?
  • Ans. 

    The OSI model is a conceptual framework used to understand network communication in seven layers.

    • Layer 1: Physical - Deals with the physical connection between devices (e.g., cables, switches).

    • Layer 2: Data Link - Responsible for node-to-node data transfer (e.g., Ethernet, MAC addresses).

    • Layer 3: Network - Manages routing of data packets (e.g., IP addresses, routers).

    • Layer 4: Transport - Ensures complete data transfer ...

  • Answered by AI
  • 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 ?
  • Ans. 

    DHCP automates IP address assignment in networks through a four-step process: Discover, Offer, Request, and Acknowledge.

    • 1. DHCP Discover: Client broadcasts a request to find available DHCP servers.

    • 2. DHCP Offer: Servers respond with an offer, including an IP address and configuration details.

    • 3. DHCP Request: Client selects an offer and requests the offered IP address from the chosen server.

    • 4. DHCP Acknowledge: The serv...

  • Answered by AI
  • 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 ?
  • Ans. 

    To add interfaces to a VLAN, configure the switch ports to the desired VLAN using specific commands.

    • Access the switch's command line interface (CLI).

    • Enter global configuration mode using 'configure terminal'.

    • Select the interface you want to add to the VLAN, e.g., 'interface GigabitEthernet0/1'.

    • Assign the interface to the VLAN using 'switchport access vlan [VLAN_ID]', e.g., 'switchport access vlan 10'.

    • Repeat for additio...

  • Answered by AI
  • 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 ?
  • Ans. 

    Use the 'switchport access vlan' command in interface configuration mode to assign multiple ports to a VLAN.

    • Enter global configuration mode: 'configure terminal'

    • Select the interface: 'interface range FastEthernet 0/1 - 24'

    • Assign the VLAN: 'switchport access vlan 10'

    • Exit configuration mode: 'end' or 'exit'

    • Verify the configuration: 'show vlan brief'

  • Answered by AI
  • Q17. What are ports called as which carries multiple VLANs ?
  • Ans. 

    Ports that carry multiple VLANs are known as trunk ports, allowing for efficient network segmentation.

    • Trunk ports are used to connect switches and carry traffic for multiple VLANs.

    • They use tagging protocols like IEEE 802.1Q to identify VLANs.

    • Example: A trunk port on a switch can carry traffic for VLAN 10, VLAN 20, and VLAN 30 simultaneously.

    • Trunk ports are essential for inter-switch communication in a VLAN environment.

  • Answered by AI
  • 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 ?
  • Ans. 

    Backing up firewall firmware involves careful planning to ensure no disruption to network services.

    • Schedule backups during off-peak hours to minimize impact on users.

    • Use a redundant firewall setup to ensure continuity while backing up the primary device.

    • Utilize the firewall's built-in backup features, which often allow for live backups.

    • Test the backup process in a lab environment before implementing it in production.

    • Do...

  • Answered by AI
  • 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 ?
  • Ans. 

    Yes, I have experience with MPLS, focusing on its implementation and benefits in network efficiency and performance.

    • MPLS stands for Multi-Protocol Label Switching, which enhances the speed and efficiency of network traffic.

    • It allows for the creation of end-to-end circuits across any type of transport medium, using any protocol.

    • I have configured MPLS in a service provider environment to improve data routing and reduce l...

  • Answered by AI

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.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Html, Css, Js, React, Express, Mongodb basics.
  • Q2. Coding challenges - Fetching api data, Props

Interview Preparation Tips

Interview preparation tips for other job seekers - NEVER JOIN THIS COMPANY.

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
  • Ans. 

    I have over 10 years of diverse HR experience including recruitment, employee relations, training and development.

    • Recruitment experience includes sourcing, interviewing, and onboarding new employees.

    • Employee relations experience involves handling conflicts, conducting investigations, and implementing disciplinary actions.

    • Training and development experience includes designing and delivering training programs, performanc...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

  • Q1. AI tools used in the project
  • Ans. 

    AI tools enhance project management by improving efficiency, decision-making, and communication.

    • AI-powered project management software like Asana or Trello can automate task assignments.

    • Predictive analytics tools can forecast project risks and timelines, helping in proactive decision-making.

    • Natural Language Processing (NLP) tools can analyze team communications for sentiment and engagement.

    • AI chatbots can assist in ans...

  • Answered by AI
  • Q2. Budgeting and type of projects
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.
  • Q2. What do you like about the company.
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

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

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
  • Ans. 

    My short-term goal is to gain hands-on experience in AI, while my long-term goal is to innovate solutions that enhance human life.

    • Short-term: Secure an internship to apply theoretical knowledge in real-world projects, like developing a chatbot for customer service.

    • Long-term: Aim to lead a team in creating AI-driven healthcare solutions, such as predictive analytics for patient outcomes.

    • Short-term: Learn programming lan...

  • Answered by AI

Top trending discussions

View All
Interview Hub
5d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Techolution?
Ask anonymously on communities.

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 One-on-one Round.
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 Python, Artificial Intelligence, Monitoring, Machine Learning and Process automation.
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. How you solve "they will give some real world scenari...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.

Overall Interview Experience Rating

2.9/5

based on 24 interview experiences

Difficulty level

Easy 24%
Moderate 59%
Hard 18%

Duration

Less than 2 weeks 68%
2-4 weeks 21%
4-6 weeks 11%
View more

Interview Questions from Similar Companies

Saama Technologies Interview Questions
3.8
 • 58 Interviews
Blenheim Chalcot Interview Questions
2.8
 • 51 Interviews
DotPe Interview Questions
3.0
 • 42 Interviews
IT By Design Interview Questions
3.4
 • 41 Interviews
RNF Technologies Interview Questions
3.3
 • 36 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
Systems Plus Interview Questions
4.2
 • 30 Interviews
View all

Techolution Reviews and Ratings

based on 160 reviews

2.8/5

Rating in categories

3.0

Skill development

2.7

Work-life balance

3.1

Salary

2.4

Job security

2.6

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 160 Reviews and Ratings
Generative AI Engineer

Hyderabad / Secunderabad

1-4 Yrs

₹ 10-20 LPA

Senior iOS Developer

Hyderabad / Secunderabad

6-10 Yrs

₹ 20-30 LPA

Release Manager

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Explore more jobs
Associate Project Manager
45 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Project Manager
22 salaries
unlock blur

₹10.5 L/yr - ₹22.1 L/yr

Full Stack Developer
21 salaries
unlock blur

₹8.3 L/yr - ₹14 L/yr

Devops Engineer
18 salaries
unlock blur

₹4.8 L/yr - ₹10.6 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹23 L/yr - ₹32 L/yr

Explore more salaries
Compare Techolution with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview