Upload Button Icon Add office photos

Filter interviews by

Espouse Technology Interview Questions and Answers

Updated 28 Jun 2024

Espouse Technology Interview Experiences

Popular Designations

3 interviews found

DOT NET Developer Interview Questions & Answers

user image Sumukh Y Chavan

posted on 16 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of OOPs, SOLID Principles, etc
  • Q2. OOPs definition, 4 main features of OOPs and advantages. SOLID principles with exampales.
  • Ans. 

    OOPs is a programming paradigm that focuses on objects and their interactions. It has 4 main features and offers several advantages.

    • OOPs stands for Object-Oriented Programming.

    • The 4 main features of OOPs are encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation allows bundling of data and methods into a single unit (class).

    • Inheritance enables the creation of new classes by inheriting properties and be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is mainly focused on the basic concepts of OOPs, SOLID principles and such basics.

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (10)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General Aptitude and anayltic

Round 2 - Technical 

(2 Questions)

  • Q1. Regarding C,C++ coding
  • Q2. Testing Techibques

Senior Associate Software Engineer Interview Questions asked at other Companies

Q1. If you have 2-3 tasks in the plate how do you decide the priority?
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Feb 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 - Technical 

(3 Questions)

  • Q1. Very basic abap questions were asked For all entries criteria Data element vs domain Alv report basic questions
  • Q2. In the hr round, salary negotiation was done. Didn't get any hike. Normal discussion was done. Then hr asked me to submit the documents including payslips, offer letter email etc.
  • Q3. Ddic questions, smartforms, bdc. All were basics only

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare the basics. And be ready for salary negotiation

SAP Abap Consultant Interview Questions asked at other Companies

Q1. 1.what is ddic T-code 2. what is package 3.what are objects in se11 3.what is domain and data element 4.steps to create table 5.what are different types of views 5.what is lock objects 6.what is TMG and events in TMG 7.what is autorization ... read more
View answer (2)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Asda asdasdasdasd asd asda sda sd
  • Q2. Asdaasdasdas asd asda s asdas

Interview Preparation Tips

Interview preparation tips for other job seekers - asd
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

First there will be a topic given to you to write an article of length 300-400 words in 15 mins. This article writing is to check your knowledge of English language.
Then there is a 45 mins round test in which 40 questions will be asked.
20 Technical and 20 Programming.
The programming questions will be from C++, and you are required to choose the correct output of the given C++ program.
The technical aptitude questions were medium to hard.

Round 2 - Technical 

(1 Question)

  • Q1. It's a 1:30 hr round. In this part, there will be 4 coding questions from arrays topic which you can solve with any programming language you know. Along with this, you will have 2 questions from SQL and e...

Interview Preparation Tips

Interview preparation tips for other job seekers - Have some basic knowledge of C++ to answer aptitude questions.
Be heavily prepared for the technical aptitude part.
Learn some basic command of SQL.
Be prepared to face the medium level DSA questions from arrays.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Regression testing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to set up LSMW
  • Ans. 

    LSMW is a tool used to migrate data from legacy systems to SAP systems.

    • LSMW stands for Legacy System Migration Workbench

    • It is used to migrate data from non-SAP systems to SAP systems

    • LSMW uses batch input, direct input, BAPI, and IDoc methods for data migration

    • Steps to set up LSMW include creating a project, defining object attributes, mapping fields, converting data, and executing the migration

  • Answered by AI
  • Q2. How many ways we can maintain field selection in material master?
  • Ans. 

    Field selection in material master can be maintained in multiple ways.

    • Field selection can be maintained using transaction code OMS9.

    • Field selection can be maintained using material type configuration.

    • Field selection can be maintained using screen layout configuration.

    • Field selection can be maintained using user exit or BADI implementations.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tool related questions
  • Q2. Project related
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2023. There were 3 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 

(5 Questions)

  • Q1. 3 Basic DSA Questions
  • Q2. 1st Math based coding question
  • Ans. Can solve with normal loops and some if-else statements.
  • Answered Anonymously
  • Q3. 2nd String based
  • Ans. String manipulation and Traversal meanwhile keep tracking the max answer.
  • Answered Anonymously
  • Q4. 3rd Array Sorting Algorithm
  • Ans. 

    Quick Sort is a popular in-place sorting algorithm that uses divide and conquer approach.

    • Divide the array into two sub-arrays based on a pivot element

    • Recursively sort the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

    • Time complexity: O(nlogn) in average case and O(n^2) in worst case

    • Space complexity: O(logn)

    • Example: [5, 2, 9, 3, 7, 6, 8] -> [2, 3, 5, 6, 7, 8, 9]

  • Answered by AI
  • Q5. There was an Introduction too in starting.
Round 3 - HR 

(2 Questions)

  • Q1. Introduce Yourself
  • Ans. 

    I am a software enthusiast with a passion for coding and problem-solving.

    • I have a degree in Computer Science and Engineering.

    • I have experience in programming languages such as Java, Python, and C++.

    • I have worked on projects involving web development, data analysis, and machine learning.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q2. Why should I hire you?
  • Ans. 

    I am a quick learner with a passion for software development and a strong work ethic.

    • I have a solid understanding of programming concepts and experience with multiple programming languages.

    • I am a team player and enjoy collaborating with others to solve problems.

    • I am highly motivated and always strive to improve my skills and knowledge.

    • I have completed several projects on my own and am eager to apply my skills in a prof

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Keyideas Infotech Software Trainee interview:
  • DSA
  • Communication Skills
  • Algorithms
  • Core Java
  • Java
  • HTML
  • CSS
  • PHP
  • Javascript
  • Python
Interview preparation tips for other job seekers - Just revise some basic DSA and math logic based coding questions.

For HR, keep a smile on your face throughout the Interview.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Normal questions asked regarding day to day responsibilities of a project manager.
Round 2 - HR 

(1 Question)

  • Q1. Salary Negotiation

Espouse Technology Interview FAQs

How many rounds are there in Espouse Technology interview?
Espouse Technology interview process usually has 1-2 rounds. The most common rounds in the Espouse Technology interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Espouse Technology 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 Espouse Technology. The most common topics and skills that interviewers at Espouse Technology expect are OOPS, SAP FICO, SAP SD, Bapi and Consulting.
What are the top questions asked in Espouse Technology interview?

Some of the top questions asked at the Espouse Technology interview -

  1. OOPs definition, 4 main features of OOPs and advantages. SOLID principles with ...read more
  2. Very basic abap questions were asked For all entries criteria Data element vs d...read more
  3. Ddic questions, smartforms, bdc. All were basics o...read more

Tell us how to improve this page.

Espouse Technology Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 802 Interviews
View all

Espouse Technology Reviews and Ratings

based on 18 reviews

3.9/5

Rating in categories

3.6

Skill development

3.9

Work-life balance

3.2

Salary

3.8

Job security

3.8

Company culture

3.6

Promotions

3.1

Work satisfaction

Explore 18 Reviews and Ratings
SAP Abap Consultant
16 salaries
unlock blur

₹2.7 L/yr - ₹9 L/yr

SAP Fico Consultant
8 salaries
unlock blur

₹0.8 L/yr - ₹5 L/yr

DOT NET Developer
7 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

SAP SD Consultant
5 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

SAP MM Consultant
5 salaries
unlock blur

₹1.5 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Espouse Technology with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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