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 (167)
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. Pascal's TriangleYou are given an integer N. Your task is to return a 2-D ArrayList containing the pascal’s triangle till the row N. A Pascal's triangle is a triangular array constructed by summing adjacent elements in preceding rows. Pasca... read more
View answer (5)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Based on English grammar and proficiency.

Round 2 - Versant 

(3 Questions)

  • Q1. Listing to Sentence in Foreign Accent and then repeating the same.
  • Q2. Reading a 100 to 200 words paragraph and then after 30 seconds rewriting it with the important points.
  • Q3. Email writing: 3 topics would be given you have provide a reply based on amazon policies and principles.
Round 3 - One-on-one 

(4 Questions)

  • Q1. Tell me about yourself?
  • Q2. Achievement or Challenges in your current organisation?
  • Q3. Why do you want to leave your current job?
  • Q4. Email writing: 1 topic would be provided and in 10 mins we have to provide a response based on the details provided to you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Versant test Based on our reading, writing and Listening skill. As we mostly work with sellers from NA and EU markets.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. How many years of experience you have in CRM and how did you reach this stage on dynamics CRM?
  • Q2. What other CRMs are you aware about.
  • Ans. 

    Some other CRMs include Salesforce, Microsoft Dynamics, and Zoho CRM.

    • Salesforce is a popular CRM used by many companies for sales and marketing purposes.

    • Microsoft Dynamics is known for its integration with other Microsoft products and its customization options.

    • Zoho CRM is a cloud-based CRM solution that offers a wide range of features for managing customer relationships.

  • Answered by AI
  • Q3. Are you comfortable with Marketing CRM capabilities? Have you built any give examples.
  • Ans. 

    Yes, I am comfortable with Marketing CRM capabilities and have experience in building and utilizing them.

    • I have experience in implementing and customizing Marketing CRM systems to meet business needs.

    • I have utilized Marketing CRM capabilities to track customer interactions, manage campaigns, and analyze data for insights.

    • I have integrated Marketing CRM with other systems to streamline processes and improve efficiency.

    • O...

  • Answered by AI
  • Q4. Difference between Plugin and Workflow
  • Ans. 

    Plugins are custom code that can be added to extend functionality, while workflows are automated processes that can be triggered by events.

    • Plugins are custom code that can be added to extend the functionality of a system.

    • Workflows are automated processes that can be triggered by events in a system.

    • Plugins can be used to add new features or customize existing ones.

    • Workflows can automate repetitive tasks and streamline p...

  • Answered by AI
  • Q5. Difference between Canvas App and Model Driven Apps? Have you integrated any with CRM using customisation
  • Ans. 

    Canvas Apps are highly customizable and visually rich, while Model Driven Apps are more structured and data-driven. Both can be integrated with CRM using customizations.

    • Canvas Apps allow for more flexibility in design and layout, with drag-and-drop functionality for components.

    • Model Driven Apps are more focused on data and business processes, with a predefined data model and UI components.

    • Both types of apps can be cust...

  • Answered by AI
  • Q6. What microsoft certifications you hold? How many are pending renewals
  • Ans. 

    I hold Microsoft certifications in Azure and SQL Server. No pending renewals.

    • Certifications in Azure and SQL Server

    • No pending renewals

  • Answered by AI
  • Q7. How does Power BI help in visualisation? Give me difference between basic and advance dashboards
  • Ans. 

    Power BI helps in visualizing data through interactive and customizable dashboards.

    • Power BI allows users to create visually appealing charts, graphs, and maps to represent data in a meaningful way.

    • Basic dashboards in Power BI typically include simple visuals like bar charts, line graphs, and pie charts to display key metrics.

    • Advanced dashboards in Power BI involve more complex visuals like heat maps, scatter plots, and...

  • Answered by AI
  • Q8. What are the steps additionally a pro power BI does? More about transformation
  • Q9. How many connectors have you worked with in power Apps
  • Ans. 

    I have worked with over 20 connectors in Power Apps, including SharePoint, Outlook, and SQL Server.

    • Worked with over 20 connectors in Power Apps

    • Familiar with connectors such as SharePoint, Outlook, and SQL Server

  • Answered by AI
  • Q10. How good is your C# and .Net? And SQL knowledge.
  • Ans. 

    I have extensive experience with C#, .Net, and SQL.

    • Over 5 years of hands-on experience with C# and .Net development

    • Proficient in writing complex SQL queries and stored procedures

    • Experience in optimizing database performance and data modeling

    • Familiar with Entity Framework and LINQ for data access

    • Developed multiple web applications using ASP.NET MVC framework

  • Answered by AI
  • Q11. Explain me any previous CRM project that you built end to end.
  • Ans. 

    Implemented a CRM project for a retail company to streamline customer interactions and improve sales.

    • Analyzed business requirements and designed the CRM system architecture

    • Customized CRM software to fit the specific needs of the retail company

    • Integrated CRM with existing systems for seamless data flow

    • Trained end users on how to effectively use the CRM system

    • Implemented data analytics tools to track customer interaction

  • Answered by AI
  • Q12. Have you explored any AI features integrating with CRM? What's your thoughts on Copilot capabilities
  • Ans. 

    Yes, I have explored AI features integrating with CRM and I believe Copilot capabilities can greatly enhance productivity and efficiency.

    • I have experience implementing AI chatbots for customer service in CRM systems

    • AI features can automate repetitive tasks, improve data accuracy, and provide personalized customer interactions

    • Copilot capabilities can assist users in making data-driven decisions and predicting customer b...

  • Answered by AI
  • Q13. What does Marketing CRM include and explain a marketing Campaign scenario.
  • Ans. 

    Marketing CRM includes customer data management, campaign tracking, lead generation, and customer engagement.

    • Customer data management involves storing and organizing customer information such as contact details, purchase history, and preferences.

    • Campaign tracking allows marketers to monitor the performance of their marketing campaigns, including metrics like open rates, click-through rates, and conversions.

    • Lead generat...

  • Answered by AI
  • Q14. Difference between workflows and Power automate
  • Ans. 

    Workflows are a series of tasks that are automated to achieve a specific goal, while Power Automate is a tool that allows users to create automated workflows.

    • Workflows are a sequence of tasks that are executed in a specific order to achieve a desired outcome

    • Power Automate is a platform that enables users to automate workflows across various applications and services

    • Workflows can be manual or automated, while Power Auto...

  • Answered by AI
  • Q15. In C# can you write code to a plugin quickly? What are classess in C#
  • Ans. 

    Yes, in C# you can quickly write code to a plugin using classes.

    • Yes, in C# you can quickly write code to a plugin by creating a class that implements a specific interface or inherits from a base class.

    • Classes in C# are blueprints for creating objects. They can contain fields, properties, methods, events, and more.

    • For example, you can create a plugin interface and then create a class that implements that interface to wr

  • Answered by AI
  • Q16. Why do you want to join Accenture and how the organisation will benifit from it

Interview Preparation Tips

Topics to prepare for Accenture Application Lead interview:
  • MS Dynamics CRM
  • Power apps
  • Power Bi
  • C#
  • ASP.Net
  • Javascript

Skills evaluated in this interview

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.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude test that included coding and various logical questions.

Round 2 - Technical 

(4 Questions)

  • Q1. Domain questions
  • Q2. Project level questions
  • Q3. Mid level python questions
  • Q4. Devops questions
Round 3 - Technical 

(2 Questions)

  • Q1. Scenario based question
  • Q2. DevSecOps Questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial Round. It was a casual discussion though about the project and role level activities.
Round 5 - HR 

(1 Question)

  • Q1. Its was just a formality

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared to answer questions regarding your role and domain expertise, as well as have a basic understanding of various logical concepts.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It's walkin, so they conducted 1 technical mcqs round.

Round 2 - Technical 

(11 Questions)

  • Q1. Multi threading
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index in the array where the key-value pair will be stored.

    • In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.

    • HashMap allows null keys...

  • Answered by AI
  • Q3. Spring batch related
  • Q4. Non repeating characters in a array
  • Ans. 

    Function to find and return all non-repeating characters in an array of strings.

    • Iterate through the array and count the occurrences of each character using a HashMap.

    • Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.

    • Return the list of non-repeating characters.

  • Answered by AI
  • Q5. 3rd highest salary
  • Ans. 

    To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q6. Qualifier vs primary
  • Ans. 

    A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.

    • A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.

    • Qualifiers can be used to modify the behavior or characteristics of a primary.

    • For example, in Java, 'final' is a qualifier that can be used to make a variable constant.

  • Answered by AI
  • Q7. Controller vs restcontroller
  • Ans. 

    The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.

    • Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.

    • @Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.

    • @RestController is a convenience annotati...

  • Answered by AI
  • Q8. Spring boot annotataions
  • Q9. Oops concepts with examples
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability for objects to be treated as instances of their paren...

  • Answered by AI
  • Q10. Spring batch configuration
  • Q11. They covered all java, spring and Microservices
Round 3 - Technical 

(4 Questions)

  • Q1. Microservices architecture
  • Q2. How do Microservices communicate
  • Ans. 

    Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.

    • Service discovery mechanism...

  • Answered by AI
  • Q3. How to access the Microservice end point
  • Ans. 

    Microservice endpoints can be accessed using HTTP requests with the appropriate URL

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice

    • Construct the URL with the base URL of the microservice and the specific endpoint path

    • Include any necessary headers or parameters in the request for authentication or data filtering

  • Answered by AI
  • Q4. Why we use microservices
  • Ans. 

    Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.

    • Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.

    • They improve fault isolation, as failures in one service do not necessarily affect the entire application.

    • Microservices promote agility and faster time-to-mark...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

The group discussion is the we work with team and the team (Group). The discussion is the company group had the meeting an they think what they do on next and etc....

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is the meaning of Teleperformance?
  • Ans. 

    Teleperformance is a global outsourcing company specializing in customer experience management.

    • Global outsourcing company

    • Specializes in customer experience management

    • Provides services such as customer support, technical support, sales, etc.

  • Answered by AI
  • Q2. What motivated you to select this job?
  • Ans. 

    Passion for problem-solving and interest in software development drove me to choose this job.

    • Passion for problem-solving

    • Interest in software development

    • Opportunity to learn and grow in the field

  • Answered by AI
  • Q3. Are you interested to do work
  • Ans. 

    Yes, I am very interested in doing work as a Junior Software Programmer.

    • I am passionate about coding and problem-solving

    • I enjoy learning new technologies and improving my skills

    • I have completed relevant courses or certifications in software development

  • Answered by AI
  • Q4. Did you work Before in Teleperformance
  • Ans. 

    No, I have not worked at Teleperformance before.

    • I have not worked at Teleperformance in the past.

    • My previous work experience does not include Teleperformance.

    • I am a new candidate for this position and have not worked at Teleperformance.

  • Answered by AI
  • Q5. Are you Happy with thus job
  • Ans. 

    Yes, I am happy with this job because I enjoy coding and problem-solving.

    • I enjoy coding and problem-solving

    • I appreciate the opportunities for growth and learning in this role

    • I have a positive relationship with my team and enjoy collaborating on projects

  • Answered by AI
Round 3 - Assignment 

Interview Preparation Tips

Interview preparation tips for other job seekers - I am Freshers in the company but i want to do work work in teleperformance company its was good job for the freshers
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is the impact of purchase of inventory on financial statements
  • Ans. 

    Purchase of inventory impacts financial statements by increasing assets and reducing cash or accounts payable.

    • Increase in inventory asset on balance sheet

    • Decrease in cash or increase in accounts payable on balance sheet

    • Cost of goods sold on income statement is impacted by inventory purchases

    • Gross profit margin is affected by inventory purchases

    • Inventory turnover ratio can be impacted by inventory purchases

  • Answered by AI
  • Q2. Accounting concepts
  • Q3. What do u know about USGAAP
  • Ans. 

    USGAAP stands for United States Generally Accepted Accounting Principles, which are a set of accounting standards used in the US.

    • USGAAP is a set of accounting principles, standards, and procedures that companies must follow when preparing their financial statements.

    • It is important for companies operating in the US to comply with USGAAP to ensure consistency and transparency in financial reporting.

    • USGAAP covers a wide r...

  • Answered by AI
  • Q4. Since I mentioned in my resume that i have mutual funds and derivatives knowledge he asked me about these topics a bit
Round 2 - Behavioral 

(3 Questions)

  • Q1. What do you know about optum
  • Q2. How well do you know the excel
  • Ans. 

    I am very proficient in Excel and have extensive experience using it for financial analysis and reporting.

    • I am highly skilled in creating complex financial models and reports in Excel

    • I have experience using advanced functions such as VLOOKUP, pivot tables, and macros

    • I am comfortable working with large datasets and performing data analysis in Excel

    • I have used Excel for budgeting, forecasting, and variance analysis in pr

  • Answered by AI
  • Q3. You may have to learn various softwares, are you fine with it
  • Ans. 

    Yes, I am comfortable learning new software as needed for the role.

    • I am a quick learner and have experience adapting to new software in previous roles.

    • I am open to training and development opportunities to enhance my skills.

    • I understand the importance of staying current with technology in the accounting field.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Jus have good qualification. I did well in interview still I didn't receive any offer. Not even regret mail
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 Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. About interface and abstract class with C# coding
  • Q2. Output prediction for interface program in C#
  • Ans. 

    To predict output for an interface program in C#

    • Understand the input parameters and expected output of the interface program

    • Analyze the logic and algorithms used in the program

    • Consider edge cases and potential errors in the program

    • Use debugging tools and test cases to validate the output prediction

  • Answered by AI
  • Q3. Sql queries like finding the 2nd largest salary, few joins,cte.
  • Q4. C# Program for reversing a string of text.
  • Ans. 

    C# program to reverse a string of text

    • Use the ToCharArray method to convert the string to a char array

    • Use a for loop to iterate through the array and reverse the characters

    • Use the String constructor to create a new string from the reversed char array

  • Answered by AI
  • Q5. And oops concepts, dependency injection, Solid principles with examples and design patterns you in your projects and how.
Round 2 - Technical 

(4 Questions)

  • Q1. Few sql queries like window functions
  • Q2. About indexing and stored procedures and triggers.
  • Q3. How do you manage the team
  • Q4. String programs using linq
  • Ans. 

    Using LINQ to manipulate string arrays in C#

    • Use LINQ methods like Where, Select, OrderBy, etc. to filter, transform, or sort string arrays

    • Example: string[] names = {"Alice", "Bob", "Charlie"}; var result = names.Where(name => name.Length > 4);

    • Example: string[] fruits = {"apple", "banana", "cherry"}; var sortedFruits = fruits.OrderBy(fruit => fruit);

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Just a salary and location discussion

Interview Preparation Tips

Topics to prepare for Capgemini Senior Software Engineer 1 interview:
  • OOPS
  • Design Patterns
  • Solid principles
  • MS SQL Server
  • LINQ

Skills evaluated in this interview

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. 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
 • 7.8k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
Nagarro Interview Questions
4.0
 • 753 Interviews
View all

Imriel Reviews and Ratings

based on 3 reviews

3.5/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

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.6
Compare

Teleperformance

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview