Open In App

Cloudera Interview Experience for SDE

Round 1: Virtual online test:  4 coding questions and 1 SQL Query.

Around 300 students gave the test and 35 were shortlisted for the interview. There were 3 rounds of interviews, 2 technical and 1 HR.



Round 1: 2 coding questions, 1 output-based question, CN and DBMS

Ex arr=[1,2,5]
We can make 1 by using 1 rupee coin
We can make 2 by using 2 rupees coin
We can make 3 by using 1 rupee and 2 rupees coins
But we cannot make 4 rupees
Hence, return 4
Ex arr1=[1,3,2,5,4,6]
    arr2=[1,2,4,6]
return true
For the same arr1 if arr2=[2,3,4,6] 
return false
int add(int a, int b){
   cout << "2 params";
   return a + b;
}
int add(int a, int b, int c = 0){
   cout << "3 params";
   return a+b+c;
}
int main(){
   cout << add(2,3);
}

11 students were shortlisted for this round.



Round 2: Resume-based questions, 1 coding question, OS, CN, and DBMS

Round 3: HR Round: 3 students got selected and I was one among them.

Article Tags :