Upload Button Icon Add office photos

Filter interviews by

Castle Rock Research Corporation Interview Questions and Answers

Updated 19 Jun 2024

Castle Rock Research Corporation Interview Experiences

1 interview found

General Manager Interview Questions & Answers

user image Abhishek mathur

posted on 19 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(9 Questions)

  • Q1. P&L percent of every expense
  • Ans. 

    P&L percent of every expense refers to the percentage of each expense in relation to the total profit and loss statement.

    • Calculate the percentage of each expense by dividing it by the total expenses and multiplying by 100.

    • This helps in understanding the impact of each expense on the overall profitability of the business.

    • For example, if total expenses are $10,000 and rent expense is $2,000, the P&L percent for rent woul

  • Answered by AI
  • Q2. PIP percentages against revenue
  • Ans. 

    PIP percentages against revenue refers to the percentage of revenue allocated towards Performance Improvement Plans.

    • Calculate PIP percentage by dividing total PIP expenses by total revenue and multiplying by 100.

    • Monitoring PIP percentages helps in evaluating the effectiveness of improvement plans.

    • Example: If total PIP expenses are $10,000 and total revenue is $100,000, PIP percentage would be 10%.

  • Answered by AI
  • Q3. Revenue management and strategy
  • Q4. Payroll percentages and cafeteria cost.
  • Q5. People management
  • Q6. Markets segment and source
  • Q7. Room and f&b GOP share
  • Q8. Channel manager and BAR rate aligned as per long weekend, saya date
  • Q9. Wedding strategy

General Manager Interview Questions asked at other Companies

Q1. If we do 100% Banking, End of the Month Bank gives us Statement, Which account can be easily tracked from the Statement
View answer (2)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Resume based questions
  • Q2. Event loop in nodejs
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue for new events to execute

  • Answered by AI
  • Q3. Javascript es6 questions

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jan 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

3 coding questions any programming language

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Interview based on your programming skills
  • Q2. 1.Find the possible permutation of the given string 2. Remove 3 from the given input (Number) and input should be taken from the user 3. Check whether the given string is Anagram without using map DATA s...
  • Ans. 

    Answering questions related to string permutations, removing numbers, and checking for anagrams without using map data structure.

    • To find permutations of a string, use recursion to swap characters at each position.

    • To remove a specific character (e.g. '3') from a string, iterate through the string and build a new string without the character.

    • To check for anagrams without using a map data structure, sort both strings and

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

(1 Question)

  • Q1. Introduce yourself and are you willing to relocate And salary discussion. That's it

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

I applied via Other and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic C language question like what is pointer ,Array,structure,Call by reference, Difference between union and structure. Some programming question are prime number,factorial,fabonacci series,strings etc

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good first of all learn every basic programming question and some times it also depend on interviewer

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked dsa problem. It was a sliding window problem.

Round 2 - Coding Test 

This was taken by the engineering manager. asked couple of oops qns and dsa problem

Round 3 - Aptitude Test 

This was taken by the cofounder. more of a get to know

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

Initial will be coding test on array , loops

Round 3 - Technical 

(1 Question)

  • Q1. Questions on implementation and languages
Round 4 - One-on-one 

(1 Question)

  • Q1. Regarding implementation of some technical
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Paper based exam based on C and embedded c

Round 2 - One-on-one 

(1 Question)

  • Q1. Relevant questions asked

Castle Rock Research Corporation Interview FAQs

How many rounds are there in Castle Rock Research Corporation interview?
Castle Rock Research Corporation interview process usually has 1 rounds. The most common rounds in the Castle Rock Research Corporation interview process are Technical.
What are the top questions asked in Castle Rock Research Corporation interview?

Some of the top questions asked at the Castle Rock Research Corporation interview -

  1. PIP percentages against reve...read more
  2. P&L percent of every expe...read more
  3. Channel manager and BAR rate aligned as per long weekend, saya d...read more

Tell us how to improve this page.

Castle Rock Research Corporation Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Castle Rock Research Corporation Reviews and Ratings

based on 4 reviews

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.9

Salary

4.0

Job security

4.9

Company culture

4.9

Promotions

4.0

Work satisfaction

Explore 4 Reviews and Ratings
Compare Castle Rock Research Corporation with

Z X Learning

4.5
Compare

Schoolnet India

3.9
Compare

Paper Boat(Hector Beverages Pvt. Ltd.)

4.0
Compare

Fino Paytech

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