Upload Button Icon Add office photos

Filter interviews by

Ocrolus East Intern Interview Questions and Answers

Updated 19 Jul 2024

Ocrolus East Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

There was an online aptitude test duration of 30 mins and topics covered (maths,stats,tech)

Round 2 - Coding Test 

Hacathon test with java and python

Round 3 - Technical 

(2 Questions)

  • Q1. Discussion about projects
  • Q2. Discussion about code skills

Interview Preparation Tips

Interview preparation tips for other job seekers - highly recommended

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What do you know about UNIS
  • Q2. What scope of work do you expect in this role

Interview Preparation Tips

Interview preparation tips for other job seekers - Be energetic, friendly and be sure to read the company info in advance.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 DSA, 1 SQL, 5 ML MCQ

Round 2 - One-on-one 

(2 Questions)

  • Q1. Probability Questions
  • Q2. Tree Based Models
Round 3 - One-on-one 

(2 Questions)

  • Q1. Probability Questions
  • Q2. Transformer Architecture

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

30 Questions - 90 minutes
Difficulty level - medium

Round 3 - Technical 

(1 Question)

  • Q1. General Introduction, then cross questions on projects mentioned in resume. Discussion on interest and my field of interest. After that the interviewer tested my coding skills in sql by asking 7-8 question...
Round 4 - Technical 

(1 Question)

  • Q1. Basic Introduction. Some guesstimate questions. Some questions related to business analysis. Finally he asked me about working of various ML algorithms mentioned in my resume.
Round 5 - HR 

(1 Question)

  • Q1. More of a formal talk. About my family background, my projects, what were my role in them. How do I manage myself while on a project. Finally confirmation on relocation availability.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your sql and ML topics. Have a knowledge about how to answer guesstimate problems.

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Timings: it was late night. I started the test at 10 pm

  • Q1. Partial BST

    Given a binary tree with N number of nodes, check if that input tree is Partial BST (Binary Search Tree) or not. If yes, return true, return false otherwise.

    A binary search tree (BST) is sai...

  • Ans. 

    Method 2 above runs slowly since it traverses over some parts of the tree many times. A better solution looks at each node only once. The trick is to write a utility helper function isBSTUtil(struct node* node, int min, int max) that traverses down the tree keeping track of the narrowing min and max allowed values as it goes, looking at each node only once. The initial values for min and max should be INT_MIN and INT_M

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was the interviw round.
the environment was good.
the interviewer was very nice to me.

  • Q1. Merge two sorted linked lists

    You are given two sorted linked lists. You have to merge them to produce a combined sorted linked list. You need to return the head of the final linked list.

    Note:

    The give...
  • Ans. 

    Merge is one of those nice recursive problems where the recursive solution code is much cleaner than the iterative code. You probably wouldn’t want to use the recursive version for production code, however, because it will use stack space which is proportional to the length of the lists.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in BengaluruEligibility criterianoneJupiter Money interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Spring Boot with java, Operating Systems, Database Management System, Amazon Web ServicesTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Please have a strong hold on data structures mainly linked lists, arrays, maths, stacks, trees
Tip 2 : Must explore about DBMS. Means SQL, writing efficient queries, about indexing and other SQL backend process.
Tip 3 : Should work on spring boot. try build some project using spring boot with java (Gradle) as Jupiter's backend tech is mainly based on spring boot with java.

Application resume tips for other job seekers

Tip 1 : Mention only those skills on which you have worked on properly. no need to flood the resume with skills about which you need a little.
Tip 2 : Must mention the links of projects which you have worked on.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

The online test was for 2 hrs in which 5 coding questions were asked. 3 questions were pretty easy and 2 were of medium difficulty level. I was able to solve all 5 questions.

  • Q1. Shortest path in an unweighted graph

    The city of Ninjaland is analogous to the unweighted graph. The city has ‘N’ houses numbered from 1 to ‘N’ respectively and are connected by M bidirectional roads. If a...

  • Ans. 

    Start BFS traversal from source vertex.
    While doing BFS, store the shortest distance to each of the other nodes and also maintain a parent vector for each of the nodes.
    Make the parent of the source node as “-1”. For each node, it will store all the parents for which it has the shortest distance from the source node.
    Recover all the paths using the parent array. At any instant, we will push one vertex in the path array an...

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It started with the introduction and then we had a discussion on the projects I had made. He asked for several Backend and Database concepts like locking in DB, sessions, etc as I had mentioned backend internship in my resume. It took around half an hour.

Then he gave me a coding question based on the graph

  • Q1. Capture region

    You are given a matrix having ‘N’ rows and ‘M’ columns. Each cell of the matrix is either ‘X’ or ‘O’. You need to flip all those regions of ‘O’ which are surrounded by ‘X’ i.e. you need to c...

  • Ans. 

    I first took some time to think of a solution then told him the DFS as well as BFS approach. Then he made me run through several test cases on the pseudo-code. Once he was satisfied with the approach then I coded it on the editor and ran several test cases which he gave.
    Finally, He asked me about the Time-Complexity and Space-Complexity of the code.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Madan Mohan Malaviya University Of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteriaGood PH score on ElitmusJupiter Money interview preparation:Topics to prepare for the interview - Array, Graphs, Dynamic Programming, Operating System, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice 250+ standard quality questions.
Tip 2 : Do some good real-life projects in Front-end or Backend Development
Tip 3 : Try to find an internship that will not only enhance your development skills but also increase your resume selection chances.

Application resume tips for other job seekers

Tip 1 : Add quality projects (2 will be sufficient)
Tip 2 : Add your coding profile links.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Feb 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Two DSA questions were asked in this round in 45 min.

  • Q1. Maximum Subarray Sum

    Given an array of numbers, find the maximum sum of any contiguous subarray of the array.

    For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since w...

  • Ans. Brute Force Approach
    1. Create a nested loop. The outer loop will go from i = 0 to i = n - k. This will cover the starting indices of all k-subarrays
    2. The inner loop will go from j = i to j = i + k - 1. This will cover all the elements of the k-subarray starting from index i
    3. Keep track of the maximum element in the inner loop and print it.
    Space Complexity: O(1)Explanation:

    O(1) because the extra space being used (looping vari...

  • Answered Anonymously
  • Q2. Find Odd Occurrence Element

    You are given an array of 'N' elements. In this given array, each element appears an even number of times except one element which appears odd no. of times. Your task is...

  • Ans. Brute force

    We will find the frequency of all elements by iterating over the whole array N times. On completion of iteration if the frequency of element is odd. We will return this element else keep on iterating.

    1. Let’s say we have a given array ARR and pair sum K.
    2. Iterate over ARR[i] for each 0 <= i < N and do:
      1. COUNT=0
      2. Iterate over ARR[j] for each 0 <= j < N and do:
        1. If ARR[i] = ARR[j] then increase COUNT by 1.
      3. If ...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaM.tech and B.tech banches allowedJupiter Money interview preparation:Topics to prepare for the interview - maths, probability, stack, queue, linked list, pointers, algorithmsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice dsa from leetcode
Tip 2 : Compete in coding contests
Tip 3 : Do at least 2-3 projects

Application resume tips for other job seekers

Tip 1 : If you have some past experience, add it.
Tip 2 : Also add your projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

Ocrolus East Interview FAQs

How many rounds are there in Ocrolus East Intern interview?
Ocrolus East interview process usually has 3 rounds. The most common rounds in the Ocrolus East interview process are Aptitude Test, Coding Test and Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

CRED Interview Questions
3.5
 • 38 Interviews
BharatPe Interview Questions
3.5
 • 38 Interviews
Money View Interview Questions
4.3
 • 30 Interviews
Jupiter Money Interview Questions
3.4
 • 29 Interviews
LendingKart Interview Questions
3.2
 • 28 Interviews
Kissht Finance Interview Questions
3.9
 • 26 Interviews
TIDE Interview Questions
4.5
 • 24 Interviews
Uni Cards Interview Questions
4.3
 • 22 Interviews
View all
Data Verifier
130 salaries
unlock blur

₹1.2 L/yr - ₹4 L/yr

Verifier
34 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Quality Analyst
34 salaries
unlock blur

₹2.5 L/yr - ₹7.6 L/yr

Technical Operations Engineer
19 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Data Analyst
16 salaries
unlock blur

₹1.4 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Ocrolus East with

Perfios Software Solutions

3.6
Compare

Signzy Technologies

3.0
Compare

Crediwatch

1.8
Compare

Rubique

2.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview