Upload Button Icon Add office photos

Arcesium

Compare button icon Compare button icon Compare

Filter interviews by

Arcesium Software Developer Intern Interview Questions and Answers

Updated 6 Jan 2022

12 Interview questions

A Software Developer Intern was asked
Q. 1) Maximum meetings in one room 2)Bottom view of tree 3) Serialize deserialize binary tree 4) Difference between Virtual destructor in java and c++
Ans. 

Interview questions for Software Developer Intern

  • Maximum meetings in one room can be calculated using greedy approach

  • Bottom view of tree can be obtained using level order traversal and a map to store horizontal distance

  • Serialization and deserialization of binary tree can be done using preorder traversal

  • Virtual destructor in Java is automatically called while in C++ it needs to be explicitly defined

A Software Developer Intern was asked
Q. 

Number of Islands Problem Statement

You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

An island is defined as a group of 1s (rep...

Ans. 

The task is to determine the number of islands in a grid consisting of 0s and 1s.

  • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

  • Mark visited 1s as 0 to avoid counting them again.

  • Increment the island count each time a new island is found.

  • Consider all 8 adjacent cells (horizontally, vertically, diagonally) while performing DFS.

  • Handle edge cases like out of bounds and already visit...

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
A Software Developer Intern was asked
Q. 

N-th Node From The End Problem Statement

You are provided with a Singly Linked List containing integers. Your task is to determine the N-th node from the end of the list.

Example:

Input:
If the list is ...
Ans. 

Find the N-th node from the end of a Singly Linked List containing integers.

  • Traverse the list to find the length L of the list.

  • Calculate the position of the N-th node from the beginning as L - N + 1.

  • Traverse the list again to reach the calculated position and return the node's value.

  • Handle edge cases like N being equal to 1 or equal to the length of the list.

A Software Developer Intern was asked
Q. 

Topological Sort Problem Statement

Given a Directed Acyclic Graph (DAG) consisting of V vertices and E edges, your task is to find any topological sorting of this DAG. You need to return an array of size V...

Ans. 

Implement a function to find any topological sorting of a Directed Acyclic Graph (DAG).

  • Use Depth First Search (DFS) to traverse the graph and add vertices to the result in reverse order of finishing times.

  • Maintain a visited array to keep track of visited vertices to avoid revisiting them.

  • Start DFS from any unvisited vertex and recursively explore its neighbors.

  • Once all neighbors are visited, add the current vertex...

A Software Developer Intern was asked
Q. 

Determine the Left View of a Binary Tree

You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree ...

Ans. 

The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.

  • Traverse the binary tree in a level order manner and keep track of the leftmost node at each level.

  • Use a queue to perform level order traversal of the binary tree.

  • Maintain a count of nodes at each level to identify the leftmost node.

  • Return the leftmost nodes at each level as the left view of the ...

A Software Developer Intern was asked
Q. Can you explain the concept of virtual destructors in C++?
Ans. 

Virtual destructors in C++ are used to ensure that the correct destructor is called when deleting an object through a base class pointer.

  • Virtual destructors are declared with the 'virtual' keyword in the base class to allow proper cleanup of derived class objects.

  • When deleting an object through a base class pointer, having a virtual destructor ensures that the destructor of the derived class is called.

  • Without a vi...

A Software Developer Intern was asked
Q. 

Maximum Meetings Problem Statement

Given the schedule of N meetings with their start time Start[i] and end time End[i], you need to determine which meetings can be organized in a single meeting room such t...

Ans. 

Given N meetings with start and end times, determine the maximum number of meetings that can be organized in a single room without overlap.

  • Sort the meetings based on their end times.

  • Iterate through the sorted meetings and select the first meeting that does not overlap with the previous one.

  • Repeat the process until all meetings are considered.

  • Return the selected meetings in the order they are organized.

Are these interview questions helpful?
A Software Developer Intern was asked
Q. 

Bottom View of Binary Tree

Given a binary tree, determine and return its bottom view when viewed from left to right. Assume that each child of a node is positioned at a 45-degree angle from its parent.

No...

Ans. 

Given a binary tree, return the bottom view of the tree when viewed from left to right.

  • Traverse the tree level by level and keep track of the horizontal distance of each node from the root.

  • For each horizontal distance, store the node with the maximum depth in a map.

  • After traversing the entire tree, return the values of the map in sorted order of their horizontal distance.

A Software Developer Intern was asked
Q. 

Optimize Memory Usage Problem Statement

Alex wants to maximize the use of 'K' memory spaces on his computer. He has 'N' different document downloads, each with unique memory usage, and 'M' computer games, ...

Ans. 

Maximize memory usage by pairing downloads and games within memory limit 'K'.

  • Sort downloads and games in descending order.

  • Iterate through downloads and games to find the pair with maximum memory usage.

  • Return the indices of the selected download and game pairs.

🔥 Asked by recruiter 2 times
A Software Developer Intern was asked
Q. 

Spiral Order Traversal of a Binary Tree

Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

Input:

The input consists of a single line containing eleme...
Ans. 

Implement a function to output the Spiral Order traversal of a binary tree given in level order.

  • Traverse the binary tree in a spiral order, alternating between left to right and right to left at each level.

  • Use a queue to keep track of nodes at each level and a stack to reverse the order of nodes at odd levels.

  • Handle null nodes appropriately to maintain the spiral order traversal.

  • Example: Input: 1 2 3 -1 -1 4 5, Ou...

Arcesium Software Developer Intern Interview Experiences

5 interviews found

I appeared for an interview in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

2 coding questions were given to solve in 45 minutes.

  • Q1. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. 

    The task is to determine the left view of a binary tree, which consists of nodes visible when viewed from the left side.

    • Traverse the binary tree in a level order manner and keep track of the leftmost node at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a count of nodes at each level to identify the leftmost node.

    • Return the leftmost nodes at each level as the left view of the binar...

  • Answered by AI
  • Q2. 

    Number of Islands Problem Statement

    You are given a non-empty grid that consists of only 0s and 1s. Your task is to determine the number of islands in this grid.

    An island is defined as a group of 1s (re...

  • Ans. 

    The task is to determine the number of islands in a grid consisting of 0s and 1s.

    • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

    • Mark visited 1s as 0 to avoid counting them again.

    • Increment the island count each time a new island is found.

    • Consider all 8 adjacent cells (horizontally, vertically, diagonally) while performing DFS.

    • Handle edge cases like out of bounds and already visited ce...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a 60 min technical interview round. The interviewer asked me to code 2 programming questions. 
Tip : Practice more to clear DSA problems. Medium level questions will be enough to clear the rounds.

  • Q1. 

    Topological Sort Problem Statement

    Given a Directed Acyclic Graph (DAG) consisting of V vertices and E edges, your task is to find any topological sorting of this DAG. You need to return an array of size ...

  • Ans. 

    Implement a function to find any topological sorting of a Directed Acyclic Graph (DAG).

    • Use Depth First Search (DFS) to traverse the graph and add vertices to the result in reverse order of finishing times.

    • Maintain a visited array to keep track of visited vertices to avoid revisiting them.

    • Start DFS from any unvisited vertex and recursively explore its neighbors.

    • Once all neighbors are visited, add the current vertex to t...

  • Answered by AI
  • Q2. 

    N-th Node From The End Problem Statement

    You are provided with a Singly Linked List containing integers. Your task is to determine the N-th node from the end of the list.

    Example:

    Input:
    If the list is...
  • Ans. 

    Find the N-th node from the end of a Singly Linked List containing integers.

    • Traverse the list to find the length L of the list.

    • Calculate the position of the N-th node from the beginning as L - N + 1.

    • Traverse the list again to reach the calculated position and return the node's value.

    • Handle edge cases like N being equal to 1 or equal to the length of the list.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAArcesium interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, DBMS, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

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 resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Jul 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

It was an online coding round where we were supposed to solve 2 coding questions in 45 minutes.

  • Q1. 

    Maximum Meetings Problem Statement

    Given the schedule of N meetings with their start time Start[i] and end time End[i], you need to determine which meetings can be organized in a single meeting room such ...

  • Ans. 

    Given N meetings with start and end times, determine the maximum number of meetings that can be organized in a single room without overlap.

    • Sort the meetings based on their end times.

    • Iterate through the sorted meetings and select the first meeting that does not overlap with the previous one.

    • Repeat the process until all meetings are considered.

    • Return the selected meetings in the order they are organized.

  • Answered by AI
  • Q2. 

    Connecting Ropes with Minimum Cost

    You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Yo...

  • Ans. 

    Given 'N' ropes of varying lengths, find the minimum cost to connect all ropes into one single rope.

    • Sort the lengths of ropes in ascending order.

    • Keep connecting the two shortest ropes at each step.

    • Update the total cost by adding the lengths of the connected ropes.

    • Repeat until all ropes are connected.

    • Return the total cost as the minimum cost to connect all ropes.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interview was conducted online. The interviewer asked me 2 programming questions and questions on OOPS concepts.

  • Q1. 

    Bottom View of Binary Tree

    Given a binary tree, determine and return its bottom view when viewed from left to right. Assume that each child of a node is positioned at a 45-degree angle from its parent.

    N...

  • Ans. 

    Given a binary tree, return the bottom view of the tree when viewed from left to right.

    • Traverse the tree level by level and keep track of the horizontal distance of each node from the root.

    • For each horizontal distance, store the node with the maximum depth in a map.

    • After traversing the entire tree, return the values of the map in sorted order of their horizontal distance.

  • Answered by AI
  • Q2. 

    Serialize and Deserialize Binary Tree Problem Statement

    Given a binary tree of integers, your task is to implement serialization and deserialization methods. You can choose any algorithm for serialization...

  • Ans. 

    Implement serialization and deserialization methods for a binary tree of integers.

    • Use level order traversal for serialization and deserialization.

    • Use -1 to represent null nodes in the binary tree.

    • Ensure the serialized string can be correctly decoded back to form the original binary tree.

  • Answered by AI
  • Q3. Can you explain the concept of virtual destructors in C++?
  • Ans. 

    Virtual destructors in C++ are used to ensure that the correct destructor is called when deleting an object through a base class pointer.

    • Virtual destructors are declared with the 'virtual' keyword in the base class to allow proper cleanup of derived class objects.

    • When deleting an object through a base class pointer, having a virtual destructor ensures that the destructor of the derived class is called.

    • Without a virtual...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAArcesium interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

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
Tip 4 : One should have strong DSA skills and knowledge of Basic OOPS. Its not necessary to learn OS and DBMS if it's not taught in your college yet.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1) Maximum meetings in one room 2)Bottom view of tree 3) Serialize deserialize binary tree 4) Difference between Virtual destructor in java and c++
  • Ans. 

    Interview questions for Software Developer Intern

    • Maximum meetings in one room can be calculated using greedy approach

    • Bottom view of tree can be obtained using level order traversal and a map to store horizontal distance

    • Serialization and deserialization of binary tree can be done using preorder traversal

    • Virtual destructor in Java is automatically called while in C++ it needs to be explicitly defined

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One should have strong DSA skills and knowledge of Basic OOPS. Its not necessary to learn OS and DBMS if it's not taught in your college yet

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Round was scheduled in the early afternoon hours most probably from 1 to 2 on hackerrank.

  • Q1. 

    BST to Greater Tree Problem Statement

    Given a binary search tree (BST) with 'N' nodes, the task is to convert it into a Greater Tree.

    A Greater Tree is defined such that every node's value in the origina...

  • Ans. 

    Convert a binary search tree into a Greater Tree by replacing each node's value with the sum of all values greater than or equal to it.

    • Traverse the BST in reverse inorder (right, root, left) to visit nodes in descending order.

    • Keep track of the running sum of visited nodes and update each node's value with this sum.

    • Recursively apply the above steps to all nodes in the BST.

    • Example: Input - 4 1 6 0 2 5 7 -1 -1 -1 3 -1 -1 ...

  • Answered by AI
  • Q2. 

    Ninja and Binary String Problem Statement

    Ninja has a binary string S of size N given by his friend. The task is to determine if it's possible to sort the binary string S in decreasing order by removing a...

  • Ans. 

    Determine if a binary string can be sorted in decreasing order by removing non-adjacent characters.

    • Check if the count of '1's in the string is equal to the length of the string, in which case it can be sorted in decreasing order.

    • If there are multiple '0's between two '1's, they can be removed to sort the string in decreasing order.

    • If there are more '0's than '1's, it is not possible to sort the string in decreasing ord...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

This round was conducted on Code Share platform. I was shared the invitation link one day prior to the interview and also was told the name of my interviewer. I looked at the profile of the interviewer at linked.in and got a better understanding of what kind of person he was and prepared accordingly. The round was scheduled at 3 :00 pm on 25th August and I was eagerly waiting for the clock hands to reach 3 o'clock since morning and finally I went in front of him after wearing a white shirt and a black coat over it along with a tie over it.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree given in level order.

    • Traverse the binary tree in a spiral order, alternating between left to right and right to left.

    • Use a queue to keep track of nodes at each level and a flag to switch direction.

    • Handle null nodes appropriately to maintain the spiral order traversal.

    • Example: Input: 1 2 3 -1 -1 4 5, Output: 1 3 2 4 5

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in HyderabadEligibility criteriaComputer science allowedArcesium interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA Questions from coding ninja or interview bit
Tip 2 : Have knowledge about SQL and datbases
Tip 3 : Practice Atleast 200 coding questions from gfg

Application resume tips for other job seekers

Tip 1 : Attach links to coding profiles
Tip 2 : Mention short description of your team projects and individual as well

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Hard

Timing (Between 6pm -7pm)
Environment was friendly and 2 coding questions were given.

  • Q1. 

    Connecting Ropes with Minimum Cost

    You are given 'N' ropes, each of varying lengths. The task is to connect all ropes into one single rope. The cost of connecting two ropes is the sum of their lengths. Yo...

  • Ans. 

    Connect ropes with minimum cost by merging smallest ropes first.

    • Sort the lengths of ropes in ascending order.

    • Merge the two smallest ropes at a time to minimize cost.

    • Repeat the merging process until all ropes are connected.

    • Calculate the total cost by summing up the lengths of merged ropes.

    • Return the minimum cost obtained.

  • Answered by AI
  • Q2. 

    Optimize Memory Usage Problem Statement

    Alex wants to maximize the use of 'K' memory spaces on his computer. He has 'N' different document downloads, each with unique memory usage, and 'M' computer games,...

  • Ans. 

    Maximize memory usage by pairing downloads and games within memory limit 'K'.

    • Sort downloads and games in descending order.

    • Iterate through downloads and games to find the pair with maximum memory usage.

    • Return the indices of the selected download and game pairs.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Timing (6pm -7 pm)
Environment was user friendly
In first 10-15 minutes He asked my current company’s work and some behavioral questions. Then he jumped to coding problems

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to output the Spiral Order traversal of a binary tree given in level order.

    • Traverse the binary tree in a spiral order, alternating between left to right and right to left at each level.

    • Use a queue to keep track of nodes at each level and a stack to reverse the order of nodes at odd levels.

    • Handle null nodes appropriately to maintain the spiral order traversal.

    • Example: Input: 1 2 3 -1 -1 4 5, Output:...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Malaviya National Institute of Technology Jaipur. I applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7 cgpaArcesium interview preparation:Topics to prepare for the interview - Operating System, System Design, Data structure, Trees, Graph, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA Questions from coding ninja or interview bit
Tip 2 : Have knowledge about SQL and datbases
Tip 3 : Practice Atleast 200 coding questions from gfg

Application resume tips for other job seekers

Tip 1 : Have some good projects Web Dev projects are preferred
Tip 2 : Resume should be of 1 page

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Arcesium?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Core Java questions oops concepts some sql queries
Round 2 - Technical 

(1 Question)

  • Q1. Question on Data structure list and hasmap ,java collection

Interview Preparation Tips

Topics to prepare for Bounteous x Accolite Software Engineer interview:
  • Core java,
  • Collections
Interview preparation tips for other job seekers - Prepare core java ,oops , collection coding questions to print -1 in place of duplicate elements

I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Hashtable and hashmap?
  • Ans. 

    Hashtable is synchronized while hashmap is not.

    • Hashtable is thread-safe while hashmap is not.

    • Hashtable does not allow null keys or values while hashmap allows one null key and multiple null values.

    • Hashtable is slower than hashmap due to synchronization.

    • Hashtable is a legacy class while hashmap is a newer implementation.

  • Answered by AI
  • Q2. Difference between hashmap and concurrent hashmap?
  • Ans. 

    Hashmap is not thread-safe while Concurrent Hashmap is thread-safe.

    • Hashmap is not suitable for multi-threaded environments as it can lead to race conditions and data inconsistencies.

    • Concurrent Hashmap allows multiple threads to access and modify the map concurrently without any data inconsistencies.

    • Concurrent Hashmap uses a technique called lock striping to achieve thread-safety.

    • Concurrent Hashmap is slower than Hashma...

  • Answered by AI
  • Q3. Jdbc step
  • Q4. Spring ioc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was average they asked questions from core java spring hibernate... And so on..

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Telephonic technical
  • Q2. Core Java related exception handling ,design pattern ,oops solid design principle, rest API, different annotations of spring and jpa
  • Q3. Same questions on telephonic round but detailed elaborate and given simple problem statement we had to justify that why it's time n space complexity valid. Rest API questions hibernate orm use
  • Q4. Manager round just to check whether you have actually worked on project or not stress testing performance questions scenario questions

Interview Preparation Tips

General Tips: Quite easy just go with preparation
Skills: Core Java sevlet JSP hibernate spring rest API, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks

I appeared for an interview in Sep 2019.

Interview Questionnaire 

1 Question

  • Q1. Pl sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - y resume was referd through a guy. Later I got call from HR for interview schedule he asked me my expected ctc and Notice Period to which I clearly said 3 months. He scheduled my interview on weekends morning 8am I reached there by 8.30am The interview process got started late by 10am it was an walk in type interview 1 round was Technical I cleared that round and had a feedback session with HR he said we are processing u to next round which was Manager round there itself I told the HR my NP is 3months the Hr Told its not an issue.
Laterly after I had lunch by 2pm Hr came n told me that Manager is not available now so we will be conducting ur further round in weekdays.
Then there was no mail or call so I purposely mailed them still haven't got proper response from them, so at last I told my friend who referd me to ask for an update the same HR told him that they want Immediate joiner so we can't process him to further round. Wasted my whole day over there

Tell us how to improve this page.

Senior Analyst
396 salaries
unlock blur

₹10 L/yr - ₹27 L/yr

Analyst
324 salaries
unlock blur

₹7.6 L/yr - ₹20.5 L/yr

Senior Software Engineer
253 salaries
unlock blur

₹25 L/yr - ₹43 L/yr

Manager
161 salaries
unlock blur

₹17 L/yr - ₹47.6 L/yr

Financial Analyst
160 salaries
unlock blur

₹10.2 L/yr - ₹19 L/yr

Explore more salaries
Compare Arcesium with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview