Find best Interview questions and answer for Zefr Job. Some people added Zefr interview Questions in our Website. Check now and Prepare for your job interview. Interview questions are useful to attend job interviews and get shortlisted for job position. Find best Zefr Interview Questions and Answers for Freshers and experienced. These questions can surely help in preparing for Zefr interview or job.
This page contains the most recently asked technical questions and answers in the Zefr.
All of the questions listed below were collected by students recently placed at Zefr.
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?
Ques:- Given a credit card number with a certain number of fixed digits and a certain number of digit placeholders, find the number of solutions such that the entire number yields a remainder of 3 when divided by 13. Use properties of modulus
Ques:- Which way should the key turn in a car door to unlock it?
Ques:- What has been the most important person or event in your own self development?
Ques:- Tell me about any quality efforts you have overseen or implemented. Describe some of the challenges you faced and how you overcame them.
Ques:- How do you estimate staff requirements?
Your donation keeps our website running smoothly and accessible to all. Support us today to ensure we continue to provide valuable information and resources.
Ques:- . The place in India receiving the lowest rainfall is(1) Jaisalmer(2) Leh(3) Bikaner(4) Jodhpur
Ques:- Who is the new leader of the isro
Ques:- The ?Hypothetical Problem?
Ques:- Which one of the following rivers flows towards the north? A. Krishna
B. Tapti
C. Narmada
D. Chambal
Ques:- What is role of store manegment
Ques:- What made me think about joining the social sector?
Ques:- Explain about the future of computer and IT students?
Ques:- A, B and C are entered into a partnership. A invested Rs.6500 for 6 months, B invested Rs.8400 for 5 months and C invested for Rs.10000 for 3 months. A is a working partner and gets 5% of the total profit for the same. Find the share of C in a total profit of Rs.7400.
Ques:- The area of a square field 3136 sq m, if the length of cost of drawing barbed wire 3 m around the field at the rate of Rs.1.50 per meter. Two gates of 1 m width each are to be left for entrance. What is the total cost?
Ques:- Evaluate 22004 – 29303 + 101299 – 59532 = ?
Ques:- B – 1, B – 2 and B – 3 are three buses that travel from Mumbai to Delhi. Each bus starts at a different time and arrives at a different time. The digit in the bus number and the order of their departure of arrival is not the same. The first bus to leave Mumbai is the third bus to reach Delhi. Which is the first bus to leave Mumbai?
Ques:- How is Ramu’s mother-in-law’s only daughter’s son related to Ramu ?
Ques:- A man purchases 8 pens for Rs.9 and sells 9 pens for Rs.8, how much profit or loss does he make?
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