Update appNew update is available. Click here to update.
SDE - 1
Accolite
upvote
share-icon
3 rounds | 4 Coding problems
views
93 views
comment
0 comments
upvote
0 upvotes
Interview preparation journey
expand-icon
Preparation
Duration: 10 month
Topics: Data structure and algorithmoperating systemDBMSoopscomputer networkweb developmentCYBER SECURITY
Tip
Tip

Tip 1 : Be very clear with your project explanation.
Tip 2 : Also try to cover all the cs core subjects explanation clearly.

Application process
Where: Campus
Eligibility: 6.5 cgpa and 65% 12th marks minimun requirement
Resume Tip
Resume tip

Tip 1 : Make it clean with appropriate knowledge.
Tip 2 : Provide true information and avoid telling lie in which You are not sure.

Interview rounds
01
Round
Medium
Video Call
Duration45 minute
Interview date6 Aug 2021
Problems1
Swap Nodes in Pairs

You are given a singly linked list of integers.

Your task is to swap every two adjacent nodes, and return the head of the modified, linked list.

For Example:

view more
Problem approach

class Node:

# Constructor to initialize the node object
def __init__(self, data):
self.data = data
self.next = None


class LinkedList:

# Function to initialize head
def __init__(self):
self.head = None

# Function to pairwise swap elements of a linked list
def pairwiseSwap(self):
temp = self.head

# There are no nodes in linked list
if...

view more
Try solving now
02
Round
Medium
Video Call
Duration45 minute
Interview date7 Aug 2021
Problems1
Closest Binary Search Tree Value

You have been given a binary search tree of integers with ‘N’ nodes and a target integer value ‘K’. Your task is to find the closest element to the target ‘K’ in the given binary search tree.

view more
Problem approach

# Recursive Python program to find key
# closest to k in given Binary Search Tree.

# Utility that allocates a new node with the
# given key and NULL left and right pointers.
class newnode:

# Constructor to create a new node
def __init__(self, data):
self.key = data
self.left = None
self.right = None

# Function to find node with minimum
# absolute dif...

view more
Try solving now
03
Round
Easy
Video Call
Duration15 minute
Interview date7 Aug 2021
Problems2
OS based question

What is Kernel and write its main functions?
The kernel is basically a computer program usually considered as a central component or module of OS. It is responsible for handling, managing, and controlling all operations of computer systems and hardware. Whenever the system starts, the kernel is loaded first and remains in the main memory. It also acts as an interface between user application...

view more
OS based question

Explain zombie process?
Zombie process, referred to as a defunct process, is basically a process that is terminated or completed but the whole process control block is not cleaned up from the main memory because it still has an entry in the process table to report to its parent process. It does not consume any of the resources and is dead, but it still exists. It also shows that resources ar...

view more
Start a Discussion
Similar interview experiences
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Accolite
18 views
0 comments
0 upvotes
company logo
Software Engineer
5 rounds | 10 problems
Interviewed by Accolite
18 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 4 problems
Interviewed by Accolite
17 views
0 comments
0 upvotes
company logo
Software Engineer
3 rounds | 3 problems
Interviewed by Accolite
8 views
0 comments
0 upvotes
Companies with similar interview experiencs
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
57338 views
15 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
25823 views
3 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
18072 views
4 comments
0 upvotes