Acensi Interview Questions, Process, and Tips

Ques:- How would you relate your key competencies to this position?
Ques:- What’s the most interesting thing about you that we wouldn’t learn from your resume alone?
Ques:- Why do you want to work with IBM?
Ques:- A sales person multiplied by a number and get the answer 3. Instead of that number divided by 3. What is the answer she actually has to get.
Recent Answer : Added by Admin On 2020-05-17 12:00:29:

1/3

Ques:- What are Testing Techniques
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:- A polygon has maximum 1325 diagonals. How many vertices does it have?
Recent Answer : Added by DK BOSS On 2021-07-15 08:05:23:

The formula to find number of diagonals (D) given total number of vertices or sides (N) is

N * (N – 3)

D = ———–

2

Using the formula, we get
1325 * 2 = N * (N – 3)
N2 – 3N – 2650 = 0

Solving the quadratic equation, we get N = 53 or -50

It is obvious that answer is 53 as number of vertices can not be negative.

Alternatively, you can derive the formula as triange has 0 diagonals, quadrangel has 2, pentagon has 5, hexagon has 9 and so on……

Hence the series is 0, 0, 0, 2, 5, 9, 14, …….. (as diagram with 1,2 or 3 vertices will have 0 diagonals).

Using the series one can arrive to the formula given above.

Ques:- What is your ideal company or workplace?
Ques:- How is my son’s son’s mother’s daughter related to me ?
Recent Answer : Added by Mohit Nawani On 2022-09-02 17:03:16:

grand daughter

Ques:- When was the last occasion that you were given an assignment to develop your mediating skills, and what was the conclusion?
Ques:- Describe an ideal position for yourself.
Ques:- On cutting which solid parabola would be generated
Recent Answer : Added by Admin On 2020-05-17 12:01:12:

A parabola is obtained as the intersection of a cone with a
plane

Ques:- How do you feel about working weekends and night shifts?
Ques:- 6. Exp. in load testing?
Ques:- Can you describe how you solved a work or school problem?
Ques:- The largest natural number by which the product of three consecutive even natural numbers is always divisible is
A. 16
B. 24
C. 48
D. 96
Recent Answer : Added by narendra On 2022-09-18 09:01:37:

c

Ques:- The first metal to be used by man was
B. Alluminium
C. Iron
D. Silver
E. Copper
Recent Answer : Added by Admin On 2022-09-27 17:56:44:

E. Copper

Ques:- The citizens of planet nigiet are 8 fingered and have thus developed their decimal system in base 8. A certain street in nigiet contains 1000 (in base 8) buildings numbered 1 to 1000. How many 3s are used in numbering these buildings?
Recent Answer : Added by Mahak On 2022-08-14 16:29:26:

answer is one

Ques:- Find LCM of 87 and 145 is:
Recent Answer : Added by b On 2021-08-11 19:02:58:

435

Ques:- What is the disappointment in your life?
Ques:- Rate your self in ASP.NET
Ques:- What is that you want to achieve in the position?
Ques:- Do you know how to measure the earth resistance?
Ques:- How do you judge people?
Recent Answer : Added by Rahul On 2023-07-11 15:11:54:

By their Ability to suck dick.

Ques:- consider expresion ‘ab’ . what happens when ‘a’ is divided by ‘c’ & ‘b’ is multiplied by ‘c’.
Recent Answer : Added by tsion On 2022-03-19 16:02:17:

exactly

Ques:- 5 men or 8 women do equal amount of work in a day. a job requires 3 men and 5 women to finish the job in 10 days how many woman are required to finish the job in 14 days.
Recent Answer : Added by Admin On 2022-09-29 17:03:59:

Lets assume total LCM(5,8) = 40units.
As, 5 men or 8 women do equal amount of work in a day,
1 Man does 8units/day and 1 Woman does 5units/day.
3M and 5W in 10 days do (3*8 + 5*5)*10 = 490units
To do 490 units in 14 days, number of Women required = 490/(14*5) = 7

Ques:- When x is real what is the least value of (x**2-6*x+5)/(x**2+2*x+1)
Recent Answer : Added by Admin On 2020-05-17 12:01:23:

(x**2 – 6* x + 5) = (x-1)*(x-5)
(x**2 + 2 * x + 1) = (x + 1) * (x+1) = (x+1)**2
For what x is (x-1)*(x-5)/( (x+1)**2) a minimum?
One way to answer this question is by using calculus.
Take the derivative, and set to zero.
Since this is a fraction of polynomials, and a fraction is
zero only if it’s numerator is zero, we need calculate only
the numerator of the derivative and set it to zero.
The numerator of the
Derivative of (x-1)*(x-5)/( (x+1)**2) is
( (x-1) + (x-5) ) ( x+1)**2 – (x-1)(x-5)( 2 (x+1) )
= (2 x – 6) (x+1)**2 – (2) (x-1)(x-5) (x+1)
= 0
Divide through by 2 (x+1)
(x-3)(x+1) – (x-1)(x-5) = 0
(x**2 – 2 x – 3 ) – (x**2 – 6 x + 5) = 0
x**2 – x**2 – 2 x + 6 x – 3 – 5 = 0
4 x – 8 = 0
x = 2
Plugging in x = 2 into the original
(x**2-6*x+5)/(x**2+2*x+1)
gives us (2**2 – 6 * 2 + 5)/(2**2 + 2*2 + 1)
= (4 – 12 + 5) / (4 + 4 + 1) = -3/9 = -1/3
Least value is -1/3

Ques:- Reason of Joining in the company?
Ques:- Respected sir/madam, i have to face the bank po interview for the first time. i want to know whether i can converse in hindi at the interview as i can not communicate well in english. thanks.
Ques:- A sum of money lent out at S.I. amounts to Rs. 720 after 2 years and to Rs. 1020 after a further period of 5 years. The sum is?
Recent Answer : Added by Aishwarya Gupta On 2020-11-17 15:27:28:

600

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