Filter interviews by
Current profile refers to an individual's professional background and skills relevant to their current job role.
Includes education, work experience, and skills relevant to finance.
Example: A finance executive may have an MBA in Finance and 10 years of experience in investment banking.
Highlights key achievements, such as successful financial strategies implemented.
May also include certifications like CFA or CPA tha...
Joins in SQL combine rows from two or more tables based on related columns.
INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;
LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;
RIGHT JOIN: Returns all records from the right table and matched records from t...
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance
Single inheritance: a class inherits from only one parent class. Example: class Dog inherits from class Animal
Multiple inheritance: a class inherits from multiple parent classes. Exa...
OOP principles include encapsulation and inheritance, which enhance code modularity and reusability.
Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A 'Car' class with properties like 'speed' and methods like 'accelerate()'.
Inheritance: Mechanism where a new class derives properties and behaviors from an existing class. Example: A 'SportsCar' class inheriting...
The four pillars of OOP are Encapsulation, Abstraction, Inheritance, and Polymorphism, essential for structured programming.
Encapsulation: Bundling data and methods, e.g., a class with private variables and public methods.
Abstraction: Hiding complex implementation details, e.g., using interfaces to define methods without exposing their logic.
Inheritance: Creating new classes from existing ones, e.g., a 'Dog' class...
Use SQL JOIN to combine two tables and display information.
Use the JOIN keyword to combine tables based on a related column
Specify the columns you want to display in the SELECT statement
Use ON clause to specify the column used for joining the tables
Print numbers in pyramid shape patterns using SQL code.
Use a loop to iterate through rows and columns to print the numbers in pyramid shape.
Increment the numbers in each row to create the pyramid effect.
Consider the spacing and alignment to create a visually appealing pyramid pattern.
SQL join types allow combining data from multiple tables based on a specified condition.
Inner Join: Returns rows that have matching values in both tables.
Left Join: Returns all rows from the left table and the matched rows from the right table.
Right Join: Returns all rows from the right table and the matched rows from the left table.
Full Outer Join: Returns all rows when there is a match in either left or right ta...
Oops pillars refer to the four main concepts of object-oriented programming: Inheritance, Encapsulation, Abstraction, and Polymorphism.
Inheritance allows a class to inherit properties and behavior from another class.
Encapsulation involves bundling data and methods that operate on the data into a single unit.
Abstraction focuses on hiding the complex implementation details and showing only the necessary features of ...
Program to print star pattern in a specific shape
Use nested loops to control the number of rows and columns
Use if-else statements to determine when to print a star or a space
Experiment with different loop conditions to create various patterns
I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 5 interview rounds.
I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.
Online test for aptitude and technical questions which is quite easy you need above 12 marks i guess , only then you will be considered for technical interview
I currently reside in San Francisco, CA, and I am open to relocating for the right opportunity in SQL development.
I live in a vibrant tech hub, which keeps me updated on industry trends.
I have experience working remotely, so I am adaptable to different work environments.
Relocation is feasible for me; I have previously moved for job opportunities, such as when I relocated to New York for a project.
Print numbers in pyramid shape patterns using SQL code.
Use a loop to iterate through rows and columns to print the numbers in pyramid shape.
Increment the numbers in each row to create the pyramid effect.
Consider the spacing and alignment to create a visually appealing pyramid pattern.
Code to sort array without sort function
Iterate through the array and compare each element with the rest to find the smallest element
Swap the smallest element with the first element in the unsorted portion of the array
Repeat the process for the remaining unsorted portion of the array until fully sorted
List is a collection of objects, string array is an array of strings, etc. Each has its own characteristics and uses.
List: dynamic collection of objects, can grow/shrink in size. Example: List<Integer> numbers = new ArrayList<>();
String array: fixed-size array containing strings. Example: String[] names = new String[3];
Array: fixed-size collection of elements of the same type. Example: int[] scores = new in...
Key types in SQL include primary keys, foreign keys, unique keys, and composite keys.
Primary key: uniquely identifies each record in a table.
Foreign key: establishes a relationship between two tables.
Unique key: ensures that all values in a column are unique.
Composite key: combination of multiple columns to uniquely identify a record.
Use SQL JOIN to combine two tables and display information.
Use the JOIN keyword to combine tables based on a related column
Specify the columns you want to display in the SELECT statement
Use ON clause to specify the column used for joining the tables
Learn how to join two tables in SQL to retrieve related data effectively.
Use INNER JOIN to get records that have matching values in both tables. Example: SELECT * FROM TableA INNER JOIN TableB ON TableA.id = TableB.a_id;
Use LEFT JOIN to get all records from the left table and matched records from the right table. Example: SELECT * FROM TableA LEFT JOIN TableB ON TableA.id = TableB.a_id;
Use RIGHT JOIN to get all records...
The four pillars of OOP are Encapsulation, Abstraction, Inheritance, and Polymorphism, essential for structured programming.
Encapsulation: Bundling data and methods, e.g., a class with private variables and public methods.
Abstraction: Hiding complex implementation details, e.g., using interfaces to define methods without exposing their logic.
Inheritance: Creating new classes from existing ones, e.g., a 'Dog' class inhe...
I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.
2 coding question for 60 mins. One array based question and one string based question.
Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.
Types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance
Single inheritance: a class inherits from only one parent class. Example: class Dog inherits from class Animal
Multiple inheritance: a class inherits from multiple parent classes. Example:...
I applied via Walk-in and was interviewed in Jul 2024. There were 6 interview rounds.
Bootstrap mcq test total around 12 questions basic and advance including bootstrap and css
Algorithm on javascript and dom coding questions
I appeared for an interview in May 2025, where I was asked the following questions.
Current profile refers to an individual's professional background and skills relevant to their current job role.
Includes education, work experience, and skills relevant to finance.
Example: A finance executive may have an MBA in Finance and 10 years of experience in investment banking.
Highlights key achievements, such as successful financial strategies implemented.
May also include certifications like CFA or CPA that enh...
I appeared for an interview in Jan 2025.
Logical questions and manual scenarios and questions on manual testing
I appeared for an interview in May 2025, where I was asked the following questions.
Yes, I am proficient in Excel for data analysis and SQL for database management, both essential for effective support roles.
Excel: I can create complex formulas and pivot tables to analyze data efficiently.
Example: Using VLOOKUP to merge datasets for comprehensive reporting.
SQL: I can write queries to retrieve and manipulate data from databases.
Example: Using SELECT statements to extract specific information from a cus...
I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.
Normal apti test. With day to day life questions very easy
Joins in SQL combine rows from two or more tables based on related columns.
INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;
LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;
RIGHT JOIN: Returns all records from the right table and matched records from the le...
Top trending discussions
The duration of Yardi Systems interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 65 interview experiences
Difficulty level
Duration
based on 432 reviews
Rating in categories
Software Engineer
336
salaries
| ₹4 L/yr - ₹9.6 L/yr |
Software Analyst
277
salaries
| ₹5.6 L/yr - ₹12.4 L/yr |
Senior Software Analyst
156
salaries
| ₹8.9 L/yr - ₹15.5 L/yr |
Compliance Auditor
83
salaries
| ₹2.9 L/yr - ₹5.7 L/yr |
Audit Specialist
74
salaries
| ₹2.1 L/yr - ₹4.9 L/yr |
KPIT Technologies
Intellect Design Arena
Thomson Reuters
HighRadius