Pride Hotel Pune Interview Questions, Process, and Tips

Ques:- How did you spend your last sunday?
Ques:- Field experience, team handling skill, team players role, last jobs experience,job change reason.
Ques:- What are you doing?
Ques:- Why are you want to leave your present Job?
Ques:- Two pipes A and B can fill a tank in 20 and 30 minutes respectively. If both the pipes are used together, then how long will it take to fill the tank?
Recent Answer : Added by Rashid Ather Deshmukh On 2021-10-07 15:42:06:

12

Ques:- A rich man died. In his will, he has divided his gold coins among his 5 sons, 5 daughters and a manager. According to his will: First give one coin to manager. 1/5th of the remaining to the elder son.Now give one coin to the manager and 1/5th of the remaining to second son and so on….. After giving coins to 5th son, divided the remaining coins among five daughters equally.All should get full coins. Find the minimum number of coins he has?
Recent Answer : Added by Biplab Nath On 2021-07-31 16:35:53:

Answer: 3121 gold coins
Let total no of coins be M
Let the disbursement D to each son:

D1 = 1 + (M – 1)/5 = (M + 4)/5
D2 = 1 + ( M – D1 -1)/5 = (D1) * 4/5
D3= (D2) * 4/5
D4= (D3) * 4/5
D5= (D4) * 4/5
Total disbursements to sons=
= ∑D= (M+4)*1/5[ 1+4/5+(4/5)(4/5)+ (4/5)(4/5)(4/5)+(4/5)(4/5)(4/5)(4/5) ]
= (2101/3125)*(M+4)
Thus balance left for daughters =M-{(2101/3125)*(M+4)}
=(1024M-8404)/3125
This balance should be a positive integer ( assuming M and all disbursements are full coins )
Thus 1024M-8404 should be a multiple of 3125….so….
1024M – 8404 = N*3125 where N is an integer
Using Python code:
n=int(input(“Enter num n: “))
X=int()
a=int()
a=0
X=’ ‘
for a in range(0,n+1):
a=a+1
X= (3125*a + 8404)/1024
if (3125*a + 8404)% 1024== 0:
print(X,a)
Enter num n: 10000
3121.0 1020
6246.0 2044
9371.0 3068
12496.0 4092
15621.0 5116
18746.0 6140
21871.0 7164
24996.0 8188
28121.0 9212
We get minimum value of N = 1021 and M = 3121 gold coins

Ques:- Reason behind leaving the last job?
Ques:- What do you think your existing boss will rate you on a scale of 1-10
Ques:- what are you know about our company
Ques:- Personal background & qualification.
Ques:- What is your first reaction when your senior manager assigns a task that you think is impossible?
Ques:- Personal, educational experience.
Ques:- A train passes two cars moving in the direction at 45km/hr and 50km/hr in 36 sec and 54 sec respectively. What is the length of the train?
Ques:- What is Learning?
Ques:- What approach do you take in getting your people to accept your ideas or department goals?
Ques:- At present, the ratio between the ages of Arun and Deepak is 4:3. After 6 years, Arun’s age will be 26 years. What is the age of Deepak at present?
Recent Answer : Added by Beauty Chakraborty On 2022-05-17 08:54:03:

21

Ques:- My personal details and my job profile.
Ques:- Two pipes A and B together can fill a cistern in 4 hours. Had they been opened separately, then B would take taken 6 hours more than A fill the cistern. How much time will be taken by A to fill the cistern separately?
Recent Answer : Added by Vemula Rohan Kumar Reddy On 2021-09-25 16:19:51:

A takes 6 hours to fill

Ques:- What is the power of 2?optionsa.2068b.2048c.2668please explain the concept behind this.It can be asked interms of power 3,4 etc.
Ques:- How many numbers up to 100 are divisible by 7?
Recent Answer : Added by DK BOSS On 2021-07-30 16:27:11:

divide 100 by 7, and you get 14.28. (Obviously you aren’t talking about decimals here) and so 14 numbers can be divisible by 7 up to 100.

The answer is 14.

Ques:- 125 : 343 :: 343 : __
Recent Answer : Added by Shweta Rathore On 2023-04-18 12:08:58:

FYI

Ques:- A certain type of mixture is prepared by mixing brand A at Rs.9 a kg. with brand B at Rs.4 a kg. If the mixture is worth Rs.7 a kg., how many kgs. of brand A are needed to make 40kgs. of the mixture?
Recent Answer : Added by Admin On 2022-09-29 17:39:56:

Answer:

24

Step-by-step explanation:

A + B = 40.

And at Rs 7 a kg for 40 kg, you want a total of Rs.280.

So the second equation is 9A + 4B = 280

From the first equation: B = 40 – A

and sub into the second equation:

9A + 4(40-A) = 280

9A + 160 – 4A = 280

5A = 120

A = 24.

And you should check: B should equal 40-24 = 16. Check with the final equation: 9*24 + 4*16 = 216 + 64 = 280. So it works.

Your answer, of course, is A = 24

Ques:- You are overqualified for this position?
Ques:- Do you have experience in medical billing?
Ques:- if 1 is indicated by $ and 0 indicated by * find the value of {[LCM of 2,3,5]+6}1/2 ?
Recent Answer : Added by Admin On 2020-05-17 12:03:21:

First we need to find out LCM of 2,3,5
that is 30,,,
then add 30 to 6 we get 36…
then divide it by 2 we get 18..
so 18 would be written interms of binay as 10010
means..Answer is
$**$*

Ques:- Why are you not joining your father business?
Ques:- About family beground?
Ques:- There is a 5digit no. 3 pairs of sum is eleven each. Last digit is 3 times the first one. 3 rd digit is 3 less than the second. 4 th digit is 4 more than the second one. Find the digit.
Recent Answer : Added by Admin On 2020-05-17 11:59:40:

let first digit be ‘X’
then 5th digit is ‘3X’
let 2nd digit be ‘Y’
then 3rd digit is ‘Y-3’
and 4th digit is ‘Y+4’
then the no is ‘(X)(Y)(Y-3)(Y+4)(3X)’
from the above we can say 3X<=9 so X<=3 and any of the digit in the number is <=9 and also given that 3 pairs sum is 11... so make trial and error.. if X=1...any of the no is 10 which is wrong trial.... if X=2...then let Y+4=9 ==> Y=5
then no is 25296
first pair 2+9=11
second pair 2+9=11
third pair 5+6=11
now the answer is 25296

Ques:- Tell me about self, family details.
Ques:- What was your role in your last job?

Contact with us regarding this list

Devendra Bhardwaj With a decade of experience as a Job Hiring Expert, I am a results-driven professional dedicated to elevating recruitment strategies. My expertise lies in navigating the dynamic landscape of talent acquisition, employing innovative approaches to attract, assess, and secure top-tier candidates. I excel in optimizing hiring processes, leveraging cutting-edge technologies, and fostering collaborative relationships with stakeholders. A keen understanding of industry trends allows me to stay ahead, ensuring a competitive edge in securing the best talent for your organization. I am passionate about connecting the right people with the right opportunities and thrive in creating impactful, streamlined recruitment solutions.

Scroll to top