Upload Button Icon Add office photos
Engaged Employer

i

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

InfoAxon Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

InfoAxon Technologies Interview Questions, Process, and Tips

Updated 26 Jan 2024

Top InfoAxon Technologies Interview Questions and Answers

View all 19 questions

InfoAxon Technologies Interview Experiences

Popular Designations

3 interviews found

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

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

Round 1 - Technical 

(14 Questions)

  • Q1. Tell me about yourself.
  • Q2. Explain about your projects.
  • Q3. Why do we use doctype in Html? What will happen if we remove it?
  • Ans. 

    Doctype defines the version of HTML being used and helps browsers render the page correctly.

    • Doctype declaration is used to specify the version of HTML being used in the document.

    • It helps browsers to render the web page correctly by triggering standards mode.

    • If the doctype is removed, browsers may render the page in quirks mode which can lead to inconsistent display.

    • For example, without a doctype, some CSS styles may no

  • Answered by AI
  • Q4. What are meta tags? Explain different types of meta tags.
  • Ans. 

    Meta tags are HTML tags that provide metadata about a webpage. They are used to provide information about the page to search engines and browsers.

    • Meta tags are placed in the head section of an HTML document.

    • Common types of meta tags include meta description, meta keywords, and meta viewport.

    • Meta description provides a brief summary of the webpage's content.

    • Meta keywords are used to specify keywords relevant to the webp...

  • Answered by AI
  • Q5. What is z-index?
  • Ans. 

    z-index is a CSS property that controls the stacking order of elements on a webpage.

    • z-index determines which elements appear in front or behind other elements

    • Higher z-index values bring elements to the front

    • z-index only works on positioned elements (position: absolute, position: relative, or position: fixed)

    • z-index can be positive, negative, or zero

    • Elements with higher z-index values will overlap elements with lower va

  • Answered by AI
  • Q6. What is viewport?
  • Ans. 

    Viewport is the visible area of a web page in a web browser.

    • Viewport determines how much content can be seen without scrolling.

    • It is defined by the size of the browser window.

    • Viewport can be adjusted using meta tags in HTML.

    • Responsive web design uses viewport to optimize layout for different devices.

  • Answered by AI
  • Q7. What are the different ways to link css? Which has the highest priority?
  • Ans. 

    There are three ways to link CSS: inline, internal, and external. Inline has the highest priority.

    • Inline CSS is applied directly to an HTML element using the 'style' attribute.

    • Internal CSS is defined within the 'style' tags in the head section of an HTML document.

    • External CSS is linked to an HTML document using the 'link' tag with the 'rel' attribute set to 'stylesheet'.

    • Inline CSS has the highest priority, followed by

  • Answered by AI
  • Q8. What do you understand by CSS box model?
  • Ans. 

    CSS box model is a design concept that describes how elements are rendered on a web page.

    • The CSS box model consists of four main components: content, padding, border, and margin.

    • The content area is where the actual content of the element is displayed.

    • Padding is the space between the content and the border.

    • Border is a line that surrounds the padding and content.

    • Margin is the space between the border and other elements o...

  • Answered by AI
  • Q9. What is the difference between margin and padding?
  • Ans. 

    Margin is the space outside an element, while padding is the space inside an element.

    • Margin is used to create space between elements, while padding is used to create space within an element.

    • Margin affects the positioning of an element in relation to other elements, while padding affects the content within an element.

    • Negative margin can be used to overlap elements, while negative padding is not possible.

    • Margin is transp...

  • Answered by AI
  • Q10. How do you include bootstrap into a html document?
  • Ans. 

    To include Bootstrap into an HTML document, link the Bootstrap CSS and JavaScript files in the head section.

    • Download the Bootstrap CSS and JavaScript files from the official website.

    • Place the CSS file link inside the head section using the link tag.

    • Place the JavaScript file link at the end of the body section using the script tag.

    • Ensure the file paths are correct and relative to the HTML document.

  • Answered by AI
  • Q11. What is meant by bootstrap grid system?
  • Ans. 

    Bootstrap grid system is a responsive grid system that allows developers to create responsive layouts for web pages.

    • Bootstrap grid system is based on a 12-column layout.

    • It uses CSS classes to define the layout structure.

    • Developers can easily create responsive designs by utilizing the grid system.

    • The grid system provides different classes for different screen sizes, such as 'col-sm' for small screens and 'col-lg' for la

  • Answered by AI
  • Q12. What are containers?
  • Ans. 

    Containers are lightweight, isolated environments that package software and its dependencies for easy deployment and scalability.

    • Containers provide a consistent and reproducible environment for running applications.

    • They encapsulate an application and its dependencies, including libraries, binaries, and configuration files.

    • Containers are portable and can run on any system that supports containerization.

    • They offer effici...

  • Answered by AI
  • Q13. How do you declare a variable in javascript?
  • Ans. 

    To declare a variable in JavaScript, use the 'var', 'let', or 'const' keyword followed by the variable name.

    • Use 'var' to declare a variable with function scope

    • Use 'let' to declare a variable with block scope

    • Use 'const' to declare a constant variable

    • Example: var age = 25; let name = 'John'; const PI = 3.14;

  • Answered by AI
  • Q14. How to achieve responsiveness in web page?
  • Ans. 

    Achieve responsiveness in web page by using media queries, flexible layouts, and fluid images.

    • Use CSS media queries to apply different styles based on screen size

    • Create flexible layouts using CSS Grid or Flexbox

    • Use relative units like percentages and ems instead of fixed pixels

    • Optimize images for different screen sizes using srcset and sizes attributes

    • Test responsiveness across different devices and browsers

  • Answered by AI

Interview Preparation Tips

Topics to prepare for InfoAxon Technologies Web Developer Trainee interview:
  • HTML
  • CSS
  • Javascript
  • Bootstrap
Interview preparation tips for other job seekers - The interview is fairly easy, you just need to have basic knowledge about html, css and javascript. (I couldn't clear the interview, as my basics weren't clear).

Skills evaluated in this interview

Top InfoAxon Technologies Web Developer Trainee Interview Questions and Answers

Q1. Why do we use doctype in Html? What will happen if we remove it?
View answer (1)

Web Developer Trainee Interview Questions asked at other Companies

Q1. What are the different ways to link css? Which has the highest priority?
View answer (1)

Liferay Architect Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Questions on advanced Liferay concepts.
  • Q2. What are user segments?
  • Q3. How do you audience targeting?
Round 3 - Group Discussion 

Mainly about expectations from you.

Round 4 - HR 

(2 Questions)

  • Q1. Package negotiations
  • Q2. About yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be very careful.
Please don't rely on it as your primary source of income, it is good if you have spouse working or some other alternate source of income.

I applied via campus placement at Maharishi Dayanand University (MDU), Rohtak and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What do you know about HashMap explain with internal working?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • HashMap uses hashing to store and retrieve values based on their keys.

    • It allows null values and one null key.

    • Collisions are resolved by chaining or open addressing.

    • The initial capacity and load factor can be specified during initialization.

    • The internal array is resized when the load factor exceeds a thresh...

  • Answered by AI
  • Q2. What is the difference between StringBuffer and StringBuilder?
  • Ans. 

    StringBuffer is synchronized while StringBuilder is not.

    • StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is slower than StringBuilder due to synchronization.

    • StringBuilder is preferred for single-threaded operations.

    • Both classes are used for manipulating strings.

    • Example: StringBuffer sb = new StringBuffer(); StringBuilder sb = new StringBuilder();

  • Answered by AI
  • Q3. Explain public static void main (String[] args) .
  • Ans. 

    The entry point of a Java program, must be public, static, void and accept an array of strings as argument.

    • public: accessible from anywhere in the program

    • static: belongs to the class, not to an instance of the class

    • void: does not return any value

    • main: the name of the method that serves as the entry point of the program

    • String[] args: an array of strings that can be used to pass arguments to the program

  • Answered by AI
  • Q4. Explains ways to define Thread.
  • Ans. 

    A thread is a lightweight process that can run concurrently with other threads within a program.

    • Threads share the same memory space as the parent process.

    • Threads can communicate with each other through shared memory.

    • Threads can be created and managed using threading libraries in programming languages like Java and Python.

  • Answered by AI
  • Q5. What is encapsulation? How can achieve it?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information.

    • Encapsulation is achieved through access modifiers like public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • It prevents unauthorized access to the internal details of an object.

    • Example: A class with private variables and public methods to access those variables.

    • Example: A capsul...

  • Answered by AI
  • Q6. What is the fill ratio and concurrency level in Concurrent Collection Framework
  • Ans. 

    Fill ratio is the percentage of array slots that are occupied by elements. Concurrency level is the estimated number of concurrently updating threads.

    • Fill ratio is important for performance optimization and memory usage.

    • Concurrency level determines the number of segments in the collection.

    • Higher concurrency level can improve performance but also increases memory usage.

    • Examples of concurrent collection frameworks includ

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident .
Be real.

Skills evaluated in this interview

Top InfoAxon Technologies Senior Engineer Interview Questions and Answers

Q1. What is the fill ratio and concurrency level in Concurrent Collection Framework
View answer (1)

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (54)

Interview questions from similar companies

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

I was interviewed in Feb 2025.

Round 1 - Coding Test 

Three questions to be solved out of five.

Round 2 - Assignment 

One assignment project will be submitted within seven days.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical skills will be assessed during the interview with the director
Round 4 - HR 

(1 Question)

  • Q1. What are your expectations from the company?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me your overall experience from your past companies?
  • Ans. 

    I have over 5 years of experience in customer support roles at various companies.

    • Managed customer inquiries via phone, email, and chat

    • Resolved customer complaints and issues in a timely manner

    • Provided product support and troubleshooting assistance

    • Collaborated with other departments to ensure customer satisfaction

    • Trained new customer support representatives

  • Answered by AI
  • Q3. What are the challenges faced in last organization?
  • Q4. What is your current ctc, expected ctc & Notice period?
  • Ans. 

    Current CTC is $50,000, Expected CTC is $60,000, Notice period is 30 days.

    • Current CTC: $50,000

    • Expected CTC: $60,000

    • Notice Period: 30 days

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What are your technical expertise?

Interview Preparation Tips

Interview preparation tips for other job seekers - Flexibility for shift timings like in day 8.30hours to complete friendly work environment but working culture is not that good. Need good managers or seniors to support team members. Need to work on policies for employees benefits and wfh options needs to be given for all not for specific department wise.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Palindrome code should design
  • Ans. 

    Palindrome code should be designed to check if a given string is the same forwards and backwards.

    • Create a function that takes a string as input

    • Remove any spaces and punctuation from the string

    • Reverse the string and compare it to the original string to check if it is a palindrome

  • Answered by AI
  • Q2. Regarding sql topics like joins and acid
  • Q3. Project explain and domain
  • Q4. Project explain and domain and internal working
  • Q5. Oops concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Plzzzz don't join this worst company...they treat u like daily wages person
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Why are you interested in the role
  • Ans. 

    I am passionate about driving organizational effectiveness and employee engagement through strategic HR initiatives.

    • I have a strong background in HR strategy and business partnering

    • I enjoy collaborating with cross-functional teams to drive positive change

    • I am excited about the opportunity to make a meaningful impact on the organization's culture and performance

  • Answered by AI
  • Q3. Talking about Intersted in which things that do in free time

Interview Preparation Tips

Interview preparation tips for other job seekers - Recently, I had an interview experience that felt unprofessional. I was assured I was one of two shortlisted candidates for a role and encouraged to attend. After waiting for over 30 minutes, the HR representative finally conducted the interview but was dressed in casual nightwear, which left a poor impression. Such behavior from an HR professional does not reflect well on the company. I suggest researching thoroughly before investing your time and effort with organizations that may not prioritize professionalism in their recruitment process.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. How would you utilize AWS or Azure services to create scalable web applications
  • Ans. 

    Utilize AWS or Azure services for scalable web applications

    • Use AWS Elastic Beanstalk or Azure App Service for easy deployment and scaling

    • Leverage AWS Lambda or Azure Functions for serverless computing

    • Utilize AWS Auto Scaling or Azure Autoscale to automatically adjust resources based on traffic

    • Store data in AWS RDS or Azure SQL Database for scalable database solutions

    • Use AWS CloudFront or Azure CDN for content delivery

  • Answered by AI
  • Q2. How would you tackle memory leaks if the system your working on was experiencing this issue?
  • Ans. 

    I would use memory profiling tools to identify the source of the leaks and then fix them by properly managing memory allocation and deallocation.

    • Use memory profiling tools like Valgrind or Instruments to identify the source of the leaks

    • Review the code to ensure proper memory allocation and deallocation practices are being followed

    • Implement smart pointers or garbage collection to automatically manage memory

    • Use static co...

  • Answered by AI
  • Q3. Have you worked on legacy systems?
  • Ans. 

    Yes, I have experience working on legacy systems.

    • I have successfully maintained and upgraded legacy systems to meet current business needs.

    • I have refactored legacy code to improve performance and scalability.

    • I have integrated new technologies with legacy systems to enhance functionality.

    • I have experience troubleshooting and debugging issues in legacy systems.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Are you capable to work with cross functional teams and handle disputes effectively
  • Ans. 

    Yes, I have experience working with cross functional teams and resolving disputes effectively.

    • I have successfully collaborated with team members from different departments to achieve project goals.

    • I am skilled at mediating conflicts and finding mutually beneficial solutions.

    • I prioritize open communication and actively listen to all team members' perspectives.

    • I have experience using conflict resolution techniques such a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and on to point without deviations, they respect straight forwardness
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between function and method
  • Ans. 

    A function is a piece of code that is called by name, while a method is a function that is associated with an object.

    • Functions are standalone blocks of code, while methods are functions that are part of a class or object.

    • Functions can be called independently, while methods are called on an object.

    • Functions do not have access to data stored in an object, while methods can access and modify object data.

  • Answered by AI
  • Q2. A program related to strings
  • Q3. A program related to prime numbers
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basically It is a list of 25 questions having mix of Resoning,Aptitude &English. Each Queztion carries 2 marks and also there was a plus point that it doesn't have any negative marks

Round 2 - Technical 

(1 Question)

  • Q1. Basically it is about the Technical Subjects that U mention eariler in your coresponding CV's. Whatever Subject you meantioned their gonna answer about it for tge questions regarding to that subject
Round 3 - HR 

(14 Questions)

  • Q1. Brief Description about Youself
  • Ans. 

    I am a passionate software developer with a strong background in computer science and a love for problem-solving.

    • Graduated with a degree in Computer Science from XYZ University

    • Proficient in programming languages such as Java, Python, and C++

    • Experience with web development using HTML, CSS, and JavaScript

    • Completed internships at ABC Company and DEF Company

    • Participated in coding competitions like Codeforces and LeetCode

  • Answered by AI
  • Q2. What is your goal in Life
  • Ans. 

    My goal in life is to continuously learn and grow, both personally and professionally, while making a positive impact on others.

    • Continuous learning and self-improvement

    • Making a positive impact on others

    • Achieving personal and professional growth

    • Contributing to the community or society

    • Finding fulfillment and happiness in my pursuits

  • Answered by AI
  • Q3. What do you know about tgis job Profile
  • Ans. 

    Software Developer Trainee involves learning and applying software development skills under supervision.

    • Learning programming languages and tools

    • Assisting in developing and testing software applications

    • Participating in team meetings and code reviews

    • Receiving mentorship and guidance from senior developers

  • Answered by AI
  • Q4. Why should we hire you instead of all achoknowledgable freshers sitting behind for this job role ?
  • Q5. What are ur hobbies and strengths and weeknesses
  • Ans. 

    My hobbies include coding, reading, and playing video games. My strengths are problem-solving, attention to detail, and adaptability. My weaknesses are public speaking and time management.

    • Hobbies: coding, reading, playing video games

    • Strengths: problem-solving, attention to detail, adaptability

    • Weaknesses: public speaking, time management

  • Answered by AI
  • Q6. Why you want to do this job role
  • Ans. 

    I am passionate about coding and problem-solving, and I believe this job role will provide me with the opportunity to learn and grow as a software developer.

    • Passionate about coding and problem-solving

    • Opportunity to learn and grow as a software developer

    • Excited about the challenges and projects in this role

  • Answered by AI
  • Q7. Why you want to join us instead of other good companies.
  • Ans. 

    I am drawn to your company's innovative projects and collaborative work culture.

    • I am impressed by the cutting-edge technologies your company is using.

    • I value the emphasis your company places on teamwork and professional development.

    • I believe my skills and passion align well with the opportunities at your company.

  • Answered by AI
  • Q8. How you balance yourself in a fatal situation
  • Ans. 

    I remain calm, assess the situation, prioritize tasks, and take necessary actions to mitigate the risk.

    • Stay calm and composed to think clearly

    • Assess the situation to understand the severity

    • Prioritize tasks based on urgency

    • Take necessary actions to mitigate the risk

  • Answered by AI
  • Q9. If you alredy working under a company but want to switch it then the questions will remain same but just add some 2 to 3 extra questions like i am meantioning it down👇
  • Q10. What was ur job profile
  • Ans. 

    I was responsible for developing and maintaining software applications.

    • Developed new features and functionalities for existing software applications

    • Fixed bugs and issues reported by users

    • Collaborated with team members to design and implement solutions

    • Participated in code reviews and testing processes

  • Answered by AI
  • Q11. How do u know about our company
  • Ans. 

    Researched online, read about company culture, projects, and achievements.

    • Visited company website and read about the services offered

    • Checked out company's LinkedIn page for updates and employee reviews

    • Read articles or news related to the company's recent projects or achievements

  • Answered by AI
  • Q12. Did u Resign by ur own or The comapny Resign you ??
  • Ans. 

    I resigned from my previous position voluntarily.

    • I resigned from my previous job on my own accord.

    • I made the decision to leave the company.

    • I chose to resign from my previous role.

    • I voluntarily left my previous position.

  • Answered by AI
  • Q13. What was ur salary their
  • Ans. 

    I am not comfortable sharing my previous salary information.

    • I prefer not to disclose my previous salary as it is confidential information.

    • I believe that my salary history should not be a determining factor for my potential as a Software Developer Trainee.

    • I am more focused on the opportunities and growth potential that this position offers rather than past salary.

    • I am confident that my skills and qualifications align wi...

  • Answered by AI
  • Q14. Incase u alredy have an experience in a better company then interviewer ask this -* why joing us instead u have an magnificent well role on your comapny*

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Ofcourse if you are not confident you will get rejected. Because Interviewer asks the 4x questions who has lack of Confidence to broke them to fear .You sbould get rid of that.

2. And Always balance ur words like what u going to say ,read the mind of the interviewer. (ofcourse it take practices)

3.As like our older says "Stand infront of the mirror and start saying about you, define yourself to you, what r u, why r u, how u gonna work this, everything" This'll burn the fear inside you.

4. Don't get Upset if u can not make to a comapny and instead of doing excuses about the company or HR's question, U should work hard on yourself gathering previous mistakes and make to the better comapny

5.And always follow the laws and well prepare your responsibilities.
Thats all Advice i can gave.

InfoAxon Technologies Interview FAQs

How many rounds are there in InfoAxon Technologies interview?
InfoAxon Technologies interview process usually has 2-3 rounds. The most common rounds in the InfoAxon Technologies interview process are Technical, Resume Shortlist and Group Discussion.
How to prepare for InfoAxon 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 InfoAxon Technologies. The most common topics and skills that interviewers at InfoAxon Technologies expect are Liferay, HTML, Javascript, CSS and Hibernate.
What are the top questions asked in InfoAxon Technologies interview?

Some of the top questions asked at the InfoAxon Technologies interview -

  1. Why do we use doctype in Html? What will happen if we remove ...read more
  2. What are the different ways to link css? Which has the highest priori...read more
  3. What are meta tags? Explain different types of meta ta...read more

Tell us how to improve this page.

InfoAxon Technologies Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 812 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
View all

InfoAxon Technologies Reviews and Ratings

based on 52 reviews

3.0/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.0

Salary

3.1

Job security

3.0

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 52 Reviews and Ratings
Solution Developer
87 salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Solution Engineer
16 salaries
unlock blur

₹2.8 L/yr - ₹9.8 L/yr

UI Developer
14 salaries
unlock blur

₹4.3 L/yr - ₹11 L/yr

QA Engineer
11 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Software Developer
10 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

Explore more salaries
Compare InfoAxon Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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