Upload Button Icon Add office photos

Filter interviews by

ContentServ Technologies Interview Questions and Answers

Updated 21 Mar 2024

ContentServ Technologies Interview Experiences

Popular Designations

4 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before May 2022. There were 4 interview rounds.

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 - Coding Test 

Mostly java, ds and algos

Round 3 - Coding Test 

On java and collection

Round 4 - HR 

(1 Question)

  • Q1. Was just a formality

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare on algos, ds

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General background info.
Round 2 - Case Study 

Retail related case.

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

Interview Questionnaire 

2 Questions

  • Q1. If you lost gui of Jenkins server what will do to analyse previous jobs?
  • Ans. 

    I would access Jenkins logs and use command line interface to analyze previous jobs.

    • Access Jenkins logs to gather information on previous jobs

    • Use command line interface to view job status and output

    • Check job history to identify any issues or errors

    • Use Jenkins API to retrieve job information

    • Consider restoring a backup of the Jenkins server if necessary

  • Answered by AI
  • Q2. That time we have to go through cli and check the home dir of Jenkins /var/lib/jenkins

Interview Preparation Tips

Interview preparation tips for other job seekers - Add those skills only that you know very well...don't put extra skill/material/

Skills evaluated in this interview

Cloud Engineer Interview Questions asked at other Companies

Q1. Can you please elaborate the best practices of Authentication and Authorisation for the web based applications ?
View answer (1)

I applied via Campus Placement and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

5 programs will be there. Need to solve atleast 2.

Round 2 - Technical 

(1 Question)

  • Q1. Problem solving and java related questions
Round 3 - HR 

(1 Question)

  • Q1. Discussed about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview.





Simple java questions.
Simple problem solving questions.

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

ContentServ Technologies interview questions for popular designations

 Senior Software Developer

 (2)

 Product Manager

 (1)

 Cloud Engineer

 (1)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Oops concepts
  • Q2. Design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a technical one on C# and WPF technologies. It’s around 1 hr of interview. So the interviewer touch all the technologies we mention in the resume and he asked for the scenarios we faced in the realtime. He is very cool and nice person. The topics in c#
Oops concepts
Design patterns
Red and out keywords
When we go for abstraction in realtime
Managed and unmanaged code
String and string builder
Difference between abstraction and interfaces
Struct and class
Static constructor
Sealed keyword
Delegates
Dynamic parameters
Can we return multiple values from a function/method?
Overloading and overriding
Ienumeration and iqueryable
Indexers
First and single in linq

I was interviewed before Dec 2020.

Round 1 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round. The interviewer asked me some programming based questions and some questions on database management systems.

  • Q1. 

    Sum of Maximum and Minimum Elements Problem Statement

    Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array.

    Follow Up:

    Can you achie...

  • Ans. 

    Find the sum of the largest and smallest elements in an array with the least number of comparisons.

    • Iterate through the array to find the maximum and minimum elements.

    • Keep track of the maximum and minimum elements as you iterate.

    • After iterating, sum up the maximum and minimum elements.

    • To achieve the task with the least number of comparisons, compare elements in pairs.

  • Answered by AI
  • Q2. 

    Binary Tree Construction from Parent Array

    Construct a binary tree from a given array called parent where the parent-child relationship is determined by (PARENT[i], i), indicating that the parent of node ...

  • Ans. 

    Construct a binary tree from a given parent array and perform level-order traversal.

    • Iterate through the parent array to create the binary tree using a queue data structure.

    • Keep track of the parent-child relationships and construct the tree accordingly.

    • Perform level-order traversal to print the nodes in the correct order.

  • Answered by AI
  • Q3. Can a unique key be a primary key?
  • Ans. 

    Yes, a unique key can also be a primary key.

    • A primary key must be unique, but a unique key does not necessarily have to be the primary key.

    • A table can have multiple unique keys, but only one primary key.

    • Example: In a table of employees, the employee ID can be a unique key and also the primary key.

  • Answered by AI
  • Q4. Is it better to use a normalized form for database design, or is it more efficient to store data in a single table or two tables?
  • Ans. 

    Normalized form is better for database design for data integrity and flexibility.

    • Normalized form reduces data redundancy and improves data integrity.

    • Normalized form allows for easier data updates and maintenance.

    • Denormalized form may be more efficient for read-heavy applications with complex queries.

    • Consider denormalization for performance optimization after thorough analysis.

    • Example: Normalized form for a customer and...

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

The interviewer had good work experience. She was polite and calm. After brief introduction she straight jumped into my current projects and she covered my entire CV.

Round 3 - Video Call 

(4 Questions)

Round duration - 45 minutes
Round difficulty - Easy

This was a technical round involving questions on OOPS concepts and puzzles.

  • Q1. What is the total number of squares on a chessboard?
  • Ans. 

    There are 204 squares on a chessboard.

    • The chessboard has 64 squares in total.

    • Each square can be divided into smaller squares, such as 1x1, 2x2, 3x3, etc.

    • The total number of squares can be calculated by adding the squares of all sizes together.

  • Answered by AI
  • Q2. What is C++?
  • Ans. 

    C++ is a high-level programming language known for its efficiency, flexibility, and performance.

    • C++ is an object-oriented language with features like classes, inheritance, and polymorphism.

    • It allows low-level memory manipulation through pointers.

    • C++ is used in developing system software, game engines, and high-performance applications.

  • Answered by AI
  • Q3. What is the difference between deep copy and shallow copy?
  • Ans. 

    Deep copy creates a new copy of an object with all nested objects also copied, while shallow copy creates a new copy of an object with references to nested objects.

    • Deep copy creates a new object and recursively copies all nested objects, resulting in a completely independent copy.

    • Shallow copy creates a new object but only copies references to nested objects, so changes in nested objects will reflect in both the origina...

  • Answered by AI
  • Q4. What are template classes? Can you write a program for the assignment operator '=' for a template class such that it behaves differently for 'int' and 'char *'?
  • Ans. 

    Template classes are classes that can work with any data type. Assignment operator can be overloaded to behave differently for different data types.

    • Template classes allow for writing generic classes that can work with any data type.

    • Overloading the assignment operator allows for custom behavior based on the data type.

    • Example: template <class T> class MyClass { T data; public: MyClass& operator=(const T& ot...

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a 30 minute HR round. The interviewer asked me a number of questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASAP Labs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 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 interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Be good on basics of coding

Round 2 - One-on-one 

(1 Question)

  • Q1. Some sql queries and code piece related to substring

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident, be good in basics of coding

I was interviewed in Dec 2016.

Interview Questionnaire 

9 Questions

  • Q1. Tell me about your internship experience.
  • Ans. 

    I had a 6-month internship at XYZ Company where I worked on developing a web application using Java and Angular.

    • Developed a web application using Java and Angular

    • Collaborated with a team of developers to design and implement new features

    • Participated in code reviews and debugging sessions

    • Gained experience in Agile development methodologies

  • Answered by AI
  • Q2. Discuss about a project mentioned in your CV.
  • Ans. 

    Developed a web-based inventory management system for a retail company.

    • Used Java and Spring framework to build the backend

    • Implemented a responsive user interface using HTML, CSS, and JavaScript

    • Integrated with a barcode scanner for efficient product tracking

    • Implemented role-based access control for different user roles

    • Optimized database queries for improved performance

  • Answered by AI
  • Q3. Given two words, find the similarity between them. You have to develop your own sense of similarity here. Normalize length of LCS by the total length of the string.
  • Ans. 

    The question asks to find the similarity between two words by developing our own sense of similarity.

    • Normalize the length of the Longest Common Subsequence (LCS) by dividing it by the total length of the string.

    • Implement a function that calculates the LCS between two words.

    • Divide the length of the LCS by the sum of the lengths of the two words.

    • Return the normalized similarity score as the result.

  • Answered by AI
  • Q4. Stress checking questions
  • Q5. Given a binary tree, return doubly linked list of all the nodes at each level.
  • Ans. 

    The function returns a doubly linked list of all the nodes at each level of a given binary tree.

    • Use a breadth-first search (BFS) algorithm to traverse the binary tree level by level.

    • Create a doubly linked list for each level and append the nodes to it.

    • Connect the doubly linked lists of each level to form the final result.

  • Answered by AI
  • Q6. Can you work under pressure?
  • Ans. 

    Yes, I thrive in high-pressure situations and have a proven track record of delivering quality work under tight deadlines.

    • I have successfully completed multiple projects on tight deadlines

    • I am able to prioritize tasks effectively to meet deadlines

    • I remain calm and focused under pressure to ensure quality work is delivered

  • Answered by AI
  • Q7. Tell me your achievements.
  • Ans. 

    I have achieved significant milestones in my career as a Senior Software Developer.

    • Developed and implemented a scalable and efficient software solution for a large e-commerce platform, resulting in a 30% increase in sales.

    • Led a team of developers to successfully deliver a complex project within a tight deadline, earning recognition from the client.

    • Optimized the performance of a critical software module, reducing its ex...

  • Answered by AI
  • Q8. How can you be an asset to the company?
  • Ans. 

    I can bring extensive experience in software development, strong problem-solving skills, and a proven track record of delivering high-quality solutions.

    • Extensive experience in software development

    • Strong problem-solving skills

    • Proven track record of delivering high-quality solutions

  • Answered by AI
  • Q9. Will you deliver your 100% in the job?
  • Ans. 

    Yes, I am committed to delivering my 100% in the job.

    • I am dedicated to producing high-quality code and meeting project deadlines.

    • I continuously strive to improve my skills and stay updated with the latest technologies.

    • I have a track record of successfully completing projects and exceeding expectations.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test had 3 questions as follows :
Q1. Rainwater Collection - Dynamic programming
Q2. DP / Memoization question
Q3. BFS Matrix Question
Tips: Have strong hold over topics like Dynamic Programming. Graph Theory, specially BFS and DFS.
Duration: 1 hour 30 minutes
Total Questions: 3

Round: Test
Experience: Both questions were based on implementation of puzzles and problems.
Tips: AD-HOC questions should be known and good coding skills with data structures and algorithms.
Duration: 45 minutes
Total Questions: 2

Round: Technical Interview
Experience: The interviewer asked me about my previous internships while in college and made me explain the work I did. Later on he asked me in detail about the projects I did in college.
Tips: Be prepared to explain your internship work and project work in details. You will be cross questioned. So be ready to answer everything related to them. Only enter those projects in your CV which you can explain confidently.

Round: Technical Interview
Experience: I was first asked a coding question related to finding similarity in two words and I had to define the terms of similarity on my own which I did by normalizing length of LCS by the total length of the string. Then I was faced with stress checking. They tried proving me wrong even though when I was right and checked my reaction under stress.
Tips: Be confident about your answers and act smart. Don't hesitate to explain and believe in your skills. Take criticism in a positive manner.

Round: Technical + HR Interview
Experience: A little coding questions were asked like binary trees, doubly linked lists etc. Then the usual HR questions like achievements, how would I be an asset to the company and all.
Tips: Think out loud. Communicate with the interviewer well. Clarify whatever you don't understand. Show them that you are passionate and excited to work with them. Show that you will give your best to help grow the company.

Skills: Coding Skills, Ability To Cope Up With Stress, Communication And Confidence, Logical And Structured Thinking, Data Structures
College Name: IIT Varanasi

Skills evaluated in this interview

I applied via Referral and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basics of oops concept
  • Ans. 

    Basics of OOPs concept

    • OOPs stands for Object-Oriented Programming

    • It is a programming paradigm based on the concept of objects

    • Objects have properties and methods

    • Encapsulation, Inheritance, and Polymorphism are the three main pillars of OOPs

    • Example: A car is an object with properties like color, model, and methods like start, stop

    • Example: Inheritance - A child class can inherit properties and methods from a parent class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - overall interviews process is good and prepare for the core concepts
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked two questions.
1. Related to string manipulation.
2. Subarray problem.

ContentServ Technologies Interview FAQs

How many rounds are there in ContentServ Technologies interview?
ContentServ Technologies interview process usually has 3 rounds. The most common rounds in the ContentServ Technologies interview process are HR, Coding Test and Resume Shortlist.
How to prepare for ContentServ Technologies interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at ContentServ Technologies. The most common topics and skills that interviewers at ContentServ Technologies expect are AWS, Java, RDBMS, Software Development and Spring.
What are the top questions asked in ContentServ Technologies interview?

Some of the top questions asked at the ContentServ Technologies interview -

  1. If you lost gui of Jenkins server what will do to analyse previous jo...read more
  2. That time we have to go through cli and check the home dir of Jenkins /var/lib/...read more
  3. Problem solving and java related questi...read more

Tell us how to improve this page.

ContentServ Technologies Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Google Interview Questions
4.4
 • 823 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
View all

ContentServ Technologies Reviews and Ratings

based on 30 reviews

3.4/5

Rating in categories

2.9

Skill development

3.9

Work-life balance

3.0

Salary

2.5

Job security

3.4

Company culture

3.2

Promotions

3.0

Work satisfaction

Explore 30 Reviews and Ratings
Software Developer
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Quality Analyst
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ContentServ Technologies with

SAP

4.2
Compare

Adobe

3.9
Compare

Oracle

3.7
Compare

Salesforce

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