Open In App

Oracle Interview Experience for Cloud Tech Consultant FTE

There was a total of 3 rounds of interviews. One online test and 2 technical interview rounds. 1 Aptitude Test, 2 Entirely Technical Interview all in one day. Due to covid-19 all the process below was conducted online on Zoom. Within 1 hour of the process completion we received the offer letter from Oracle.

Online Round:  



Technical Interview Round 1: The interview was conducted on the Zoom, and it was around 45 mins. The interview started with a basic self-introduction and then the interviewer started with the technical questions.




#include <bits/stdc++.h>
using namespace std;
//Time Complexity:O(n^2) 
//SpaceO(1) extra space complexity
void my_sort(vector<string>&v)
{
    int n=v.size();
    for(int i=0;i<n-1;i++)
    {
        for(int j=i+1;j<n;j++)
        {
            if(v[i]>v[j])
            {
                swap(v[i],v[j]);
            }
        }
    }
}
int main() 
{
    // your code goes here
    int n;
    cin>>n;
    vector<string>v;
    for(int i=0;i<n;i++)
    {
        string s;
        cin>>s;
        v.push_back(s);
    }
    my_sort(v);
    for(auto ch:v)
    {
        cout<<ch<<endl;
    }
    return 0;
}

24 people out of 36 moved to Round 2 



Technical Interview Round 2: The interview was conducted on the Zoom, and it was around 30 mins. The interview started with a basic self-introduction and then the interviewer started with the technical questions.

Finally 15 people out of 24 got the selection mail and I was one of them.


Article Tags :