Upload Button Icon Add office photos

Filter interviews by

CCS Global Tech Interview Questions and Answers

Updated 6 Aug 2023

7 Interview questions

An Associate Software Engineer was asked
Q. How do you join two tables using an inner join?
Ans. 

To join two tables with inner join, use the JOIN keyword along with the ON clause to specify the join condition.

  • Use the JOIN keyword to combine rows from two tables based on a related column between them

  • Specify the join condition using the ON keyword followed by the columns to join on

  • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is the difference between the DELETE and TRUNCATE commands in SQL?
Ans. 

Delete command removes rows one by one while truncate command removes all rows at once.

  • Delete is a DML command while truncate is a DDL command.

  • Delete can be rolled back while truncate cannot be rolled back.

  • Delete command fires triggers for each row deleted, while truncate does not.

  • Delete command is slower as it maintains logs for each row deleted, while truncate is faster as it does not maintain logs.

  • Delete comman...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. How do you delete duplicate records in a table?
Ans. 

Use SQL query with GROUP BY and HAVING clause to delete duplicate records in a table.

  • Identify the columns that define a duplicate record

  • Write a SQL query to select the duplicate records using GROUP BY and HAVING clause

  • Delete the duplicate records using DELETE statement with the identified criteria

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is the difference between the WHERE and HAVING clauses?
Ans. 

WHERE clause filters rows before grouping, HAVING clause filters groups after grouping.

  • WHERE clause is used to filter rows based on a condition

  • HAVING clause is used to filter groups based on a condition

  • WHERE clause is used before GROUP BY clause

  • HAVING clause is used after GROUP BY clause

  • WHERE clause cannot contain aggregate functions

  • HAVING clause can contain aggregate functions

  • Example: SELECT department, AVG(salar...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Write a query to fetch the details of employees who are in the same department.
Ans. 

Query to fetch details of employees in the same department

  • Use SELECT statement to fetch employee details

  • Use JOIN to join employee and department tables

  • Use WHERE clause to filter employees in the same department

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is oops and what are its advantages
Ans. 

OOPs is a programming paradigm that uses objects to represent real-world entities and provides encapsulation, inheritance, and polymorphism.

  • Encapsulation: Hides the implementation details of an object from the outside world

  • Inheritance: Allows creating a new class from an existing class

  • Polymorphism: Allows objects of different classes to be treated as if they are of the same class

  • Advantages: Reusability, Modularity...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Different types of joins
Ans. 

Different types of joins are Inner Join, Left Join, Right Join, and Full Outer Join.

  • Inner Join returns only the matching rows from both tables.

  • Left Join returns all the rows from the left table and matching rows from the right table.

  • Right Join returns all the rows from the right table and matching rows from the left table.

  • Full Outer Join returns all the rows from both tables, including non-matching rows.

View all Associate Software Engineer interview questions
Are these interview questions helpful?

CCS Global Tech Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Feb 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. What is oops and what are its advantages
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities and provides encapsulation, inheritance, and polymorphism.

    • Encapsulation: Hides the implementation details of an object from the outside world

    • Inheritance: Allows creating a new class from an existing class

    • Polymorphism: Allows objects of different classes to be treated as if they are of the same class

    • Advantages: Reusability, Modularity, Fle...

  • Answered by AI
  • Q2. Different types of joins
  • Ans. 

    Different types of joins are Inner Join, Left Join, Right Join, and Full Outer Join.

    • Inner Join returns only the matching rows from both tables.

    • Left Join returns all the rows from the left table and matching rows from the right table.

    • Right Join returns all the rows from the right table and matching rows from the left table.

    • Full Outer Join returns all the rows from both tables, including non-matching rows.

  • Answered by AI
  • Q3. Primary Key and unique key
  • Q4. What's the difference between where and having clause
  • Ans. 

    WHERE clause filters rows before grouping, HAVING clause filters groups after grouping.

    • WHERE clause is used to filter rows based on a condition

    • HAVING clause is used to filter groups based on a condition

    • WHERE clause is used before GROUP BY clause

    • HAVING clause is used after GROUP BY clause

    • WHERE clause cannot contain aggregate functions

    • HAVING clause can contain aggregate functions

    • Example: SELECT department, AVG(salary) FR...

  • Answered by AI
  • Q5. Write q query to fetch the details of employees who are in the same department
  • Ans. 

    Query to fetch details of employees in the same department

    • Use SELECT statement to fetch employee details

    • Use JOIN to join employee and department tables

    • Use WHERE clause to filter employees in the same department

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you give interview and always remember your positive energy inside yourself and If you don't know any question make sure don't tell lie to interviewer and make note of questions that are asked mostly before giving interview and make sure always cover those topics which are part of your resume and project you have covered.Make answers practically with example and in simple words so that interviewer can understand that you well know the concept

Skills evaluated in this interview

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 before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. What are your skills?
  • Q2. What is your background?
Round 3 - Technical 

(3 Questions)

  • Q1. What is difference between delete and truncate command in SQL?
  • Ans. 

    Delete command removes rows one by one while truncate command removes all rows at once.

    • Delete is a DML command while truncate is a DDL command.

    • Delete can be rolled back while truncate cannot be rolled back.

    • Delete command fires triggers for each row deleted, while truncate does not.

    • Delete command is slower as it maintains logs for each row deleted, while truncate is faster as it does not maintain logs.

    • Delete command can...

  • Answered by AI
  • Q2. How to join two table with inner join?
  • Ans. 

    To join two tables with inner join, use the JOIN keyword along with the ON clause to specify the join condition.

    • Use the JOIN keyword to combine rows from two tables based on a related column between them

    • Specify the join condition using the ON keyword followed by the columns to join on

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q3. How to delete duplicate records in a table?
  • Ans. 

    Use SQL query with GROUP BY and HAVING clause to delete duplicate records in a table.

    • Identify the columns that define a duplicate record

    • Write a SQL query to select the duplicate records using GROUP BY and HAVING clause

    • Delete the duplicate records using DELETE statement with the identified criteria

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the skills well for which you are applying

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about CCS Global Tech?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. First round- written test, second round- coding, third - communication test, fourth round- interview. In interview all questions are based on projects. One question is related to java collections

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn everything from resume. Most of the questions are related to your project like your role in project, main objective of your project, future scope, technology used,

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Interview started with tell me about yourself and rest all depend on your resume. They also asked about had you done any certification. Major and minor project during our final semester.Technical ques on d...

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared your communication skills and body language. Prepare things which are mentioned in resume very well.

Interview Questionnaire 

1 Question

  • Q1. How will you tackle the conflicts with the colleagues?

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

Round 1 - Aptitude Test 

Easy noy really tough to be honest

Round 2 - Technical 

(1 Question)

  • Q1. Uses of turbine and types of turbinew
  • Ans. 

    Turbines are used to convert kinetic energy into mechanical energy. There are various types of turbines such as steam, gas, and hydraulic.

    • Turbines are used in power generation, aviation, and marine propulsion.

    • Steam turbines are used in thermal power plants to generate electricity.

    • Gas turbines are used in aircraft engines and power plants.

    • Hydraulic turbines are used in hydroelectric power plants.

    • Wind turbines are used t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool go for it keep a neat attitude.Preapre aptitude reasoning qnd general engliah

I applied via Campus Placement and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

1 hour of test, time and speed, work and distance.

Round 2 - Group interview 

(2 Questions)

  • Q1. Which college subject was your favorite
  • Q2. Would you like to work for Accenture

Interview Preparation Tips

Interview preparation tips for other job seekers - Its a very easy job, just do aptitude well
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Average questions with combination of logical verbal reasoning

Round 2 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice math.If you have good written and verbal skills you can easily crack the interview

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

Interview Questionnaire 

2 Questions

  • Q1. Self intro
  • Q2. About Project

Interview Preparation Tips

Interview preparation tips for other job seekers - just be spontaneous with the interviewer and maintain eye contact

Interview Questionnaire 

1 Question

  • Q1. About Resume, about Major project

CCS Global Tech Interview FAQs

How many rounds are there in CCS Global Tech interview?
CCS Global Tech interview process usually has 2-3 rounds. The most common rounds in the CCS Global Tech interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in CCS Global Tech interview?

Some of the top questions asked at the CCS Global Tech interview -

  1. Write q query to fetch the details of employees who are in the same departm...read more
  2. What is difference between delete and truncate command in S...read more
  3. What's the difference between where and having cla...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

CCS Global Tech Reviews and Ratings

based on 14 reviews

2.2/5

Rating in categories

1.9

Skill development

2.6

Work-life balance

2.2

Salary

1.5

Job security

1.9

Company culture

1.8

Promotions

1.9

Work satisfaction

Explore 14 Reviews and Ratings
Business Development Executive
5 salaries
unlock blur

₹4.2 L/yr - ₹6.2 L/yr

Data Engineer
5 salaries
unlock blur

₹4.5 L/yr - ₹11.3 L/yr

Associate Software Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Assistant Manager
4 salaries
unlock blur

₹5 L/yr - ₹15.5 L/yr

US IT Recruiter
4 salaries
unlock blur

₹2.4 L/yr - ₹8 L/yr

Explore more salaries
Compare CCS Global Tech with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview