Filter interviews by
I applied via Approached by Company and was interviewed in Jun 2022. There were 3 interview rounds.
Only aptitude has been done on that date
I applied via Walk-in and was interviewed in Feb 2024. There were 3 interview rounds.
Asking 25 - 35 Questions as 1 mark q&a relating your job
Experienced leasing accountant with a strong background in financial analysis and lease negotiations.
Over 5 years of experience in lease accounting
Proficient in analyzing lease agreements and ensuring compliance with accounting standards
Negotiated favorable lease terms resulting in cost savings for the company
Strong attention to detail and ability to work under pressure
Excellent communication skills in liaising with la
Positive signs include attention to detail, strong analytical skills, and ability to work under pressure. Negative signs may include lack of communication skills and difficulty in prioritizing tasks.
Positive signs: attention to detail
Positive signs: strong analytical skills
Positive signs: ability to work under pressure
Negative signs: lack of communication skills
Negative signs: difficulty in prioritizing tasks
Experienced leasing accountant with a strong background in financial analysis and lease negotiations.
Over 5 years of experience in lease accounting
Proficient in analyzing lease agreements and ensuring compliance with accounting standards
Negotiated favorable lease terms resulting in cost savings for the company
Strong attention to detail and ability to work under pressure
Excellent communication skills in liaising with la
I am a recent graduate from XYZ University with a degree in Accounting.
Graduated from XYZ University with a degree in Accounting
Received specialized training in lease accounting
Completed internships at accounting firms during college
Participated in accounting clubs and organizations on campus
I am choosing this job role because of my passion for accounting and interest in lease management.
I have a strong background in accounting and finance, making me well-suited for this role.
I enjoy working with numbers and analyzing financial data, which are key aspects of lease accounting.
I am eager to learn more about lease agreements and how they impact financial statements.
I believe this role will allow me to further...
The company is a leading leasing firm specializing in commercial and residential properties.
The company offers a wide range of leasing options for both commercial and residential properties
They have a strong reputation for excellent customer service and timely lease agreements
The company has been in business for over 10 years and has a large portfolio of properties in various locations
Yes, I am aware of the job role of Leasing Accountant.
I am familiar with the responsibilities of a Leasing Accountant, which include managing lease agreements, analyzing lease terms, and ensuring compliance with accounting standards.
I have experience in preparing lease accounting schedules and financial reports related to leases.
I understand the importance of accurately recording lease transactions and maintaining leas...
I applied via Naukri.com and was interviewed in Jan 2023. There were 4 interview rounds.
General Aptitude Questions and Logical Reasoning
Entrust Software Solutions interview questions for popular designations
I applied via Referral and was interviewed in Sep 2022. There were 3 interview rounds.
There will be basic questions on accounting ans ms excel in mcq form.If we cleared that then next will be technical round.
Accruals are expenses incurred but not yet paid, while prepaids are payments made in advance for future expenses.
Accruals are recorded when expenses are incurred, regardless of when they are paid.
Prepaids are recorded when payments are made in advance of expenses being incurred.
Accruals are typically associated with services received but not yet invoiced.
Prepaids are typically associated with insurance premiums or rent...
Journal entries for prepaid and accruals involve recording expenses or revenues before they are actually incurred or received.
Prepaid expenses are recorded as assets until they are used up, then expensed.
Accrued expenses are recorded as liabilities until they are paid, then expensed.
Prepaid revenue is recorded as a liability until it is earned, then recognized as revenue.
Accrued revenue is recorded as an asset until it
I am interested in joining your company because of its reputation for quality products and commitment to excellence.
I am impressed by the company's track record of delivering high-quality products to customers.
I am excited about the opportunity to contribute to a team that values quality and continuous improvement.
I believe that my skills and experience align well with the company's focus on quality assurance.
My goal in my career is to continuously improve my skills and knowledge, and eventually advance into a leadership role.
Continuously seek opportunities for professional development and training
Set clear career goals and work towards achieving them
Build strong relationships with colleagues and mentors to learn from their experiences
Take on challenging projects to expand my skill set
Eventually aim to transition into a lea
posted on 28 Jan 2020
I applied via Naukri.com and was interviewed in Jul 2019. There were 3 interview rounds.
Explanation of UART, SPI, CAN, I2C timing diagrams and frame formats.
UART: asynchronous serial communication, start and stop bits, baud rate
SPI: synchronous serial communication, master-slave architecture, clock polarity and phase
CAN: differential serial communication, arbitration, error detection and correction
I2C: synchronous serial communication, master-slave architecture, addressing, clock stretching
posted on 21 Apr 2021
I applied via Naukri.com
I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.
posted on 3 Oct 2021
I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 4 interview rounds.
I appeared for an interview before May 2021.
Round duration - 90 minutes
Round difficulty - Medium
Given 'N' students standing in a row with specific heights, your task is to find the length of the longest strictly increasing subsequence of their heights...
Find the length of the longest strictly increasing subsequence of heights of students in a row.
Iterate through the heights array and for each element, find the length of the longest increasing subsequence ending at that element.
Use dynamic programming to keep track of the longest increasing subsequence length for each element.
Return the maximum length found as the result.
You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.
If an interval ends at time T and anothe...
Given start and end times of intervals, determine if any two intervals overlap.
Iterate through intervals and check if any two intervals overlap by comparing their start and end times
Sort intervals based on start times for efficient comparison
Consider edge cases where intervals end and start at the same time
Various SQL queries related to data manipulation and retrieval were asked during the interview.
Basic SELECT queries to retrieve data from a single table
JOIN queries to retrieve data from multiple tables based on a common column
Aggregate functions like COUNT, SUM, AVG, etc. to perform calculations on data
Subqueries to retrieve data based on the result of another query
UPDATE queries to modify existing data in a table
DELE...
Round duration - 60 Minutes
Round difficulty - Medium
Given a string STR
of size N
and an integer M
representing the number of rows in the zig-zag pattern, return the string formed by concatenating all rows when the string ST...
Arrange a string in zig-zag pattern with given number of rows and concatenate the rows.
Iterate through the string and distribute characters to rows based on zig-zag pattern
Concatenate the characters in each row to get the final result
Handle edge cases like when number of rows is 1 or equal to the length of the string
You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...
The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.
Iterate from right to left to find the first element that is smaller than the element to its right.
Swap this element with the smallest element to its right that is greater than it.
Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.
Round duration - 60 Minutes
Round difficulty - Medium
Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.
String S
Output string
Recursively remove consecutive duplicate characters from a string.
Use recursion to check if the current character is the same as the next character, if so skip the next character
Base case: if the string is empty or has only one character, return the string
Example: Input: 'aaabcc', Output: 'abc'
Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.
The first and only line of input ...
Return all possible permutations of a given input string.
Use recursion to generate all possible permutations of the input string.
Swap characters at different positions to generate permutations.
Handle duplicate characters in the input string by using a set to store unique permutations.
Round duration - 60 Minutes
Round difficulty - Medium
Design an e-commerce website similar to Flipkart or Amazon.
Implement user-friendly interface for easy navigation
Include search functionality with filters for products
Incorporate secure payment gateway for transactions
Provide personalized recommendations based on user behavior
Include customer reviews and ratings for products
Implement order tracking and delivery status updates
Offer various payment options like credit/deb
Tip 1 : Prepare DSA well. Standard Leetcode-type questions will be asked.
Tip 2 : You should be crystal clear about your project/s as any question would be asked and you should be able to answer it.
Tip 3 : Prepare CS fundaments like OS, OOPs, DBMS, etc.
Tip 1 : Clearly mention the tech. stack you have worked on in the project/s
Tip 2 : As a fresher, you should add your coding profiles on CodeChef, Codeforces, etc. so as to make the resume shortlisting easy
based on 6 interviews
Interview experience
based on 42 reviews
Rating in categories
Process Leader
14
salaries
| ₹4 L/yr - ₹6.6 L/yr |
Quality Associate
6
salaries
| ₹0.8 L/yr - ₹4.3 L/yr |
Process Associate
5
salaries
| ₹1.9 L/yr - ₹2.5 L/yr |
Senior Software Engineer
5
salaries
| ₹6.6 L/yr - ₹9.2 L/yr |
Software Engineer
4
salaries
| ₹3.2 L/yr - ₹7.5 L/yr |
Oracle
Amdocs
Automatic Data Processing (ADP)
24/7 Customer