Delight Interview Questions, Process, and Tips

Ques:- Security force experience
Ques:- Why we hire you, being a fresher when at the same time wehave experinced professionals like CAs, MBAs line up?
Ques:- There are 3 baskets. one of them have apples, one hasoranges only and the other has mixture of apples andoranges. The labels on their baskets always lie. (i.e. ifthe label says oranges, you are sure that it doesn't haveoranges only,it could be a mixture) The task is to pick onebasket and pick only one fruit from it and then correctlylabel all the three baskets.
Recent Answer : Added by Gili On 2022-09-02 17:04:56:

Assum that the lables are : mixture, apples and orange
we have to take out one fruit from the mixture basket an see:
if it’s an apple –
it means that this basket is filled with apples
and so, the third basket is mixture
and the second one is filled with oranges.
if it’s an orange –
it means that this basket is filled with oranges
and so, the second basket is mixture
and the third one is filled with apples.

Ques:- A motorcyclist goes from Bombay to Pune, a distance of 192 kms at an average of 32 kmph speed. Another man starts from Bombay by car 2 ½ hours after the first, and reaches Pune ½ hour earlier. What is the ratio of the speed of the motorcycle and the car?
Ques:- Arun, Kamal and Vinay invested Rs.8000, Rs.4000 and Rs.8000 respectively in a business. Arun left after six months. If after eight months, there was a gain of Rs.4005, then what will be the share of Kamal?
A. Rs. 1780
B. Rs. 1602
C. Rs. 1335
D. Rs. 890
Recent Answer : Added by Muthu Mahesh On 2021-10-25 03:53:35:

Total inversement =20000
Arun and vinay =40% ,40%
Kamal =20%
8 month gain = 4005
Arun and vinay share of 6 months=1201.5
Kamal share of 6 month = 600.75
Now Arun left, then remaining 2 month’s profits =1001.25
In this case kamal have 33.3% and vinay have remaining percentage of 1001.25
33.3% of 1001.25 is 333.4
Now, total share of kamal is 600.75+333.4=934.16

Ques:- You are given with two identical iron bars. one of them is magnetized and the other is not. u are suppose to find which one is magnetized. u are not suppose to use any other thing.
Ques:- In a company 3/5 of people know shorthand 1/4th know typing and 1/5 know both. What fraction of people do not know both?
Recent Answer : Added by Admin On 2020-05-17 11:59:27:

4/5

Ques:- If VICTORY is coded as YLFWRUB, how can SUCCESS be coded ?
Recent Answer : Added by Énio Carlos On 2022-08-14 16:46:41:

The answer for this question is very simple: it is called Ceaser Cipher.
It consists of replacing a character by another located in (current character position + (key-1)), where key = how many positions you want to skip.
For Example: VICTORY -> YLFWRUB with the key = 3.
Then SUCCESS -> QXFFHQQ

Note: it should work like a circle(Z+1 = A).

Ques:- About company & related to requirement.
Ques:- WHAT YOU HAVE DONE IN YOUR SUMMER TRAINING
Ques:- How does this particular position and job fit in with your career goals?
Ques:- David invested certain amount in three different schemes. A, B and C with the rate of interest 10% p.a., 12% p.a. and 15% p.a. respectively. If the total interest accrued in one year was Rs. 3200 and the amount invested in scheme C was 150% of the amount invested in scheme A and 240% of the amount invested in scheme B, what was the amount invested in scheme B?
Ques:- If a cow produces its first she-calf at age two years and after that produces another single she-calf every year, how many she-calves are there after 12 years? assuming none die.
Ques:- What is the importance of computer.
Ques:- What about your self? aim strenth etc?
Ques:- About personal bio data?
Ques:- Relative experience to the role offered
Ques:- A man owns 2/3 of a computer service buroue business and sells 3/4 of his share for $75000.What is the value of the business?
Recent Answer : Added by Umayer On 2021-12-04 15:01:01:

$150000

Ques:- How do you describe yourself as a person?
Ques:- In each questions below are given two statements followed by two conclusions numbered I and II.
Statements :
Some books are pens. No pen is pencil.
Conclusions :
I. Some books are pencils.
II. No book is pencil.
A. if only conclusion I follows
B. if only conclusion II follows
C. if either conclusion I or II follows
D. if neither conclusion I nor II follows
E. if both conclusions I and II follow
Recent Answer : Added by Akanksha Jha On 2022-10-17 15:58:01:

E

Ques:- The sum of three consecutive even numbers is 36.What is the middle number?
Recent Answer : Added by C nol On 2022-08-24 17:02:45:

Is it not 24?

Ques:- India : New Delhi : : Pakistan : ?
A. Lahore
B. Islamabad
C. Peshawar
D. Rawalpindi
Recent Answer : Added by Admin On 2020-05-17 12:03:24:

the capital of India is New Delhi
the capital of Pakistan is Islamabad
the ans is(b)Islamabad

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:- What will yo do to acquire new clients?
Ques:- Have you made any individual presentations recently? How did you prepare?
Ques:- Personal Background & conditions
Ques:- How many people are flying in airplanes at any time in India?
Ques:- Two pipes X and Y can fill a cistern in 12 minutes and 15 minutes respectively while a third pipe Z can empty the full tank in 6 minutes. X and Y are kept open for 5 minutes in the beginning and then Z is also opened. In what time is the cistern emptied?
Ques:- It's always 1 to 6, it's always 15 to 20, it's always 5, but it's never 21, unless it's flying. What is this?
Recent Answer : Added by Rahul On 2021-07-19 18:31:56:

Dice

Ques:- A works thrice as much as B. If A takes 60 days less than B to do a work then find the number of days it would take to complete the work if both work together?

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