Upload Button Icon Add office photos

Filter interviews by

ETHNUS CONSULTANCY SERVICES Interview Questions, Process, and Tips

Updated 29 Nov 2024

Top ETHNUS CONSULTANCY SERVICES Interview Questions and Answers

ETHNUS CONSULTANCY SERVICES Interview Experiences

Popular Designations

5 interviews found

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

I applied via Job Fair and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions coding questions softskills

Round 2 - Technical 

(4 Questions)

  • Q1. What is python?
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is interpreted, not compiled

    • It supports multiple programming paradigms like procedural, object-oriented, and functional programming

    • Python has a large standard library and a thriving community for support and resources

  • Answered by AI
  • Q2. What are the datatypes
  • Ans. 

    Datatypes are classifications of data items that specify which type of value a variable can hold.

    • Datatypes include integers, floating point numbers, characters, strings, and booleans.

    • Examples: int (for integers), float (for floating point numbers), char (for characters), string (for strings), bool (for booleans).

  • Answered by AI
  • Q3. Difference between list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified, tuple cannot

    • List uses square brackets [], tuple uses parentheses ()

    • List is slower than tuple for iteration

    • List is used for homogeneous elements, tuple for heterogeneous elements

  • Answered by AI
  • Q4. What is oops concept
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs focuses on creating objects that interact with each other to solve a problem

    • Key concepts include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation: Bundling data and methods that operate on the data into a single unit

    • Inher...

  • Answered by AI

Skills evaluated in this interview

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Business Head Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Get to know, achievement etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Tell me about your self, market knowledge
  • Ans. 

    I have extensive market knowledge gained through years of experience in various industries.

    • I have worked in the business industry for over 10 years, gaining valuable insights into market trends and consumer behavior.

    • I have successfully launched multiple products and services, utilizing market research and analysis to drive strategic decision-making.

    • I stay updated on industry news and developments, attending conferences...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Long process, seems clueless about market, Ghosted after 3-4 round of interviews

Business Head Interview Questions asked at other Companies

Q1. What are the realtime incidences where you have been able to show the entrepreneurial face of your personality in your professional journey so far ? What were the situation and what was your reaction and end results ?
View answer (1)

Engineer Trainee Interview Questions & Answers

user image K Srijan Rai

posted on 4 Sep 2023

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

(1 Question)

  • Q1. Tell me bout your self
Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about your self

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Verbal, reasoning, quantitative aptitude test

Round 3 - Group Discussion 

Women empowerment in India, about social media

Round 4 - HR 

(2 Questions)

  • Q1. Where do you see yourself in next 5y?
  • Q2. What you know about educational industry
  • Ans. 

    The educational industry involves institutions and organizations that provide education and training to individuals.

    • It includes schools, colleges, universities, vocational training centers, and online learning platforms.

    • The industry is constantly evolving with the introduction of new technologies and teaching methods.

    • There is a growing demand for personalized and flexible learning options.

    • The industry is heavily regula...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are passionate about teaching , you can go for this blindly

Technical Trainer Interview Questions asked at other Companies

Q1. Return type of pointer in C, type casting in java (as i worked in java), sorting in DS, linked list reversal logic
View answer (2)

ETHNUS CONSULTANCY SERVICES interview questions for popular designations

 Engineer Trainee

 (2)

 Business Head

 (1)

 Technical Trainer

 (1)

 Trainer

 (1)

Trainer Interview Questions & Answers

user image Anonymous

posted on 3 Sep 2022

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 - Demo 

(1 Question)

  • Q1. Java technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Key concepts of java inheritance oops abstraction

Trainer Interview Questions asked at other Companies

Q1. Many times you know that customer will be angry or rude if you give the correct solution then how to manage for customer satisfaction?
View answer (2)

Interview questions from similar companies

I appeared for an interview in Jul 2020.

Interview Questionnaire 

4 Questions

  • Q1. 1 if we call finish from oncreate in an activity in android. Will it call onresume and other lifecycle functions before ondestroy.
  • Ans. 

    No, calling finish() in onCreate() will not call onResume() or other lifecycle functions before onDestroy().

    • Calling finish() in onCreate() will immediately destroy the activity without calling any other lifecycle methods.

    • If you want to finish an activity after it has been created and resumed, you should call finish() in onPause() or onStop().

    • It is generally not recommended to call finish() in onCreate() as it can lead

  • Answered by AI
  • Q2. 2 Explain recyclerview and its corner cases.
  • Ans. 

    RecyclerView is a flexible view for providing a limited window into a large data set.

    • RecyclerView is used to display large sets of data efficiently

    • It uses a ViewHolder pattern to recycle views

    • Corner cases include handling empty data sets and updating data dynamically

  • Answered by AI
  • Q3. 3 Define communication between acticity and fragment.
  • Ans. 

    Communication between activity and fragment is done through interfaces.

    • Activity implements an interface and passes it to the fragment

    • Fragment can then call methods of the interface to communicate with the activity

    • This allows for communication between the two components without tight coupling

  • Answered by AI
  • Q4. 4 find second largest element in an array.
  • Ans. 

    Find the second largest element in an array of strings.

    • Sort the array in descending order and return the second element.

    • Iterate through the array and keep track of the largest and second largest elements.

    • Use a priority queue to find the second largest element.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Recise data structures basic codes and relevant technology interview questions.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What do you think about the online education system in India?
  • Ans. 

    Online education system in India has great potential but needs improvement.

    • Online education has become more popular due to the pandemic.

    • There is a lack of infrastructure and resources for online education in rural areas.

    • Online education can be more affordable and accessible than traditional education.

    • There is a need for better quality control and accreditation for online courses.

    • Online education can provide opportuniti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always select real life examples that display key hiring traits.

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy aptitude questions based on logical reasoning and basic maths.

Round 2 - Coding Test 

Easy logic-based question based on arrays and strings with some javascript output-based questions.

Round 3 - Coding Test 

Discussion about the projects that I made in college and the tech stack I know.
1 basic array/string-based problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - Very easy to crack as no extensive DSA knowledge is required, basic logical reasoning and coding skills are enough.
PS: This was in 2015 but as per my knowledge the process is still the same.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic apptitude and coding is asked coding is very easy u can use any language like c python java there is plenty of time to finish the test

Round 2 - HR 

(1 Question)

  • Q1. About yourself,projects details,any further question

Intern Interview Questions & Answers

iamneo user image Anonymous

posted on 27 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic dsa question alone asked

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages such as Java, Python, and C++

  • Answered by AI
  • Q2. How strong you lies with the skills mentioned in resume

ETHNUS CONSULTANCY SERVICES Interview FAQs

How many rounds are there in ETHNUS CONSULTANCY SERVICES interview?
ETHNUS CONSULTANCY SERVICES interview process usually has 2-3 rounds. The most common rounds in the ETHNUS CONSULTANCY SERVICES interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
How to prepare for ETHNUS CONSULTANCY SERVICES 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 ETHNUS CONSULTANCY SERVICES. The most common topics and skills that interviewers at ETHNUS CONSULTANCY SERVICES expect are CRM, SAN, SMS, Cloud Computing and SOC.
What are the top questions asked in ETHNUS CONSULTANCY SERVICES interview?

Some of the top questions asked at the ETHNUS CONSULTANCY SERVICES interview -

  1. what you know about educational indus...read more
  2. what are the dataty...read more
  3. what is pyth...read more

Tell us how to improve this page.

ETHNUS CONSULTANCY SERVICES Interview Process

based on 6 interviews

Interview experience

3.2
  
Average
View more

Interview Questions from Similar Companies

Z X Learning Interview Questions
4.4
 • 44 Interviews
Zeus Learning Interview Questions
3.3
 • 35 Interviews
Adda 247 Interview Questions
3.2
 • 32 Interviews
Prepca Eduserv Interview Questions
4.1
 • 20 Interviews
InternEzy Interview Questions
4.9
 • 19 Interviews
Airblack Interview Questions
4.2
 • 17 Interviews
iamneo Interview Questions
3.7
 • 16 Interviews
View all

ETHNUS CONSULTANCY SERVICES Reviews and Ratings

based on 54 reviews

3.6/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.4

Salary

3.3

Job security

3.5

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 54 Reviews and Ratings
Senior Executive
6 salaries
unlock blur

₹3.2 L/yr - ₹4 L/yr

Assistant Manager
5 salaries
unlock blur

₹5.3 L/yr - ₹7.4 L/yr

Aptitude Trainer
5 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

Technical Trainer
5 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Operations Executive
5 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Explore more salaries
Compare ETHNUS CONSULTANCY SERVICES with

Z X Learning

4.4
Compare

InternEzy

4.9
Compare

Schoolnet India

4.0
Compare

Adda 247

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