__Joker
BAN USER
- 0of 0 votes
AnswersDatabase query response times have increased. An API which is dependent on this database will see - *
- __Joker in India
This is a multi-select answer.
Increase in the latencies.
Increase in RAM utilisation on the API servers
Increase in CPU utilisation on the API servers
Increase in 200 response codes
Increase in 5xx responses| Report Duplicate | Flag | PURGE
unknown Software Developer Software Design - 0of 0 votes
AnswerSetting a value in cache is failing. What are the acceptable production practices? *
- __Joker in India
1. Raise an exception immediately
2. Retry in equal intervals of time until the set call succeeds
3. Retry with exponential back off until the set call succeeds
4. Retry 2 or 3 times with exponential back off.
5. Retry 2 or 3 times with equal intervals of time.
This is a multi-select question.| Report Duplicate | Flag | PURGE
unknown Software Developer System Design - 0of 0 votes
AnswerWe have a database that allows 2 concurrent writes and 3 concurrent reads. Each read/write operation takes 10ms to complete. What is the time taken to process all the requests in the orders mentioned (all requests can be assumed to be coming in at the same instant of time and are operating on a single row in a table) - 1. write, write, read, write, read, read, write, read 2. read, write, read, write, read: *
- __Joker in India
1. 30 ms 2. 10ms
1. 60 ms 2. 10ms
1. 10 ms 2. 10ms
1. 20 ms 2. 10ms
1. 10ms 2. 20ms
1. 60ms 2. 30ms| Report Duplicate | Flag | PURGE
unknown Software Developer Database
Repannasteven1246, Analyst at Accenture
Creative, highly visual fashion professional who can brilliantly mix and match the technical expertise and intuition like fabric and color ...
RepI am Susan From Wasilla USA. and my strong interest in yoga and reading historical books. I have a large ...
Any body got confused with "rotated by k positions". Does it mean k is known ?
- __Joker October 10, 2018I interpreted as k is known. So that answer should be O(1) in my opinion.
The expected answer is O(logn).
I think the interpretation should be rotated randomly by k position, k being, unknown.
What do others think ?