Update appNew update is available. Click here to update.
Software Engineer
Accolite
upvote
share-icon
3 rounds | 4 Coding problems
views
111 views
comment
0 comments
upvote
0 upvotes
Interview preparation journey
expand-icon
Preparation
Duration: 6 month
Topics: Data structure and algorithmoperating systemDBMSoopscomputer networkweb development
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
Duration40 minute
Interview date6 Aug 2021
Problems1
Add Linked Lists

Given two numbers represented by linked lists. Your task is find the sum list and return the head of the sum list.

The sum list is a linked list representation of addition of two numbers.

view more
Problem approach

PROGRAM:

class Solution
{
public:
//Function to add two numbers represented by linked list.
Node*reverse(struct Node*head){
Node*curr=head;
Node*prev=NULL;
Node*nxt;
while(curr!=NULL){
nxt=curr->next;
curr->next=prev;
prev=curr;
curr=nxt;
}
return prev;
}
public:
struct Node* addTwoLists(struct Node* first, struct Node* second)
...

view more
Try solving now
02
Round
Medium
Video Call
Duration45 minute
Interview date7 Aug 2021
Problems1
Flatten Linked List
view more
Problem approach

PROGRAM:

Node*merge(Node*a,Node*b){//a=root b=root ka right wala
if(a==NULL)return b;
if(b==NULL)return a;
Node*res;
if(a->datadata)
{
res=a;
res->bottom=merge(a->bottom,b);
}
else{
res=b;
res->bottom=merge(a,b->bottom);
}
res->next=NULL;
return res;
}
Node *flatten(Node *root)
{
if(root==NULL || root->next==NULL)...

view more
Try solving now
03
Round
Easy
Video Call
Duration30minute
Interview date7 Aug 2021
Problems2
Operating System Question

Ques: What is thread in OS?
 

Problem approach

Tip 1 : Try to give answer with the real life examples
Tip 2 : Give answers in your own language and avoid the bookish language..

Basic HR Questions

what does my father and mother do? working member in family?

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
Software Engineer
3 rounds | 3 problems
Interviewed by Mindtree
5478 views
4 comments
0 upvotes
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
3574 views
0 comments
0 upvotes
company logo
Software Engineer
4 rounds | 6 problems
Interviewed by Providence Global Center LLP
3995 views
0 comments
0 upvotes