Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CSG International Team. If you also belong to the team, you can get access from here

CSG International Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 447 Reviews

Filter interviews by

CSG International Software Development Engineer Intern Interview Questions and Answers

Updated 17 Oct 2023

CSG International Software Development Engineer Intern Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 3 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 - Assignment 

First Round Was Assignment

Round 3 - One-on-one 

(1 Question)

  • Q1. Second round was one on one round

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dr. B.R. Ambedkar National Institute of Technology (NIT), Jalandhar and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There are Coding questions as well as aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. 2-3 Puzzles checking your presence and instant thought processes
  • Q2. 2-3 Easy DSA problems in order to test ur
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What are fetaures of Java?
  • Ans. 

    Java is a popular programming language known for its platform independence, object-oriented features, and robust libraries.

    • Platform independence - Java programs can run on any platform that has a Java Virtual Machine (JVM)

    • Object-oriented - Java supports the principles of encapsulation, inheritance, and polymorphism

    • Robust libraries - Java has a vast collection of libraries for various tasks such as networking, database

  • Answered by AI
  • Q2. What is exception handling and why it is important?
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in a program to prevent crashes and ensure graceful error recovery.

    • Allows for graceful handling of runtime errors

    • Prevents program crashes

    • Ensures proper error recovery

    • Helps in debugging and maintaining code

    • Examples: try-catch blocks in Java, catch blocks in C++

  • Answered by AI
  • Q3. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits attributes and methods from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can access public and protected members of the base class

    • Example: Class Car can inherit from class Vehicle to reuse commo

  • Answered by AI
  • Q4. What is abtract class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods that must be implemented by subclasses.

    • Cannot be instantiated directly

    • May contain abstract methods

    • Subclasses must implement abstract methods

    • Used for defining common behavior for subclasses

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why you want to join eClinicalWorks
  • Q2. Why we should hire you

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online assessment (on campus) there were some coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics of c++, projects, situation based questions, puzzles
  • Q2. Water jug puzzle , patterns
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SOLID Principles
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Mcq and sql questions along with core subject mcq

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa question and technical question were asked
  • Q2. Duplicates count in an array
  • Ans. 

    Count duplicates in an array of strings

    • Iterate through the array and use a HashMap to store the count of each string

    • Check if the count of a string is greater than 1, then it is a duplicate

    • Return the total count of duplicates found in the array

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Aptitude AI subject puzzles were asked

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Karet Interview :
5 back to back System design question, we don't need to explain each component but more like list as many as points. Need to finish all the question in 15min

1-2 problem solving question : It's not fency algorithm round with tough question. But true problem solving round using basic knowledge such as hashmap, heap

Round 2 - Technical 

(3 Questions)

  • Q1. Design File System : You have given file size and collection in input 1 : get total size 2 : find top k collections in size
  • Ans. 

    Design a file system to calculate total size and find top k collections in size.

    • Create a file system class with methods to add files and calculate total size.

    • Maintain a data structure to store the collections and their sizes.

    • Implement a method to find the top k collections based on size.

    • Consider using a priority queue or sorting the collections based on size.

    • Handle edge cases like empty collections or invalid input siz

  • Answered by AI
  • Q2. Find total size
  • Ans. 

    Calculate the total size of an array of strings.

    • Iterate through the array and sum the length of each string.

    • Use the `length` property of each string to get its size.

    • Handle edge cases such as empty strings or null values.

  • Answered by AI
  • Q3. Find Top k collections
  • Ans. 

    The question is asking to find the top k collections.

    • Use a sorting algorithm to sort the collections in descending order based on a specific criteria.

    • Select the top k collections from the sorted list.

    • Return the selected collections as an array of strings.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online hacker rank assessment

Round 2 - Technical 

(3 Questions)

  • Q1. Online interview with live coding
  • Q2. All about oops concepts
  • Q3. About python regex
Round 3 - HR 

(1 Question)

  • Q1. Basic HR round ..
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How you have extracted data from excel sheet?
  • Ans. 

    To extract data from an Excel sheet, you can use libraries like Apache POI or Openpyxl in Java or Python respectively.

    • Use a library like Apache POI or Openpyxl to read Excel files

    • Identify the sheet and cell range from which you want to extract data

    • Iterate through the rows and columns to extract the desired data

    • Store the extracted data in variables or data structures for further processing

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What are different Oops concept that you have used in your framework?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, and Abstraction are the OOP concepts used in my framework.

    • Encapsulation: Used to hide the internal details of an object and provide a public interface.

    • Inheritance: Used to create a new class from an existing class, inheriting its properties and methods.

    • Polymorphism: Used to perform a single action in different ways based on the object's type.

    • Abstraction: Used to provide a simpl...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

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

First round is a hectic 3 hr aptitude + java snippets test, hirepro based.

Round 3 - One-on-one 

(1 Question)

  • Q1. Not Applicable for me

Interview Preparation Tips

Interview preparation tips for other job seekers - I had miserable experience with this company, I wasted 3 hr for aptitude round and 2 weeks of preparation for interview. I was shortlisted for interview round and informed that interview would be held after a week, but later I received that positions filled, you are in waitlist. By this, I understand how dumb this company is(Hyderabad location). Any company would select the best from a pool of applicants. But this company selects you in first come first serve. This is sheer absurdity. Don't waste your precious time for this company, note that I am talking about Hyderabad campus.

CSG International Interview FAQs

How many rounds are there in CSG International Software Development Engineer Intern interview?
CSG International interview process usually has 3 rounds. The most common rounds in the CSG International interview process are Resume Shortlist, Assignment and One-on-one Round.

Tell us how to improve this page.

CSG International Software Development Engineer Intern Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 801 Interviews
Amdocs Interview Questions
3.8
 • 532 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
View all
Software Development Engineer II
160 salaries
unlock blur

₹8.8 L/yr - ₹20.1 L/yr

Software Developer
108 salaries
unlock blur

₹6 L/yr - ₹16.2 L/yr

Senior Development Consultant
100 salaries
unlock blur

₹8 L/yr - ₹19 L/yr

Software Development Engineer 1
96 salaries
unlock blur

₹8 L/yr - ₹17 L/yr

Software Development Engineer
92 salaries
unlock blur

₹5.8 L/yr - ₹15 L/yr

Explore more salaries
Compare CSG International with

Amdocs

3.8
Compare

Tech Mahindra

3.5
Compare

TCS

3.7
Compare

Infosys

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