Position - Entry Level
The online assessment included 15 MCQs related to Operating Systems and Computer Networking. One problem (also MCQ) was more like a server load problem to calculate approx. time taken to upload and download files. There were two coding problems.

Test cases -
Input - N=2 rollMax=[1,2,1,2,1,2] Output - 33 (Since {11}, {33}, {55} are not allowed. So 6 * 6 - 3 )
Input - N=3 rollMax=[1,1,1,1,1,1] Output - 150 (6 * 5 * 5)
Constraints - N<= 1e5 and rollMax[i]<=50

Test cases -
P.S. - Any efficient method to solve the first problem