Upload Button Icon Add office photos

Filter interviews by

Feedback Infrastructure Services Associate Analyst Interview Questions and Answers

Updated 16 Jan 2015

Feedback Infrastructure Services Associate Analyst Interview Experiences

1 interview found

Interview Preparation Tips

Round: Group Discussion
Tips: Be aware of the recent affairs in the sector.

Round: Other Interview
Experience: This was a telephonic interview with the Head of the Division from Delhi.

General Tips: Investopedia (Website), Economic Times shall help for finance preparation you should be able to explain the current real world scenarios.
College Name: IIT-Madras

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

#include
#include
#include
#include

class SeatReservation {
private:
int n; // Number of rows
int m; // Number of seats per row
std::vector> reservedSeats;

public:
SeatReservation(int rows, int seatsPerRow) : n(rows), m(seatsPerRow) {
reservedSeats.resize(n);
}

std::string reserve(int r, int k) {
if (r < 1 || r > n || k < 1 || k > m) {
return "Invalid row or seat number";
}

// Check if requested seats are available
for (int i = k; i < k + 3; ++i) {
if (reservedSeats[r - 1].count(i) > 0) {
return "Seats not available";
}
}

// Reserve the seats
for (int i = k; i < k + 3; ++i) {
reservedSeats[r - 1].insert(i);
}

return "Booked with seat number " + std::to_string(k);
}
};

int main() {
// Example usage
SeatReservation theater(2, 3);

std::cout << theater.reserve(1, 3) << std::endl; // Booked with seat number 1
std::cout << theater.reserve(2, 4) << std::endl; // Seats not available

return 0;
}

Round 3 - Behavioral 

(1 Question)

  • Q1. Four couples, the Maceys, Makins, Salmons and Ainsworths, used a different mode of transportation car, airplane, bus and ship-to reach their vacation dm They each left from different cities: Miami, Memphis...

Interview Preparation Tips

Interview preparation tips for other job seekers - There is a movie theater that has n rows of seats, and m seats in each row. A ticketing service allocates the seats among the q incoming booking requests.

Implement the classes and methods of the ticketing service. Return whether the seats are available for incoming queries.

Implement the classes and methods defined below :-

1. A class named SeatReservation.


Instance Variables :-

Name :-
n

Functionality :-
Stores the value of number of rows in theater.

Name :-
m

Functionality :-
Stores the value of total number of seats per row.

Constructor :-

Name :-

SeatReservation(...)

Functionality :-

A parameterized constructor that initializes the instance variables.

Methods :-

Name :-

string reserve(int r, int k)

Functionality :-

Return "Booked with seat number s" where s is the starting number of the seat otherwise prints "Seats not available".

If the seats are available, the function should return a string with the first seat number of the booked seat in the format "Booked with seat number s" where s is the number of the first seat available in the rth row. If it is not possible, return "Seats not available" and do not reserve a seat.


Example :-

n=2,m=3
q=2
first query: (1, 3)
second query (2, 4)


The theater has 2 rows of 3 seats.

The first request is for 3 seats in row 1. They are available, starting at seat 1. Return "Booked with seat number 1".

The second query is for 4 seats in row 2. Row 2 does not have 4 adjacent seats available. Return "Seats not available".

Requests are handled in the order received and allocations persist through the series of requests. A seat cannot be booked twice.

Constraints :-

• 1 ≤ n, m ≤ 10^5

• 1 ≤ q ≤ 10^4

• 1 ≤ r ≤ n

• 1 ≤ k ≤ 10^9
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Aptitude test which goes nice and we done will and basic knowledge in excel and ms offcie tool

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

I applied via Walk-in and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. The first round was technical and it was a hard round as your concept of sap should be clear
  • Q2. Why do u maintain Reconcilation a/c?
  • Ans. 

    Reconciliation accounts are maintained to ensure accuracy and consistency in financial records.

    • Helps in identifying discrepancies between different accounts

    • Ensures accuracy and consistency in financial statements

    • Facilitates easy tracking of transactions and balances

    • Aids in detecting errors or fraud in accounting records

  • Answered by AI
  • Q3. FI MM Integration, FI SD Integration?
  • Q4. What we maintain on company code lvl and client level and why?
  • Ans. 

    Company code level is maintained for global settings applicable to all clients, while client level is maintained for specific settings unique to each client.

    • Company code level settings include currency, chart of accounts, and fiscal year variants.

    • Client level settings include customer master data, vendor master data, and sales organization data.

  • Answered by AI
  • Q5. Phases of blueprint, tables
  • Ans. 

    Blueprint phases include planning, designing, and implementation. Tables are used to organize data in a structured format.

    • Blueprint phases: planning, designing, implementation

    • Tables: organize data in structured format

    • Examples: creating a blueprint for a new building, using tables in a database to store information

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Manager round some kind of behavioural check and some technical question asked as they give u scenerio about the work and some accounting questions
  • Q2. General Entries, P2P, OTC, RTR
  • Q3. What bank Reconcilation and validations
  • Ans. 

    Bank reconciliation involves comparing the bank statement with the company's records to ensure they match, while validations involve verifying the accuracy and completeness of financial transactions.

    • Bank reconciliation ensures that the company's records match the bank statement by comparing deposits, withdrawals, and other transactions.

    • Validations involve verifying the accuracy and completeness of financial transaction...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. The last round was hr
  • Q2. Some kind of behavioural check, salary discussions, terms and conditions but one thing here the hr round is not a formality round as u have to give full impression over there dont take it simple

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Luck
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basics of coding and mathematics

Round 2 - Coding Test 

Hackerrank and Java program

Round 3 - Technical 

(1 Question)

  • Q1. Basics of Core java and socket programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Should have proper knowledge for Java and c# and frontend technology- react and angular

I applied via campus placement at Sri Savitribai Phule Womans Polytechnic, Pune and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Q2. Explain OTC cycle.
  • Ans. 

    OTC cycle refers to the process of Over-The-Counter trading of securities.

    • OTC trading involves direct trading between two parties without the involvement of a stock exchange.

    • OTC securities are not listed on formal exchanges and are traded through dealer networks.

    • OTC cycle includes negotiation, trade execution, and settlement.

    • OTC trading is common for small-cap and penny stocks.

    • OTC trading is less regulated than exchang

  • Answered by AI
  • Q3. 16 fields of pricing procedure
  • Ans. 

    The pricing procedure in SAP consists of 16 fields that determine the pricing calculation for a product or service.

    • The 16 fields include: Condition Type, Access Sequence, Condition Table, Calculation Type, Scale Basis, Scale Type, Condition Category, Condition Class, Condition Control, Calculation Type, Rounding Rule, Currency, Pricing Unit, Scale Quantity, Scale Value, and Condition Amount.

    • Each field plays a specific ...

  • Answered by AI
  • Q4. Tcode for account group & what is function of account group?
  • Ans. 

    Tcode for account group is OBD4. Account group is used to classify GL accounts based on their nature and usage.

    • Account group is a key element in the creation of GL accounts

    • It helps in defining the fields that are mandatory while creating a GL account

    • It also determines the number range for GL accounts

    • Examples of account groups are Assets, Liabilities, Income, Expenses, etc.

  • Answered by AI
  • Q5. Explain Third party process
  • Ans. 

    Third party process involves outsourcing a business function to a vendor or supplier.

    • Third party process involves hiring an external vendor or supplier to perform a business function.

    • This can include outsourcing IT services, customer support, or manufacturing.

    • The third party is responsible for delivering the service or product as per the agreed terms and conditions.

    • The company outsourcing the function retains overall c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're fresher you should have basic knowledge of all business process

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 3 - One-on-one 

(2 Questions)

  • Q1. Discussion about work
  • Q2. Discuss about past experiences

Tell us how to improve this page.

Interview Questions from Similar Companies

KEC International Interview Questions
4.1
 • 289 Interviews
Tata Technologies Interview Questions
3.6
 • 252 Interviews
Saint-Gobain Interview Questions
4.0
 • 170 Interviews
AECOM Interview Questions
4.3
 • 111 Interviews
Worley Interview Questions
4.1
 • 108 Interviews
View all
Assistant Manager
110 salaries
unlock blur

₹3 L/yr - ₹10.9 L/yr

Field Engineer
107 salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Site Engineer
72 salaries
unlock blur

₹1.8 L/yr - ₹5.4 L/yr

Senior Engineer
65 salaries
unlock blur

₹3.6 L/yr - ₹10.2 L/yr

Electrical Engineer
44 salaries
unlock blur

₹2 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Feedback Infrastructure Services with

Shapoorji Pallonji Group

4.1
Compare

Kalpataru Projects International

4.2
Compare

KEC International

4.1
Compare

Nagarjuna Construction Company

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