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 441 Reviews

Filter interviews by

CSG International Technical Support Engineer Interview Questions and Answers

Updated 24 May 2022

CSG International Technical Support Engineer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. About project on overall experience and expertise

Interview Preparation Tips

Interview preparation tips for other job seekers - Awesome experience interviews were very kind and listened very carefully about projects and strength and weaknesses.

Good people

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Support Role Questions 1) Like explaining a case which was done in your previous role and experience
  • Q2. Questions on Javascript
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Interview questions on Javascript, HTML, CSS and behavioural
Round 3 - Behavioral 

(1 Question)

  • Q1. Manager Questions based on Position and previous work experience.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How does internet works
  • Q2. HTTP codes SQL troubleshooting
Round 2 - Technical 

(1 Question)

  • Q1. SQL python java
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Work shifts questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Write a SQL join query
  • Ans. 

    A SQL join query combines rows from two or more tables based on a related column between them.

    • Use keywords like INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN to specify the type of join

    • Specify the columns to join on using ON keyword

    • Include the table names and column names in the query

  • Answered by AI
  • Q2. What is telnet ?
  • Ans. 

    Telnet is a network protocol used to access and manage devices remotely over a network.

    • Telnet allows users to connect to a remote device or server using a command-line interface.

    • It is commonly used for troubleshooting network issues, configuring devices, and accessing remote servers.

    • Telnet operates on port 23 and transmits data in plain text, making it less secure compared to SSH.

    • Example: telnet 192.168.1.1 23

  • Answered by AI
  • Q3. What are vpns and working
  • Ans. 

    VPNs are Virtual Private Networks that allow users to securely access a private network over a public network.

    • VPNs encrypt data to ensure privacy and security

    • They can be used to access region-restricted websites or bypass censorship

    • Common VPN protocols include OpenVPN, L2TP/IPsec, and IKEv2

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to do technical troubleshooting
  • Ans. 

    Technical troubleshooting involves identifying, isolating, and resolving technical issues to ensure systems are functioning properly.

    • Identify the problem by gathering information from the user or system logs

    • Isolate the issue by testing different components or configurations

    • Resolve the problem by applying solutions based on the root cause

    • Document the troubleshooting process and solution for future reference

  • Answered by AI
  • Q2. Write left join query
  • Ans. 

    A left join query combines rows from two tables based on a related column, including all rows from the left table.

    • Use the LEFT JOIN keyword in your query

    • Specify the columns you want to select from both tables

    • Specify the join condition using ON clause

    • Example: SELECT * FROM table1 LEFT JOIN table2 ON table1.id = table2.id

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Few linux commands
  • Q2. Explain few, Any command for example
  • Ans. 

    Some common commands for technical support engineers include ping, ipconfig, and tracert.

    • Ping: Used to test the reachability of a host on an IP network.

    • Ipconfig: Displays all current TCP/IP network configuration values.

    • Tracert: Shows the route that packets take to reach a specified destination.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself and past experiences
Round 2 - Technical 

(1 Question)

  • Q1. Linux environment, hardware issues, navigation in linux, logs.
Round 3 - Behavioral 

(1 Question)

  • Q1. Discussion about past experience and current roll
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic C/C++ knowledge
  • Q2. Which are not Object Oriented Languages?
  • Ans. 

    Non-object oriented languages do not support the concept of objects and classes.

    • C

    • COBOL

    • Fortran

    • Pascal

  • Answered by AI

I applied via Referral and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. If I open www.google.com, explain what goes on in the background.
  • Ans. Explain the process from the scratch. DNS, TCP, SSL, and HTTP requests to google.com. The browser makes a DNS connection to get the IP address (explain the full process, recursive query), makes a TCP connection to the IP address (explain the handshake). Then since google is on HTTPS, a TLS handshake happens (Explain the full flow). Then, an HTTP GET request is made by the browser to fetch the page.
  • Answered by Md. Tahseen khan
  • Q2. Few differences between HTTP 1.0 and 1.1. You may want to check HTTP2 as well.
  • Ans. 

    HTTP 1.1 introduced persistent connections, chunked transfer encoding, and improved caching.

    • HTTP 1.1 allows multiple requests over a single connection

    • HTTP 1.1 supports chunked transfer encoding for better handling of large data

    • HTTP 1.1 introduced improved caching mechanisms

    • HTTP 2.0 uses binary framing instead of text-based framing in HTTP 1.x

  • Answered by AI
  • Q3. Read about caching headers thoroughly and their differences. Like the difference between no-store and no-cache.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with HTTP, DNS and SSL

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to solve the error in the code? what is scope? what are logical operators?
  • Ans. 

    Scope refers to the visibility and accessibility of variables in a program. Logical operators are used to perform logical operations in code.

    • Scope in programming refers to where in the code a variable can be accessed. It can be global, local, or block scope.

    • To solve an error in the code, first identify the error message or behavior causing the issue. Then, debug the code by checking for syntax errors, logical errors, o...

  • Answered by AI
  • Q2. How will you get the data in the table using js? what are the other ways to print the output? what is a block in js?
  • Ans. 

    To get data in a table using js, you can use DOM manipulation methods like getElementById or querySelector. Other ways to print output include console.log and innerHTML. A block in js is a set of statements enclosed in curly braces.

    • Use getElementById or querySelector to get data in a table using js

    • Other ways to print output include console.log and innerHTML

    • A block in js is a set of statements enclosed in curly braces,

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. About ServiceNow? About the technical role in my previous company? previous job roles and responsibilities? Why do you want to switch from previous company? How will you handle the challenges here in servi...
  • Q2. Why do I want to switch from my previous company?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for new challenges and opportunities for growth

    • Interested in gaining experience in a different industry or technology

    • Seeking a better work-life balance or company culture

    • Wanting to work with a different team or leadership style

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview went well, but I didn't receive any feedback beyond the rejection. I hope to get some insights into the reasons for the decision, as it would help to learn for next time. I'll definitely try again!

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Querstions related to rest ai
  • Q2. What happen when u click google.com
  • Ans. 

    When you click google.com, you are directed to the Google search engine homepage.

    • Redirects to Google search engine homepage

    • Allows you to search for information

    • Access to various Google services like Gmail, Maps, and Drive

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Update query in sql
  • Ans. 

    An update query in SQL is used to modify existing records in a database.

    • Use the UPDATE keyword followed by the table name

    • Set the column(s) to be updated using SET

    • Specify the new values for the columns

    • Add a WHERE clause to specify which records to update

  • Answered by AI
  • Q2. Linux telnet, ping commands

Skills evaluated in this interview

CSG International Interview FAQs

How many rounds are there in CSG International Technical Support Engineer interview?
CSG International interview process usually has 1 rounds. The most common rounds in the CSG International interview process are One-on-one Round.

Tell us how to improve this page.

CSG International Technical Support Engineer Salary
based on 7 salaries
₹6 L/yr - ₹17 L/yr
129% more than the average Technical Support Engineer Salary in India
View more details
Software Development Engineer II
156 salaries
unlock blur

₹8.8 L/yr - ₹22 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