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
6d (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

Interview Preparation Tips

Interview preparation tips for other job seekers - On that day i am attending for my interview. And I am waiting so long time for me interview but you didn't taken for me cognizant interview. So please I am kindly requesting you sir please reschedule for me my cognizant interview

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

Round 1 - Aptitude Test 

Quants, LA and English aptitude.

Round 2 - Technical 

(1 Question)

  • Q1. Basic to intermediate question on technology.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on technology for what you are applying.

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

Round 1 - Aptitude Test 

The aptitude test conducted then was neither easy nor tough. It had basic and complex questions too. You need to have a good grip in your Verbal and Quantitative aptitude. Since I'm an IT student there were some technical subjects like DBMS, CLOUD, Networking and some sections in DS Algorithms and programming too. So in over all, you need to have good CGPA along with 60-70% knowledge in your core subjects.

Round 2 - HR 

(2 Questions)

  • Q1. The HR was easy for me and it went like this 1) Tell me about yourself 2) How was Btech for you?
  • Q2. 3) What do you know about Accenture? 4) Explain your final year project. 5) Why do you want to join Accenture? 6) Do you have any questions for me or have any doubts?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and honest. Have good knowledge in your core subjects and cast your skills.

I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Technical questions related to your domain. Mostly what, how & why questions.
  • Q2. Some aptitude questions to solve.
  • Q3. 1 or 2 coding questions.
  • Q4. HR questions. Like why this company, tell me about yourself, who is the CEO of CTS, where is the headquarter etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm & expressive. Don't hide the facts and truth. Don't try to manipulate HR.

I applied via Campus Placement and was interviewed before May 2020. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. They asked to first introduce .
  • Q2. They then went on asking about projects and the difficulties faces while working on projects
  • Q3. What are the technicalities related to the project(s).
  • Ans. 

    The project involves developing a web-based application for managing inventory and sales.

    • The application will be built using Java and Spring framework.

    • It will have a user-friendly interface for adding, updating and deleting products.

    • The application will also generate reports on sales and inventory levels.

    • The database used will be MySQL.

    • The project will follow Agile methodology for development.

  • Answered by AI
  • Q4. Any certifications that you have ?
  • Q5. Any achievement ?
  • Ans. 

    I'm proud of my contributions to team projects, personal growth, and impactful coding solutions that improved efficiency.

    • Led a team project that developed a web application, resulting in a 30% increase in user engagement.

    • Implemented a new algorithm that reduced processing time by 40% in a data analysis tool.

    • Completed a challenging coding bootcamp, enhancing my skills in multiple programming languages.

    • Contributed to ope...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In one line: Stay calm and focused and well mannered. And please try to keep a smile in your face for the entire duration, u can practise ,just to see how it looks using mirror. It will let the interviewers get some positive vibe about you.
Are these interview questions helpful?

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

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

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.8
 • 8.6k 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.8
 • 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 - ₹10 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