Netlink interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Netlink
upvote
share-icon
3 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
When I was in my school days I was not that much fond of technology but at that stage I didn't knew that I am going to choose my career in this field of study. But anyhow in a cycle of happenings, I ended up being here. I started my programming journey from the second year of my engineering, I practised DSA from leetcode and codestudio. I also learned Web Development in the third year, I started applying for jobs from linkedin and several other platforms. Luckily, I got a chance to work at NetLinks.
Application story
I got to know that Netlink is going to visit our campus for hiring process and I thought that It could a profile that I can crack. So, I started practising DSA and revision of some frequently asked questions.
Why selected/rejected for the role?
I think that I was confident and correct at the same moment that made a positive impact of my personality and knowledge on the interviewer. So, he was impressed that's why I was selected.
Preparation
Duration: 3 months
Topics: Computer Networks, Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application process
Where: Campus
Eligibility: 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Interview rounds

01
Round
Easy
Online Coding Test
Duration60 minutes
Interview date23 Sep 2021
Coding problem2

1. Fibonacci Sum

Moderate
15m average time
85% success
0/80
Asked in companies
WalmartNatwest GroupMathworks

Given two integers, ‘N’ and ‘M’, your task is to find the sum of Fibonacci numbers between ‘fib(N)’ and ‘fib(M)’ where ‘fib(N)’ represents the Nth Fibonacci number and ‘fib(M)’ represents the Mth Fibonacci number. The sum is given by sum(N, M) = fib(N) + fib(N+1) + fib(N+2) … fib(M). Since the answer could be large, so you have to return the sum modulo 10^9 + 7.

The fibonacci relation is given by:

fib(0) = 0 
fib(1) = 1
fib(n) = fib(n-1) + fib(n-2), n >= 2, where fib(n) represents the nth fibonacci number.
Try solving now

2. Reverse Linked List

Moderate
15m average time
85% success
0/80
Asked in companies
IBMQuikrMicrosoft

Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

For example:
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Follow Up :
Can you solve this problem in O(N) time and O(1) space complexity?
Try solving now
02
Round
Easy
Face to Face
Duration50 minutes
Interview date30 Sep 2021
Coding problem2

1. Theory Questions

1) What are the differences between abstraction - encapsulation?
2) What are OOPS concept? 
3) What are the differences between interface - abstract?
4) Explain dependency Injection in detail. 
5) What are the different modes to connect .Net application with database?
6) Basic SQL - Joins

2. Check Bipartite Graph

Moderate
50m average time
50% success
0/80
Asked in companies
UberWalmarteBay

Given a graph, check whether the graph is bipartite or not. Your function should return true if the given graph's vertices can be divided into two independent sets, ‘U’ and ‘V’ such that every edge (‘u’, ‘v’) either connects a vertex from ‘U’ to ‘V’ or a vertex from ‘V’ to ‘U’.

You are given a 2D array ‘edges’ which contains 0 and 1, where ‘edges[i][j]’ = 1 denotes a bi-directional edge from ‘i’ to ‘j’.

Note:
If edges[i][j] = 1, that implies there is a bi-directional edge between ‘i’ and ‘j’, that means there exists both edges from ‘i’ to ‘j’ and to ‘j’ to ‘i’.

For example

Given:
‘N’ = 3
‘edges’ = [[0, 1, 1], [0, 0, 1], [0,0,0]]. 

Try solving now
03
Round
Easy
HR Round
Duration15 minutes
Interview date7 Oct 2022
Coding problem1

1. Basic HR Questions

Q1. What are your salary expectations?
Q2. What is your family background?
Q3. Share details of your previous job.
Q4. Why are you looking for a change?
Q5. Tell me about yourself.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
SDE - 1
3 rounds | 5 problems
Interviewed by Netlink
794 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Netlink
731 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Netlink
728 views
0 comments
0 upvotes
Software Engineer
3 rounds | 5 problems
Interviewed by Netlink
817 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114578 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57824 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34960 views
7 comments
0 upvotes