Upload Button Icon Add office photos

Filter interviews by

Imriel Interview Questions, Process, and Tips

Updated 16 Oct 2024

Top Imriel Interview Questions and Answers

View all 12 questions

Imriel Interview Experiences

Popular Designations

2 interviews found

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
  • 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 sour...

  • Answered by AI
  • 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
  • Ans. 

    Swap two numbers without using a third variable

    • Use bitwise XOR operation to swap two numbers without using a third variable

    • Example: a = 5, b = 10. a ^= b; b ^= a; a ^= b; Now a = 10, b = 5

  • Answered by AI
  • Q2. Reverse string without using inbuilt function
  • Ans. 

    Iterate through the string from end to beginning and store characters in a new array.

    • Create an empty array to store the reversed string.

    • Iterate through the original string from end to beginning and add each character to the new array.

    • Join the characters in the new array to form the reversed string.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)
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

Top Imriel Senior Software Engineer Interview Questions and Answers

Q1. What is the use of startup class
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Interview questions from similar companies

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 

(5 Questions)

  • Q1. Can you share your work experience?
  • Q2. What tools have you used to perform finite element analysis (FEA)?
  • Q3. What is your basic knowledge of the strength of materials and finite element method (FEM)?
  • Q4. What are the shear force distribution (SFD) and bending moment diagram (BMD) for cantilever beams made of two different materials that are subjected to a point load P at the free end?
  • Q5. What is the purpose of static analysis?

Interview Preparation Tips

Interview preparation tips for other job seekers - We should have a deep understanding of the strength of materials and finite element method (FEM), and we should be able to explain what we have accomplished and the reasons behind our actions in previous companies.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - HR 

(2 Questions)

  • Q1. What was your experience with your last employer?
  • Q2. What were your roles and responsibilities in your last position?
Round 2 - Aptitude Test 

This was an assessment of skills and abilities.

Round 3 - Technical 

(1 Question)

  • Q1. What technical skills do you possess, especially in relation to the tools and technologies utilized by your previous employer?
Round 4 - Technical 

(1 Question)

  • Q1. What is your experience with the tools used by HCLTech for this particular requirement?
Round 5 - One-on-one 

(1 Question)

  • Q1. This was a face-to-face round that included some technical, aptitude, and behavioural questions.
Round 6 - HR 

(2 Questions)

  • Q1. Business strategy case study questions were asked during the final round with the hiring manager.
  • Q2. Salary negotiation process and the final offer

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearly articulate your previous work and skills, and be prepared for what is expected of you. Embrace a learning mindset, as no one is perfect, and the hiring team primarily evaluates your willingness to learn.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. How many variance in sap?
  • Ans. 

    The number of variances in SAP can vary depending on the specific processes and transactions being analyzed.

    • The number of variances in SAP can be influenced by factors such as data entry errors, system glitches, or discrepancies in invoice processing.

    • Variances in SAP may be identified through reconciliation processes, exception reports, or manual reviews of accounts payable transactions.

    • Examples of variances in SAP inc...

  • Answered by AI
  • Q2. We cac explain the all accounts receivable and accounts payable
  • Ans. 

    Accounts receivable and accounts payable are two important aspects of a company's financial operations.

    • Accounts receivable refers to money owed to a company by its customers for goods or services provided.

    • Accounts payable refers to money owed by a company to its suppliers or vendors for goods or services received.

    • Accounts receivable is an asset on the balance sheet, while accounts payable is a liability.

    • Managing accoun...

  • Answered by AI
  • Q3. What is the cost element and cost center?
  • Ans. 

    Cost element and cost center are key concepts in accounting for tracking and allocating costs within an organization.

    • Cost element refers to the specific types of costs incurred by an organization, such as materials, labor, or overhead.

    • Cost center is a specific department, team, or function within an organization that is responsible for incurring costs.

    • Cost elements are assigned to cost centers to track and allocate cos...

  • Answered by AI
  • Q4. How many we have currencies in sap?
  • Ans. 

    SAP supports over 160 currencies worldwide.

    • SAP supports over 160 currencies for global transactions.

    • Currencies can be configured in SAP using transaction code OB22.

    • Each currency is assigned a unique currency code (e.g. USD for US Dollar, EUR for Euro).

  • Answered by AI
  • Q5. How many types of projects
  • Ans. 

    There are various types of projects, including internal projects, external projects, research projects, and development projects.

    • Internal projects focus on improving processes within the organization.

    • External projects involve working with external partners or clients.

    • Research projects aim to gather data and analyze findings.

    • Development projects focus on creating new products or services.

    • Examples: IT system implementati...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture P2P Accounts Payable Executive interview:
  • mba fresher
Interview preparation tips for other job seekers - 1. Self-Reflection & Goal Setting
* Identify Your Strengths & Weaknesses:
* Strengths: What are you good at? What do you enjoy doing? What are your unique skills and talents?
* Weaknesses: What areas do you need to improve? What are your biggest challenges?
* Define Your Career Goals:
* Short-term: What kind of job are you looking for? What industry are you interested in? What salary range are you targeting?
* Long-term: What is your ideal career path? What are your long-term professional aspirations?
2. Enhance Your Job Search Strategy
* Build a Strong Online Presence:
* LinkedIn: Create a professional and engaging LinkedIn profile.
* Portfolio/Website: If applicable, showcase your work through a portfolio or personal website.
* Network, Network, Network:
* Attend industry events: Conferences, meetups, and workshops.
* Informational interviews: Connect with people working in your field of interest.
* Leverage your existing network: Let your friends, family, and former colleagues know you're job searching.
* Tailor Your Resume & Cover Letter:
* Customize: Tailor your resume and cover letter to each specific job application.
* Keywords: Use keywords from the job description to increase your chances of getting noticed by Applicant Tracking Systems (ATS).
* Quantify your achievements: Use numbers and data to demonstrate your accomplishments.
* Master the Job Interview:
* Practice: Prepare for common interview questions (behavioral, technical, etc.).
* Research: Learn about the company and the role you're interviewing for.
* Ask insightful questions: Demonstrate your interest and engagement.
3. Continuous Improvement
* Skill Development:
* Online courses: Platforms like Coursera, Udemy, and edX offer a wide range of courses.
* Certifications: Obtain relevant industry certifications to enhance your credentials.
* Volunteer work: Gain valuable experience and build your network.
* Stay Updated:
* Industry news: Keep up-to-date with the latest trends and developments in your field.
* Job market trends: Monitor job boards and industry publications to understand the current job market.
Key Advice:
* Be patient and persistent: The job search process can be challenging, but don't give up.
* Stay positive and maintain a growth mindset: Focus on your strengths and opportunities for improvement.
* Take care of yourself: Prioritize your physical and mental well-being during your job search.
Remember: The job market is constantly evolving. Be adaptable, proactive, and resourceful in your job search efforts. Good luck!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(4 Questions)

  • Q1. What special attributes do you possess that make you a perfect fit for this role, considering that many individuals can perform car service?
  • Q2. What skills do you possess that are relevant to the execution of this role?
  • Q3. What attracted you to choose this company as your new employer?
  • Q4. What's your salary expectations
Round 2 - One-on-one 

(2 Questions)

  • Q1. Do you have experience
  • Q2. Are you dedicated to this role
Round 3 - Group Discussion 

Integrity and honesty

Interview Preparation Tips

Interview preparation tips for other job seekers - You must be confident and well-prepared with relevant job knowledge.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your with career ?
  • Q2. What is your graduation background.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Motivation and career goals
  • Q2. Why are you intrestedin this position ?
Round 3 - HR 

(2 Questions)

  • Q1. What motivation ypu tp perfrom well at work ?
  • Q2. What are your biggest weaknesses.
Round 4 - HR 

(2 Questions)

  • Q1. Work ethic and adaptabllity.
  • Q2. How do you handle pressure and deadlines ?
Round 5 - HR 

(2 Questions)

  • Q1. Why did you choose this career
  • Q2. What are your greatest strenth
Round 6 - HR 

(2 Questions)

  • Q1. What is your graduation background
  • Q2. What is your collage name
Round 7 - HR 

(2 Questions)

  • Q1. How do you plan to overcome your weakness
  • Q2. Why are you intrested in this position
Round 8 - Assignment 

Work done from all assigments

Interview Preparation Tips

Interview preparation tips for other job seekers - Thankyou for give me a great aporcunitey
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. React hooks, nodejs routing, metadata, aws deployment process, microservices, dom, event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was for only 30 mins, the interviewer was also not aware that interview is 30 mins only. he said to answer the questions fast, asked questions from front end, backend, database, deployment everything in 30 mins. The interviewer did not seem interested in hearing the answers, he was moving the next question event before i finished speaking. Very bad experience. I answer all the questions well, still received rejection mail with 30 seconds of interview got over. felt like he had pre-decided to reject and was not interested in the interview. The HR was also very rude and did got give detailed feedback when questioned on the reason for rejection.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Process planning refers to the methodical approach of determining the best possible way to manufacture a product or deliver a service by considering various aspects such as resources, timelines, and methodologies involved in production or execution.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Explain about previous process
  • Ans. 

    Implemented a new chemical process to increase efficiency and reduce waste.

    • Researched and analyzed current process to identify areas for improvement

    • Designed and tested new process using simulation software

    • Collaborated with production team to implement changes and monitor results

    • Achieved 20% increase in production output and 15% reduction in waste

    • Continuously monitored and optimized process for further improvements

  • Answered by AI
  • Q2. Explain about my work experience
  • Q3. Explain about my work standard
  • Q4. Explain about my managing method
  • Ans. 

    I utilize a combination of project management tools and communication strategies to effectively manage my team and projects.

    • I prioritize tasks based on deadlines and importance

    • I regularly communicate with team members to ensure everyone is on the same page

    • I use project management software such as Trello or Asana to track progress and assign tasks

    • I adapt my management style to fit the needs and preferences of individual

  • Answered by AI
  • Q5. Explain about my working style
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

The Aptitude Test session accesses mathematical and logical reasoning abilities

Round 2 - Technical 

(6 Questions)

  • Q1. What is Vlookup
  • Ans. 

    Vlookup is a function in Excel used to search for a value in a table and return a corresponding value from another column.

    • Vlookup stands for 'Vertical Lookup'

    • It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column

    • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) - searc...

  • Answered by AI
  • Q2. Some IF else Question in Excel
  • Q3. What does your day in your previous organization look like?
  • Ans. 

    My day in my previous organization involved analyzing large datasets, creating reports, and presenting findings to stakeholders.

    • Reviewing and cleaning large datasets to ensure accuracy

    • Creating visualizations and reports to communicate insights

    • Collaborating with team members to identify trends and patterns

    • Presenting findings to stakeholders in meetings or presentations

  • Answered by AI
  • Q4. Could you share the technical skills you possess?
  • Ans. 

    I possess strong technical skills in data analysis, including proficiency in programming languages, statistical analysis, and data visualization tools.

    • Proficient in programming languages such as Python, R, SQL

    • Skilled in statistical analysis and data modeling techniques

    • Experience with data visualization tools like Tableau, Power BI

    • Knowledge of machine learning algorithms and techniques

  • Answered by AI
  • Q5. Can you explain what a Pivot Table is?
  • Ans. 

    A Pivot Table is a data summarization tool used in spreadsheet programs to analyze, summarize, and present data in a tabular format.

    • Pivot tables allow users to reorganize and summarize selected columns and rows of data to obtain desired insights.

    • Users can easily group and filter data, perform calculations, and create visualizations using pivot tables.

    • Pivot tables are commonly used in Excel and other spreadsheet program...

  • Answered by AI
  • Q6. Find the Highest-paid employee in each department along with their salary and department name.
  • Ans. 

    To find the highest-paid employee in each department, we need to group employees by department and then select the employee with the highest salary in each group.

    • Group employees by department

    • Find the employee with the highest salary in each group

    • Retrieve the employee's name, salary, and department name

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nagarro Data Analyst interview:
  • SQL
  • Excel
  • Problem Solving
  • PowerBI
  • SQL Queries
Interview preparation tips for other job seekers - Practice common interviews and scenarios, especially for your role.
Be prepared to discuss past challenges and how did you overcome.

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, HR and Resume Shortlist.
What are the top questions asked in Imriel interview?

Some of the top questions asked at the Imriel interview -

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

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.9
 • 8.1k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
Nagarro Interview Questions
4.0
 • 769 Interviews
View all

Imriel Reviews and Ratings

based on 3 reviews

3.4/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.9
Compare

Capgemini

3.8
Compare

HCLTech

3.5
Compare

Teleperformance

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