Upload Button Icon Add office photos

Filter interviews by

Ethnotech Academic Solutions Interview Questions and Answers

Updated 7 Jul 2025
Popular Designations

42 Interview questions

A Junior Specialist was asked 6d ago
Q. What is the time complexity of binary search?
Ans. 

Binary search has a time complexity of O(log n), making it efficient for searching in sorted arrays.

  • Binary search divides the search interval in half each time.

  • It requires a sorted array to function correctly.

  • For example, searching for a number in an array of 1000 elements takes at most 10 comparisons (log2(1000) ≈ 10).

  • In contrast, linear search would take up to 1000 comparisons in the worst case.

View all Junior Specialist interview questions
A Junior Specialist was asked 6d ago
Q. Explain the difference between compiled and interpreted languages.
Ans. 

Compiled languages convert code to machine language before execution, while interpreted languages execute code line-by-line at runtime.

  • Compiled languages (e.g., C, C++) translate entire code into machine code before execution.

  • Interpreted languages (e.g., Python, JavaScript) execute code line-by-line, translating it on the fly.

  • Compiled programs generally run faster due to pre-translation, while interpreted programs...

View all Junior Specialist interview questions
A Junior Specialist was asked 6d ago
Q. What are your strengths?
Ans. 

My strengths include adaptability, strong communication skills, and a commitment to continuous learning, which enhance my effectiveness in any role.

  • Adaptability: I quickly adjust to new environments and challenges, as demonstrated when I successfully transitioned to a remote work setup during the pandemic.

  • Strong Communication Skills: I effectively convey complex information, evidenced by my role in presenting rese...

View all Junior Specialist interview questions
A Junior Specialist was asked 6d ago
Q. What are data structures?
Ans. 

Data structures are organized formats for storing and managing data efficiently for various operations.

  • Arrays: Fixed-size collections of elements, e.g., [1, 2, 3].

  • Linked Lists: Collections of nodes, where each node points to the next, e.g., 1 -> 2 -> 3.

  • Stacks: Last-in, first-out structures, e.g., function call stack.

  • Queues: First-in, first-out structures, e.g., print job queue.

  • Trees: Hierarchical structures,...

View all Junior Specialist interview questions
A Senior IT Specialist was asked 1w ago
Q. How do you connect to a database?
Ans. 

Connecting to a database involves establishing a connection using credentials and a connection string.

  • Identify the database type (e.g., MySQL, PostgreSQL, SQL Server).

  • Use a connection string that includes server address, database name, user ID, and password.

  • Example for MySQL: 'Server=myServerAddress;Database=myDataBase;Uid=myUsername;Pwd=myPassword;'

  • Utilize a database driver or library (e.g., JDBC for Java, psycop...

View all Senior IT Specialist interview questions
A Senior IT Specialist was asked 1w ago
Q. What is canvas in front end development?
Ans. 

Canvas is an HTML element used for drawing graphics via scripting, typically with JavaScript.

  • Canvas is defined using the <canvas> tag in HTML.

  • It allows for dynamic, scriptable rendering of 2D shapes and bitmap images.

  • Commonly used for games, visualizations, and animations.

  • The drawing is done using JavaScript methods like fillRect(), strokeRect(), and drawImage().

  • Example: Creating a simple game like Snake or ...

View all Senior IT Specialist interview questions
A Senior IT Specialist was asked 1w ago
Q. What are events in JavaScript?
Ans. 

Events in JavaScript are actions or occurrences that happen in the browser, allowing interaction with the user or the system.

  • Events can be user-initiated, like clicks or key presses. Example: `element.addEventListener('click', function() { ... });`

  • They can also be system-generated, such as loading a page or resizing a window. Example: `window.addEventListener('resize', function() { ... });`

  • Events can be captured d...

View all Senior IT Specialist interview questions
Are these interview questions helpful?
A Senior IT Specialist was asked 1w ago
Q. What is map()?
Ans. 

The map() function applies a given function to each item in an iterable, returning a new iterable with the results.

  • Used in functional programming to transform data.

  • Example: map(lambda x: x**2, [1, 2, 3]) returns [1, 4, 9].

  • Can be used with lists, tuples, and other iterables.

  • Often used for data processing and cleaning tasks.

View all Senior IT Specialist interview questions
A Junior Information Technology Specialist was asked 1w ago
Q. Explain the concepts of OOPS.
Ans. 

OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

  • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A class 'Car' with properties like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism to create a new class from an existing class, inheriting its properties and meth...

View all Junior Information Technology Specialist interview questions
A Junior Information Technology Specialist was asked 1w ago
Q. What is JDK?
Ans. 

JDK, or Java Development Kit, is a software development environment for developing Java applications.

  • Includes tools like the Java compiler (javac) and Java Runtime Environment (JRE).

  • Provides libraries and APIs for building Java applications.

  • Supports various development environments, such as Eclipse and IntelliJ IDEA.

  • Example: JDK 8 introduced features like lambda expressions and the Stream API.

View all Junior Information Technology Specialist interview questions

Ethnotech Academic Solutions Interview Experiences

27 interviews found

SME Interview Questions & Answers

user image Anonymous

posted on 14 Feb 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(13 Questions)

  • Q1. To Check The Proficiency Of Technical Knowledge About The Skill Sets and Skills Implementation Queries According To Our Skills And Skill Sets .
  • Q2. What is HTML?. Why It is Used?
  • Ans. 

    HTML is a markup language used for creating and structuring web pages.

    • HTML stands for HyperText Markup Language.

    • It is used to create the structure and content of web pages.

    • HTML uses tags to define elements such as headings, paragraphs, images, links, etc.

    • Example: <h1>This is a heading</h1>

    • Example: <p>This is a paragraph</p>

  • Answered by AI
  • Q3. What is Java and its Applications in the IT industry?
  • Ans. 

    Java is a popular programming language used in various IT industries for developing web, mobile, and desktop applications.

    • Java is an object-oriented language that is platform-independent.

    • It is used for developing web applications, mobile applications, desktop applications, and games.

    • Java is widely used in the development of enterprise-level applications.

    • It is used in the development of Android applications.

    • Java is also...

  • Answered by AI
  • Q4. What is the Difference between static and dynamic webpage?. What is its applications in web development?
  • Ans. 

    Static webpages are fixed and display the same content to all users, while dynamic webpages can change content based on user interactions.

    • Static webpages are faster to load and easier to create, but lack interactivity.

    • Dynamic webpages can provide personalized content and interactive features, but are more complex to develop.

    • Static webpages are suitable for simple websites with little need for user interaction, while dy...

  • Answered by AI
  • Q5. What is DHTML? What is the Acronym of the same?
  • Ans. 

    DHTML stands for Dynamic HTML. It is a combination of HTML, CSS, and JavaScript to create interactive and dynamic web pages.

    • DHTML allows for elements on a web page to change dynamically without needing to reload the entire page

    • It is achieved by using JavaScript to manipulate the Document Object Model (DOM)

    • Common examples of DHTML effects include dropdown menus, image rollovers, and animations

  • Answered by AI
  • Q6. What is SQL & Name The TCL Commands?
  • Ans. 

    SQL is a programming language used to manage and manipulate relational databases. TCL commands include COMMIT, ROLLBACK, and SAVEPOINT.

    • SQL stands for Structured Query Language and is used to manage and manipulate relational databases.

    • TCL (Transaction Control Language) commands are used to manage transactions in SQL.

    • Examples of TCL commands include COMMIT, ROLLBACK, and SAVEPOINT.

  • Answered by AI
  • Q7. Name The DDL Commands and its applications?
  • Ans. 

    DDL commands are used to create, modify, and delete database objects.

    • CREATE: used to create a new database object such as a table, view, or index

    • ALTER: used to modify the structure of an existing database object

    • DROP: used to delete an existing database object

    • TRUNCATE: used to delete all data from a table without deleting the table itself

    • RENAME: used to rename an existing database object

    • GRANT: used to grant privileges t...

  • Answered by AI
  • Q8. What is Pl/SQL?. Name its Applications?
  • Ans. 

    PL/SQL is a procedural language designed specifically for the Oracle Database management system.

    • PL/SQL stands for Procedural Language/Structured Query Language.

    • It is used to create stored procedures, functions, triggers, and packages in Oracle Database.

    • PL/SQL is used for data manipulation, transaction control, and database operations.

    • Applications of PL/SQL include data warehousing, e-commerce, and enterprise resource p...

  • Answered by AI
  • Q9. Why is C programming is called as mother of the programming language?
  • Ans. 

    C programming is called the mother of programming languages due to its influence on modern programming languages.

    • C programming language was developed in the 1970s and was the first high-level programming language to allow direct access to computer hardware.

    • Many modern programming languages such as Java, Python, and C++ have borrowed syntax and features from C.

    • C programming language is still widely used today in operati...

  • Answered by AI
  • Q10. Is java programming language, a front end tool or not?
  • Ans. 

    Java is not a front-end tool.

    • Java is a general-purpose programming language used for developing backend applications.

    • It is used for developing server-side applications, desktop applications, and Android mobile applications.

    • Java can be used for developing front-end applications, but it is not a front-end tool.

    • Front-end tools include HTML, CSS, and JavaScript.

  • Answered by AI
  • Q11. Name the front end tools in web designing and development?
  • Ans. 

    Front end tools in web designing and development include HTML, CSS, JavaScript, and various frameworks and libraries.

    • HTML: used for creating the structure and content of web pages

    • CSS: used for styling and layout of web pages

    • JavaScript: used for adding interactivity and dynamic functionality to web pages

    • Frameworks and libraries: such as React, Angular, and Vue.js, used for building complex web applications

    • Examples: Boot...

  • Answered by AI
  • Q12. Name the database tools used for website designing?
  • Ans. 

    Database tools commonly used for website designing include MySQL, MongoDB, and PostgreSQL.

    • MySQL is a popular open-source relational database management system.

    • MongoDB is a NoSQL database that is often used for handling large amounts of unstructured data.

    • PostgreSQL is another open-source relational database management system that is known for its stability and reliability.

    • Other database tools that may be used for websit...

  • Answered by AI
  • Q13. Seminar Session On HTML 5 Concepts (Basics) For 1/2 hr for the entire team and management too.

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent Place To Get Nurtured, Nourish and Growth Ur Talent and Implement It Too.
More Concentration On Ur Skills and Skills Development Process Through Ur Talent and Interest To Be Learn and To be active and Aspirant to learn more and new skills and new technologies with free training program and certifications for the its trainers and team mates too.
Certificates are from Pearson Education and Microsoft Team US.. Many Certifications are Provided For its Trainers For Upskill Technologies and others Too.
Very Few are Specified here due to the lack of space and memory allocations constraints too.
Former SME (Cyber Security and Forsenic Concepts) of EthnoTech Academic Solutions Pvt Ltd Uttarahalli RR Nagar Bengaluru Karnataka India.
Was Executing As SME Cyber Security and Forsenic Concepts for EDP Program For The Same and was handling Pearson certificate of the same subject for ongoing college students (internship program)
A Unit of Sbjit College of Engineering.
A Best Team and Team Players From The Same Company to nurture, flourish and grow and shine urself, ur talent and ur team and management too. It's According to my experience and expertise experience for the same position excecuted for the same company too.
Am happy and feel very Blissful to share and feel to you with your team now.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. What is python?
  • Q2. Why nowdays python is so popular?
  • Q3. What is AI?
  • Q4. What is ML?
  • Q5. Who is the father of AI?
  • Q6. What is difference b/w programming languages and technologies?
  • Q7. Who has developed java?
  • Q8. Why java is called platform independent?
  • Q9. How do you know our company?
  • Q10. Can you tell me little about yourself?
  • Q11. What are your strength and weakness?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. How will you host static web page in cloud?
  • Q2. What is data Analysis?
  • Q3. What is LLM?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. About your carrier details
  • Q2. Most likely About your Domain
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. What is the routing process?
  • Ans. 

    The routing process determines the best path for data packets to travel across networks.

    • Routing involves analyzing the destination IP address of a packet.

    • Routers use routing tables to decide the best path for data.

    • Dynamic routing protocols (e.g., OSPF, BGP) adjust routes based on network changes.

    • Static routes can be manually configured for specific paths.

    • Example: A packet destined for 192.168.1.1 is routed through the ...

  • Answered by AI
  • Q2. What are the connections and operations involved in CCTV systems?
  • Ans. 

    CCTV systems involve cameras, recording devices, and monitors for surveillance and security operations.

    • Cameras capture video footage, which can be analog or digital.

    • DVR/NVR devices store recorded footage; DVR for analog, NVR for IP cameras.

    • Monitors display live feeds or recorded footage for real-time surveillance.

    • Cabling connects cameras to recording devices; coaxial for analog, Ethernet for IP.

    • Remote access allows use...

  • Answered by AI
  • Q3. What is the process for configuring a DVR (Digital Video Recorder)?
  • Ans. 

    Configuring a DVR involves setting up hardware, connecting to a network, and configuring recording settings.

    • 1. Connect the DVR to a power source and TV using HDMI or RCA cables.

    • 2. Connect the DVR to the internet via Ethernet or Wi-Fi for remote access.

    • 3. Access the DVR's settings menu using the remote control.

    • 4. Configure recording settings, such as schedule and resolution.

    • 5. Set up user accounts for remote viewing on ...

  • Answered by AI

Trainer Interview Questions & Answers

user image Anonymous

posted on 9 Apr 2025

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

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

  • Q1. What is css?
  • Ans. 

    CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of a document written in HTML or XML.

    • CSS controls layout, colors, fonts, and overall visual appearance of web pages.

    • It allows for responsive design, adapting layouts for different screen sizes (e.g., media queries).

    • CSS can be applied inline, internally within a <style> tag, or externally via linked stylesheets.

    • Example of a CSS...

  • Answered by AI
  • Q2. Why need js in web development?
  • Ans. 

    JavaScript is essential for creating interactive, dynamic, and responsive web applications, enhancing user experience significantly.

    • Enables dynamic content updates without reloading the page (e.g., AJAX calls).

    • Facilitates client-side validation of forms, improving user experience.

    • Allows for the creation of interactive elements like sliders, modals, and dropdowns.

    • Supports asynchronous programming with Promises and async...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. What are ur strength
  • Ans. 

    My strengths include adaptability, strong communication skills, and a commitment to continuous learning, which enhance my effectiveness in any role.

    • Adaptability: I quickly adjust to new environments and challenges, as demonstrated when I successfully transitioned to a remote work setup during the pandemic.

    • Strong Communication Skills: I effectively convey complex information, evidenced by my role in presenting research ...

  • Answered by AI
  • Q2. Technical questions like what are oops encapsulation
  • Q3. What are data structures
  • Ans. 

    Data structures are organized formats for storing and managing data efficiently for various operations.

    • Arrays: Fixed-size collections of elements, e.g., [1, 2, 3].

    • Linked Lists: Collections of nodes, where each node points to the next, e.g., 1 -> 2 -> 3.

    • Stacks: Last-in, first-out structures, e.g., function call stack.

    • Queues: First-in, first-out structures, e.g., print job queue.

    • Trees: Hierarchical structures, e.g....

  • Answered by AI
  • Q4. Explain the difference between compiled and interpreted languages.
  • Ans. 

    Compiled languages convert code to machine language before execution, while interpreted languages execute code line-by-line at runtime.

    • Compiled languages (e.g., C, C++) translate entire code into machine code before execution.

    • Interpreted languages (e.g., Python, JavaScript) execute code line-by-line, translating it on the fly.

    • Compiled programs generally run faster due to pre-translation, while interpreted programs offe...

  • Answered by AI
  • Q5. What is the time complexity of binary search?
  • Ans. 

    Binary search has a time complexity of O(log n), making it efficient for searching in sorted arrays.

    • Binary search divides the search interval in half each time.

    • It requires a sorted array to function correctly.

    • For example, searching for a number in an array of 1000 elements takes at most 10 comparisons (log2(1000) ≈ 10).

    • In contrast, linear search would take up to 1000 comparisons in the worst case.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a best company will have good work culture and will have good opportunities

Technical Trainer Interview Questions & Answers

user image Ajeet Mishra - {606}

posted on 17 May 2025

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

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Introduction , technical and coding
  • Q2. Share you experience
  • Ans. 

    I have extensive experience in technical training, focusing on software development and IT skills for diverse audiences.

    • Conducted workshops on programming languages like Python and Java, enhancing participants' coding skills.

    • Developed training materials and online courses, improving accessibility for remote learners.

    • Facilitated hands-on labs where trainees applied concepts in real-world scenarios, boosting retention.

    • Co...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is the difference between em, rem, and px?
  • Ans. 

    em, rem, and px are units of measurement in CSS for font sizes and layout, each with different scaling behaviors.

    • px (pixels) is an absolute unit; 1px is 1 pixel on the screen. Example: font-size: 16px;

    • em is a relative unit based on the font size of the element. Example: if the font-size is 16px, 1em = 16px.

    • rem (root em) is relative to the root element's font size (usually <html>). Example: if root font-size is 16...

  • Answered by AI
  • Q2. How do you handle SQL Injection in JDBC
  • Ans. 

    SQL Injection in JDBC can be prevented by using prepared statements and parameterized queries to ensure data safety.

    • Use Prepared Statements: Prepared statements separate SQL logic from data, preventing attackers from injecting malicious SQL. Example: `PreparedStatement pstmt = conn.prepareStatement("SELECT * FROM users WHERE username = ?");`

    • Parameterized Queries: Always use parameterized queries to bind user input to S...

  • Answered by AI
  • Q3. Walk me through your CV?
  • Ans. 

    Experienced Technical Subject Matter Expert with a strong background in software development and project management.

    • Over 10 years of experience in software development, specializing in cloud technologies.

    • Led a team of developers in a successful migration project to AWS, improving system performance by 30%.

    • Implemented Agile methodologies, resulting in a 25% increase in project delivery speed.

    • Conducted training sessions ...

  • Answered by AI
  • Q4. What are the main differences between ArrayList and LinkedList?
  • Ans. 

    ArrayList and LinkedList are two different implementations of the List interface in Java, each with unique performance characteristics.

    • ArrayList is backed by a dynamic array, while LinkedList is backed by a doubly linked list.

    • ArrayList provides faster random access (O(1)) due to its array structure, e.g., list.get(index).

    • LinkedList offers faster insertions and deletions (O(1)) at both ends, e.g., list.addFirst(element)...

  • Answered by AI

Interview Questions & Answers

user image AKSHAY PATIL

posted on 16 May 2025

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

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Can you introduce yourself?
  • Q2. What technologies are you proficient in, and then questions related to that
  • Q3. What work experience do you have?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Had to have atleast confidence in their own technology's.
  • Q2. If python: questions on python basics.. like basic dsa. And all

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ethnotech Academic Solutions ?
Ask anonymously on communities.

Ethnotech Academic Solutions Interview FAQs

How many rounds are there in Ethnotech Academic Solutions interview?
Ethnotech Academic Solutions interview process usually has 2 rounds. The most common rounds in the Ethnotech Academic Solutions interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Ethnotech Academic Solutions 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 Ethnotech Academic Solutions . The most common topics and skills that interviewers at Ethnotech Academic Solutions expect are Subject Matter Expertise, Cloud Computing, Reconciliation, Training and Accounts Receivable.
What are the top questions asked in Ethnotech Academic Solutions interview?

Some of the top questions asked at the Ethnotech Academic Solutions interview -

  1. What is the Difference between static and dynamic webpage?. What is its applica...read more
  2. Why is C programming is called as mother of the programming langua...read more
  3. What is Java and its Applications in the IT indust...read more
How long is the Ethnotech Academic Solutions interview process?

The duration of Ethnotech Academic Solutions 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

4.6/5

based on 30 interview experiences

Difficulty level

Easy 7%
Moderate 89%
Hard 4%

Duration

Less than 2 weeks 74%
2-4 weeks 26%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Ethnotech Academic Solutions Reviews and Ratings

based on 68 reviews

4.3/5

Rating in categories

4.4

Skill development

4.2

Work-life balance

3.8

Salary

4.1

Job security

4.0

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 68 Reviews and Ratings
SME
41 salaries
unlock blur

₹2.7 L/yr - ₹8 L/yr

Campus Manager
5 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Trainer
4 salaries
unlock blur

₹2.7 L/yr - ₹5 L/yr

Technical Trainer
4 salaries
unlock blur

₹3.6 L/yr - ₹4.5 L/yr

System Administrator
3 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Ethnotech Academic Solutions with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview