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

Filter interviews by

CSG International Software Development Engineer Interview Questions, Process, and Tips

Updated 7 Sep 2024

Top CSG International Software Development Engineer Interview Questions and Answers

CSG International Software Development Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of SV- DA,EV,AT,SOAP UI, Functions and its types
  • Q2. Some basic SQL queries
Round 2 - HR 

(1 Question)

  • Q1. Nothing important, just salary discussion and benefits
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 May 2023. There were 4 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Life cycle of wcf
  • Ans. 

    WCF (Windows Communication Foundation) life cycle involves creation, opening, closing, and disposing of communication objects.

    • Creation: Communication objects are created using constructors.

    • Opening: Objects are opened to establish communication channels.

    • Closing: Communication channels are closed after use.

    • Disposing: Objects are disposed to release resources.

    • Example: Creating a WCF service involves defining service contr...

  • Answered by AI
  • Q2. Core elements of wcf
  • Ans. 

    Core elements of WCF include contracts, services, messages, and endpoints.

    • Contracts define what the service does and how clients can interact with it

    • Services implement the functionality defined in contracts

    • Messages are the data exchanged between clients and services

    • Endpoints define the address, binding, and contract for a service

  • Answered by AI
  • Q3. Why not Web API and wcf
  • Ans. 

    Web API and WCF have different use cases and technologies, each with its own strengths and weaknesses.

    • Web API is more lightweight and suitable for building RESTful services, while WCF is more heavyweight and supports various communication protocols.

    • Web API is easier to use for building HTTP services, while WCF offers more flexibility and features for building distributed applications.

    • Web API is preferred for modern web...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions about previous company project
Round 3 - One-on-one 

(2 Questions)

  • Q1. How you troubleshoot any issue
  • Q2. Have you used logging in your project
  • Ans. 

    Yes, I have used logging extensively in my projects to track application behavior and troubleshoot issues.

    • Used logging frameworks like Log4j or SLF4J to log information, warnings, and errors

    • Configured log levels to control the amount of detail in logs

    • Logged important events, exceptions, and user actions for debugging purposes

    • Stored logs in files or databases for future reference

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How much you expect

Skills evaluated in this interview

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Array and string based coding questions
  • Q2. Sql queries related to joins, sub queries
  • Q3. C# fundamentals
  • Q4. Rest API related questions
  • Q5. Deployment related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what you have mentioned in your resume. Go through the job description

Interview questions from similar companies

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basics of CAN ,CAPL and previous job responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well accordingly with respect to your resume

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Depends on role. I gave interview related to SRE devops. Brush up basics related to Jenkins splunk kubernetes python kafka prometheus docker etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on basics and fluent, confident when answering. In total 5 rounds including HR

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were around Java, Spring,Authentication, Authorization, Forgerock tools.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick with the basics and try to explain yourself clearly. It's ok if you don't know any answer just say it directly to them. In all the interviews they would want to know your approach to a specific problem not the exact solution.

I applied via Naukri.com and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tech: Core Java concepts, difference between ArrayList and LinkedList, types of functional testing, CI/CD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear and crisp with your answers. Have a complete clarity with your aspirations and role based responsibilities.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was an online technical round. There were around 20 MCQs and two coding questions. The round had an login window of 30 minutes. One coding question was of the level leetcode medium and the other was leetcode hard.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted N * N matrix, find the position of a target integer X.

    • Iterate over each row and column to search for the target integer

    • Utilize the sorted nature of the matrix to optimize the search process

    • Return the position of the target integer if found, else return -1 -1

  • Answered by AI
  • Q2. 

    Euler’s Totient Function Problem Statement

    Given an integer N, your task is to determine the count of integers between 1 and N (inclusive) that are coprime to N.

    Input:

    The first line contains an intege...
  • Ans. 

    Euler's Totient Function calculates count of integers coprime to N between 1 and N.

    • Implement Euler's Totient Function to calculate count of coprime integers to N.

    • Use the formula: phi(N) = N * (1 - 1/p1) * (1 - 1/p2) * ... * (1 - 1/pk) where p1, p2, ..., pk are prime factors of N.

    • Example: For N = 9, phi(9) = 9 * (1 - 1/3) = 6.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a technical + HR round. The interview panel consisted of two technical guys and one person from HR.

  • Q1. 

    Sort Array of Strings Problem Statement

    Given an array of strings ARRSTR[] of size N, and a character C, your task is to sort the ARRSTR[] array according to a new alphabetical order that starts with the ...

  • Ans. 

    Sort an array of strings based on a new alphabetical order starting with a given character.

    • Iterate through the array of strings and compare each string with the given character to determine the new order.

    • Implement a custom comparator function to sort the strings based on the new alphabetical order.

    • Use built-in sorting functions in programming languages like Python, Java, or C++ to efficiently sort the array.

  • Answered by AI
  • Q2. Can you explain the pillars of Object-Oriented Programming (OOP)?
  • Ans. 

    The pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class, ena

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Amity School Of Engineering And Technology. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7.5 CGPA, No BacklogsAmadeus interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Database Manangement Systems, SQL Queries, Greedy and DP Problems, Basics of Computer Networks.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on CP platforms such as codechef and codeforces. It will greatly help you for clearing coding round.
Tip 2 : Make notes of theory Subjects. It will greatly help you in last minute preparation.
Tip 3 : Go through the interview experience of the company before hand.
Tip 4 : Practice questions by narrating the explaination. Else it gets very difficult to both explain and code at the same time of interview.

Application resume tips for other job seekers

Tip 1 : Never lie on the resume. If you are not confident about something dont add it.
Tip 2 : Have atleast 2 projects on resume.
Tip 3 : Dont make it colourful. Follow any formal standard template.
Tip 4 : Add links to the project or your work if possible.
Tip 5 : Have only one Page. Dont write stories.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Simulink basic blocks, Stateflow, mux vs Bus, design a counter in simulink and stateflow, resume related questions
Round 2 - HR 

(1 Question)

  • Q1. Current CTC, Expected CTC, preferred location and salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on whatever written in your resume

Interview Questionnaire 

5 Questions

  • Q1. SQL Querry
  • Q2. Programming
  • Q3. Projects
  • Q4. Project
  • Q5. HR Questions

Interview Preparation Tips

Round: Test
Experience: I was from civil branch so had the above listed sections for pen paper written test. We had to attempt any 2 of the first 3 and last two were cumpolsory (Same for mechanical branch also). For CS, IT, ECE and EEE there were only 2 sections - first was programming - 5 questions and second was situational based.

All the three sections consisted 5 questions in each sections. Questions were very easy and hardly a pen was needed to solve. Quants section consisted of questions on binary to decimal, pipes and cistern and number system. Verbal section consisted of a passage followed by 5 questions and Logical section consisted of 5 simple sequence and series questions.
In 4 th section, we were asked to write an algorithm/flowchart for a given scenarion with some contraints - opening a bank account.
Last section was situational based questions. We were asked to exoress our views in maximum of 100 words on what we would do in a given situation.
Tips: Skip vrbal part as there can be chance of getting wrong. Solve quants and logical as there would be 100% chance of being correct due to very easy questions.
In 4th section, draw flowchart/tree showing how you will proceed and what you think. Before proceeding further think like a layman person how he will fill the form and then decide how to write an algorithm so that even a layman can understand well how to proceed with that particular form. Show output screens, consider exceptions, find every possible combinations for the various options given in the problem.
For last question, try to be practical, brief, concise and to the point. Don't write anything in round about manner.
Above all, as this is pen paper test, write in a beautiful hand writting.
Duration: 45 minutes
Total Questions: 12

Round: Technical Interview
Experience: The technical interview was easy. The questions were straingh forward. Questions were based on projects that I had done. I had Informatics Practices (Java) in class 12 so I told interviewer about database management. I was asked to explain tables used in project and a SQL Querry which I failed to answer.
Then she asked me to write a program to determine which offer is better to invest if in one interest rate increases by 2 each year and the one in which it increases by 1. I quickly wrote it. She said to improve the DBMS part and applauded for the programming skills.
Tips: Be confident and true. They ask only what you say about yourself. Prepare well for SQL querries as they focus more on SQL. Also practice programming as one queston will be essentially on it. Don't try to learn all languages. Know only one but know well. For civil students, have one project that involves programming. Try to learn MATLAB programming during B.Tech. It will make a good impact.

Round: HR Interview
Experience: The HR round was very easy. HR was very friendly. I was asked to introduce myself and then he asked me to explain about my project which I had done in MATLAB. He then asked HR questions like why I wanted to join software industry, where I see myslef in 5 years, previous interview experiences.
Tips: Be cool and confident. If you made till HR round, the probability of being selected in 90%. For civil students, try to be familiar with programming languages and SQL. Also try to have some extra skills that make you different from others. Don't think civil engineers only build buildings and roads; there is a lot more for us to do. Its always good to stand away from crowd.
All the best!

General Tips: Have good command on basics of what learnt C++ or Java and MySQL in class 12. Try to have a project using any programming skill if you are from non CS/IT background as it will help you prove you interest in programming despite your branch. Knowing foreign language atleast till intermediate level will add stars to your extra skills.
Skill Tips: For civil and mechanical students, if you has C++ or Informatics Practices in class 12, be in touch with that knowledge. They test only basics. Familiarize yourself with OOPS and SQL querries.
Be confident with what you speak and speak in clear voice. If you don't know simply say no. Must attent the interview with a good explanations of questions asked about your weak skills.
Skills: Confidence, Programming Skills In Any Language Like C, Database Management
College Name: VIT Vellore
Motivation: Interest in programming.
Funny Moments: When HR asked where I see myself in 5 years I said that I see myself in Europe. To which he said that he is hiring for India and when I said that I am hired for India right now but not for 5 years. He smiled with the answer and wished me all the best.

CSG International Interview FAQs

How many rounds are there in CSG International Software Development Engineer interview?
CSG International interview process usually has 3 rounds. The most common rounds in the CSG International interview process are Technical, HR and One-on-one Round.
How to prepare for CSG International Software Development Engineer 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 CSG International. The most common topics and skills that interviewers at CSG International expect are Software Development, Linux, C#, Unix and C++.
What are the top questions asked in CSG International Software Development Engineer interview?

Some of the top questions asked at the CSG International Software Development Engineer interview -

  1. Have you used logging in your proj...read more
  2. Why not Web API and ...read more
  3. Life cycle of ...read more

Tell us how to improve this page.

CSG International Software Development Engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

KPIT Technologies Interview Questions
3.4
 • 290 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
Atlassian Interview Questions
3.5
 • 89 Interviews
Temenos Interview Questions
3.1
 • 85 Interviews
NICE Interview Questions
3.6
 • 82 Interviews
Wolters Kluwer Interview Questions
3.9
 • 80 Interviews
View all
CSG International Software Development Engineer Salary
based on 105 salaries
₹7 L/yr - ₹15.5 L/yr
26% less than the average Software Development Engineer Salary in India
View more details

CSG International Software Development Engineer Reviews and Ratings

based on 13 reviews

2.4/5

Rating in categories

2.1

Skill development

2.6

Work-life balance

2.4

Salary

2.7

Job security

2.4

Company culture

2.1

Promotions

1.9

Work satisfaction

Explore 13 Reviews and Ratings
Software Development Engineer II
179 salaries
unlock blur

₹8.8 L/yr - ₹22 L/yr

Software Developer
130 salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Software Development Engineer 1
106 salaries
unlock blur

₹8 L/yr - ₹14.5 L/yr

Software Development Engineer
105 salaries
unlock blur

₹7 L/yr - ₹15.5 L/yr

Senior Software Engineer
104 salaries
unlock blur

₹10 L/yr - ₹28 L/yr

Explore more salaries
Compare CSG International with

KPIT Technologies

3.4
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

NextComm Corporation

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