Upload Button Icon Add office photos

Filter interviews by

Imriel Interview Questions and Answers

Updated 16 Oct 2024
Popular Designations

10 Interview questions

A Software Engineer was asked 8mo ago
Q. Tell me about web APIs.
Ans. 

Web API is a set of rules and protocols that allow different software applications to communicate with each other over the internet.

  • Web API allows different software systems to interact with each other through a set of rules and protocols.

  • It enables communication between different applications over the internet.

  • Web API is commonly used in web development to allow websites to interact with external services or data...

View all Software Engineer interview questions
A Senior Software Engineer was asked
Q. How will you manage multiple tasks?
Ans. 

I prioritize tasks based on urgency and importance, and use time management techniques to ensure efficient completion.

  • Create a to-do list and prioritize tasks based on urgency and importance

  • Break down larger tasks into smaller, manageable chunks

  • Use time management techniques such as the Pomodoro technique to stay focused and efficient

  • Regularly reassess priorities and adjust the to-do list as needed

  • Communicate with...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is the use of the startup class?
Ans. 

Startup class is used to configure services and middleware for an application.

  • Startup class is a part of ASP.NET Core framework.

  • It is used to configure the application's request pipeline.

  • It includes methods for configuring services, middleware, and the application's request handling pipeline.

  • The ConfigureServices method is used to add services to the dependency injection container.

  • The Configure method is used to a...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain middleware in ASP.NET Core.
Ans. 

Middleware in ASP.NET Core is a software component that sits between the web server and the application and handles requests and responses.

  • Middleware is a pipeline of components that can be added to the application's request processing pipeline.

  • Each middleware component can handle a specific aspect of the request/response cycle, such as authentication, logging, or caching.

  • Middleware can be added to the pipeline us...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain filters in ASP.NET Core.
Ans. 

Filters in ASP.NET Core are used to execute code before or after an action method is executed.

  • Filters can be used to perform authentication, logging, caching, and exception handling.

  • There are four types of filters: Authorization filters, Action filters, Result filters, and Exception filters.

  • Filters can be applied globally, to a controller, or to a specific action method.

  • Filters can be added using attributes or by ...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain Action filters.
Ans. 

Action filters are used in ASP.NET MVC to execute code before or after an action method is called.

  • Action filters are attributes that can be applied to a controller action method.

  • They can be used to perform tasks such as authentication, logging, and caching.

  • There are four types of action filters: Authorization filters, Action filters, Result filters, and Exception filters.

  • Examples of action filters include the [Aut...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Explain session storage in core.
Ans. 

Session storage in core is a way to store data temporarily on the client side.

  • Session storage is a type of web storage that allows data to be stored on the client side for the duration of a session.

  • Data stored in session storage is only accessible within the same window or tab that created it.

  • Session storage is useful for storing temporary data such as user preferences or form data.

  • Session storage can be accessed ...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Explain dependency injection service lifetime.
Ans. 

Dependency injection service lifetime determines how long a service instance will be available for use.

  • Service lifetime can be scoped to a single request, a session, or the entire application

  • Transient lifetime creates a new instance every time it is requested

  • Singleton lifetime creates a single instance for the entire application

  • Scoped lifetime creates a single instance for each request or session

  • Lifetime can affec...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. What is keep() and Peak()
Ans. 

keep() and peak() are not standard functions in programming. They may refer to specific functions in a particular language or library.

  • keep() and peak() may have different meanings depending on the context in which they are used.

  • Without more information about the specific language or library being used, it is difficult to provide a more detailed answer.

  • It is important to clarify the context of the question before a...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Different functions in SQL server
Ans. 

SQL server has various functions for data manipulation and retrieval.

  • Aggregate functions like SUM, AVG, COUNT, MAX, MIN

  • String functions like CONCAT, SUBSTRING, REPLACE

  • Date and time functions like GETDATE, DATEADD, DATEDIFF

  • Conversion functions like CAST, CONVERT

  • Logical functions like CASE, IIF

View all Senior Software Engineer interview questions

Imriel Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Feb 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 

(9 Questions)

  • Q1. Explain Dependency injection service lifetime
  • Ans. 

    Dependency injection service lifetime determines how long a service instance will be available for use.

    • Service lifetime can be scoped to a single request, a session, or the entire application

    • Transient lifetime creates a new instance every time it is requested

    • Singleton lifetime creates a single instance for the entire application

    • Scoped lifetime creates a single instance for each request or session

    • Lifetime can affect per...

  • Answered by AI
  • Q2. Explain middleware in asp.net core
  • Ans. 

    Middleware in ASP.NET Core is a software component that sits between the web server and the application and handles requests and responses.

    • Middleware is a pipeline of components that can be added to the application's request processing pipeline.

    • Each middleware component can handle a specific aspect of the request/response cycle, such as authentication, logging, or caching.

    • Middleware can be added to the pipeline using t...

  • Answered by AI
  • Q3. Different functions in SQL server
  • Ans. 

    SQL server has various functions for data manipulation and retrieval.

    • Aggregate functions like SUM, AVG, COUNT, MAX, MIN

    • String functions like CONCAT, SUBSTRING, REPLACE

    • Date and time functions like GETDATE, DATEADD, DATEDIFF

    • Conversion functions like CAST, CONVERT

    • Logical functions like CASE, IIF

  • Answered by AI
  • Q4. What is the use of startup class
  • Ans. 

    Startup class is used to configure services and middleware for an application.

    • Startup class is a part of ASP.NET Core framework.

    • It is used to configure the application's request pipeline.

    • It includes methods for configuring services, middleware, and the application's request handling pipeline.

    • The ConfigureServices method is used to add services to the dependency injection container.

    • The Configure method is used to add mi...

  • Answered by AI
  • Q5. Explain filters in asp.net core
  • Ans. 

    Filters in ASP.NET Core are used to execute code before or after an action method is executed.

    • Filters can be used to perform authentication, logging, caching, and exception handling.

    • There are four types of filters: Authorization filters, Action filters, Result filters, and Exception filters.

    • Filters can be applied globally, to a controller, or to a specific action method.

    • Filters can be added using attributes or by imple...

  • Answered by AI
  • Q6. Explain Action filters
  • Ans. 

    Action filters are used in ASP.NET MVC to execute code before or after an action method is called.

    • Action filters are attributes that can be applied to a controller action method.

    • They can be used to perform tasks such as authentication, logging, and caching.

    • There are four types of action filters: Authorization filters, Action filters, Result filters, and Exception filters.

    • Examples of action filters include the [Authoriz...

  • Answered by AI
  • Q7. What is keep() and Peak()
  • Ans. 

    keep() and peak() are not standard functions in programming. They may refer to specific functions in a particular language or library.

    • keep() and peak() may have different meanings depending on the context in which they are used.

    • Without more information about the specific language or library being used, it is difficult to provide a more detailed answer.

    • It is important to clarify the context of the question before attemp...

  • Answered by AI
  • Q8. Explain session storage in core
  • Ans. 

    Session storage in core is a way to store data temporarily on the client side.

    • Session storage is a type of web storage that allows data to be stored on the client side for the duration of a session.

    • Data stored in session storage is only accessible within the same window or tab that created it.

    • Session storage is useful for storing temporary data such as user preferences or form data.

    • Session storage can be accessed using...

  • Answered by AI
  • Q9. Angular question and also SQL server questions. Devops azure questions
Round 3 - HR 

(2 Questions)

  • Q1. What will you do when your co worker is sick and his task is urgent
  • Q2. How will you manage multiple task
  • Ans. 

    I prioritize tasks based on urgency and importance, and use time management techniques to ensure efficient completion.

    • Create a to-do list and prioritize tasks based on urgency and importance

    • Break down larger tasks into smaller, manageable chunks

    • Use time management techniques such as the Pomodoro technique to stay focused and efficient

    • Regularly reassess priorities and adjust the to-do list as needed

    • Communicate with team...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Imriel Senior Software Engineer interview:
  • Asp.net core
  • MVC
  • Angular
  • SQL Server
  • Azure
  • Devops
Interview preparation tips for other job seekers - Keep it real and be honest. Explain with example rather than just reading out the answers

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about web api
  • Q2. Tell me about oops
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

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

    • Inheritance: allows new classes to be created based on existing classes

    • Polymorphism: the ability for objects to be treated as instances of t...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Swap number without using third
  • Q2. Reverse string without using inbuilt function

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Imriel?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is Company payroll Process
  • Ans. 

    Company payroll process is the system used to manage employee compensation and benefits.

    • Payroll process includes calculating employee salaries, taxes, and deductions

    • It also involves managing employee benefits such as health insurance and retirement plans

    • Payroll process can be done in-house or outsourced to a third-party provider

    • It is important to ensure compliance with labor laws and regulations

    • Payroll process can be a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My Team members is very good

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Coding parts, tricky
  • Q2. Not answered

Interview Preparation Tips

Interview preparation tips for other job seekers - Not good experience bad attitude of interviewer joined late and behavea as he is working in google... Lol

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting
Are these interview questions helpful?

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. There were three rounds first is written round where you will get 3 section Aptitude+essay+technical (pseudo code) then second round is technical round where they will ask question related to your final ye...

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on your written exam and technical interview for which you should know about your project because project is very important and if u are from cs background then focus on one coding language .
All the very best just be positive .

Interview Questionnaire 

5 Questions

  • Q1. Basic telephone round probably around 3 times
  • Q2. About ourself and past experience
  • Q3. And they really see if we are interested or not, nothing technical
  • Q4. Telephone technical interview
  • Q5. My role is pega developer so questions are on pega

Interview Preparation Tips

Round: Face to face technical
Experience: Asked each and every aspect in pega

I applied via Naukri.com and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Excel, Operations, supply chain

Interview Preparation Tips

Interview preparation tips for other job seekers - The process took a whole month. The waiting hours are long. Brush up on your skills and be confident. Lot of times they look at how well you answer and are trying to gauge how your mind works.

Imriel Interview FAQs

How many rounds are there in Imriel interview?
Imriel interview process usually has 2-3 rounds. The most common rounds in the Imriel interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Imriel interview?

Some of the top questions asked at the Imriel interview -

  1. How will you manage multiple t...read more
  2. What is the use of startup cl...read more
  3. Explain Dependency injection service lifet...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.7
 • 8.7k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Teleperformance Interview Questions
3.9
 • 2k Interviews
Mphasis Interview Questions
3.4
 • 848 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
View all

Imriel Reviews and Ratings

based on 3 reviews

3.1/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹3.3 L/yr - ₹7 L/yr

Principal Test Engineer
4 salaries
unlock blur

₹16 L/yr - ₹17.5 L/yr

Junior Software Engineer
3 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Senior IOS Developer
3 salaries
unlock blur

₹16 L/yr - ₹16 L/yr

Softwaretest Engineer
3 salaries
unlock blur

₹5.1 L/yr - ₹8 L/yr

Explore more salaries
Compare Imriel with

Accenture

3.7
Compare

Capgemini

3.7
Compare

HCLTech

3.5
Compare

Teleperformance

3.9
Compare
write
Share an Interview