Upload Button Icon Add office photos

ITCS

Compare button icon Compare button icon Compare
3.3

based on 5 Reviews

Filter interviews by

ITCS Interview Questions, Process, and Tips

Updated 19 Jan 2021

Top ITCS Interview Questions and Answers

View all 12 questions

ITCS Interview Experiences

Popular Designations

2 interviews found

I applied via Naukri.com

Interview Questionnaire 

12 Questions

  • Q1. What static block
  • Ans. 

    Static block is a block of code that is executed when a class is loaded into memory.

    • Static block is declared using the 'static' keyword.

    • It is executed only once when the class is loaded.

    • It is used to initialize static variables or perform any other static initialization.

    • It can throw exceptions which need to be handled.

    • Multiple static blocks can be defined in a class and they are executed in the order they are defined.

  • Answered by AI
  • Q2. What difference between methid overloading and method overriding
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters, while method overriding is having a subclass method with the same name and parameters as a superclass method.

    • Method overloading is resolved at compile-time based on the number and type of arguments passed

    • Method overriding is resolved at runtime based on the actual object type

    • Method overloading is used to provide different ways of...

  • Answered by AI
  • Q3. Can we add null value in hashmap ?
  • Ans. 

    Yes, null value can be added in HashMap.

    • HashMap allows null as key and value.

    • If a null key is added, it will replace the existing null key.

    • If a null value is added, it will be stored as a value with a null key.

  • Answered by AI
  • Q4. Sql update query
  • Q5. What is testing
  • Ans. 

    Testing is the process of evaluating a system or its component(s) with the intent to find whether it satisfies the specified requirements or not.

    • Testing is done to identify defects or errors in the system

    • It helps in improving the quality of the system

    • Testing can be done at different levels such as unit testing, integration testing, system testing, and acceptance testing

    • Automated testing is becoming more popular due to ...

  • Answered by AI
  • Q6. Difference berween abstract class and interface
  • Ans. 

    Abstract class can have implementation while interface only has method signatures.

    • Abstract class can have constructors while interface cannot.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract class can have non-abstract methods while interface only has abstract methods.

    • Abstract class is used for code reusability while interface is used for polymorphism.

    • Example of abstract class: ...

  • Answered by AI
  • Q7. Difference between oracle db and sql db
  • Ans. 

    Oracle DB is a proprietary RDBMS while SQL DB is a generic term for any RDBMS that uses SQL as its language.

    • Oracle DB is developed and marketed by Oracle Corporation while SQL DB is a generic term for any RDBMS that uses SQL as its language.

    • Oracle DB is a proprietary RDBMS while SQL DB is a generic term for any RDBMS that uses SQL as its language.

    • Oracle DB has its own PL/SQL language while SQL DB uses SQL as its langua...

  • Answered by AI
  • Q8. Fetures of opps
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects.

    • Encapsulation - bundling of data and methods that act on that data

    • Inheritance - ability of a class to inherit properties and methods from a parent class

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding of complex implementation details from the user

  • Answered by AI
  • Q9. What is abstract
  • Ans. 

    Abstract is a keyword in Java used to create abstract classes and methods.

    • Abstract classes cannot be instantiated

    • Abstract methods do not have a body and must be implemented by the subclass

    • Abstract classes can have both abstract and non-abstract methods

    • Abstract classes are used to provide a common interface for its subclasses

    • Example: abstract class Animal { abstract void makeSound(); }

  • Answered by AI
  • Q10. What are implicite method of jsp ?
  • Ans. 

    JSP does not have any implicit methods, but it has implicit objects.

    • JSP has implicit objects like request, response, session, application, pageContext, out, config, and exception.

    • These objects are automatically available in JSP pages without any declaration or initialization.

    • They can be used to perform various operations like accessing request parameters, setting session attributes, etc.

  • Answered by AI
  • Q11. Servlet is interface or class ?
  • Ans. 

    Servlet is an interface in Java EE used to handle HTTP requests and responses.

    • Servlet interface is implemented by classes like HttpServlet

    • It has methods like init(), service(), and destroy()

    • Servlets are used to create dynamic web pages and web applications

  • Answered by AI
  • Q12. What are the framwork do you know ?
  • Ans. 

    I know several frameworks including Spring, Hibernate, and Struts.

    • Spring: widely used for building enterprise-level applications

    • Hibernate: object-relational mapping framework for database access

    • Struts: MVC framework for building web applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just honest with your answer and prepare basics concepts , all the best, your success will come soon,

Skills evaluated in this interview

Top ITCS Java Developer Interview Questions and Answers

Q1. what difference between methid overloading and method overriding
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (3)

Data Analyst Interview Questions & Answers

user image Ankamma Rao

posted on 26 Sep 2017

Interview Questionnaire 

2 Questions

  • Q1. Tel me about ur self
  • Q2. Wt is dtp
  • Ans. 

    DTP stands for Desktop Publishing. It refers to the process of creating and designing documents using specialized software.

    • DTP involves the use of software like Adobe InDesign, QuarkXPress, or Microsoft Publisher.

    • It is commonly used for creating brochures, flyers, newsletters, and other printed materials.

    • DTP allows for precise layout and formatting of text, images, and graphics.

    • It involves tasks like typesetting, page ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Typing test was conducted and I passed the test
Total Questions: 6

Round: HR Interview
Experience: My self ankammarao I am frm ap. I stay in Bangalore. I completed my ssc and +2 with 72%. I have working experience 2years

Round: Technical + HR Interview
Experience: Desktop publishing

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(16 Questions)

  • Q1. What are custom hooks in React, and what are their use cases? Additionally, can you provide an example of a custom hook that performs an API call and utilizes the retrieved data?
  • Q2. What is the difference between useMemo and useCallback in React?
  • Q3. What is the difference between class-based components and functional components in React?
  • Q4. How can you implement the lifecycle of a React component in a functional component?
  • Q5. What are the various state management techniques available in React?
  • Q6. What is the architecture of Redux, and what purposes do middlewares serve within it?
  • Q7. What is hoisting in JavaScript?
  • Q8. What is event bubbling in JavaScript?
  • Q9. What are block scope and function scope in JavaScript?
  • Q10. Have you had experience working with semantic tags in HTML?
  • Q11. What are the various methods for creating an object in JavaScript?
  • Q12. What are the differences between shallow copy and deep copy in JavaScript?
  • Q13. What will be the output of the following JavaScript code fragment: `const a; function test() { console.log(a); }; test();`?
  • Q14. How can you use CSS to arrange elements in a row and column layout?
  • Q15. Have you utilized CSS preprocessors, and if so, which ones?
  • Q16. If I have assigned different colors to an ID and a class and applied both to the same element, which color will be applied based on CSS specificity precedence?

Interview Preparation Tips

Topics to prepare for Cognizant Senior Software Engineer interview:
  • Javascript
  • React.Js
  • HTML
  • CSS
Interview preparation tips for other job seekers - Possessing a deep understanding of JavaScript and React is essential. Interviewers may engage in mind games with candidates; therefore, we should remain calm and focused solely on the questions. Additionally, we need to be confident in our answers; otherwise, they may respond with doubt, asking, "Is that so?"
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The Aptitude Test session accesses mathematical and logical reasoning abilities

Round 2 - Technical 

(6 Questions)

  • Q1. What is Vlookup
  • Ans. 

    Vlookup is a function in Excel used to search for a value in a table and return a corresponding value from another column.

    • Vlookup stands for 'Vertical Lookup'

    • It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column

    • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) - searc...

  • Answered by AI
  • Q2. Some IF else Question in Excel
  • Q3. What does your day in your previous organization look like?
  • Ans. 

    My day in my previous organization involved analyzing large datasets, creating reports, and presenting findings to stakeholders.

    • Reviewing and cleaning large datasets to ensure accuracy

    • Creating visualizations and reports to communicate insights

    • Collaborating with team members to identify trends and patterns

    • Presenting findings to stakeholders in meetings or presentations

  • Answered by AI
  • Q4. Could you share the technical skills you possess?
  • Ans. 

    I possess strong technical skills in data analysis, including proficiency in programming languages, statistical analysis, and data visualization tools.

    • Proficient in programming languages such as Python, R, SQL

    • Skilled in statistical analysis and data modeling techniques

    • Experience with data visualization tools like Tableau, Power BI

    • Knowledge of machine learning algorithms and techniques

  • Answered by AI
  • Q5. Can you explain what a Pivot Table is?
  • Ans. 

    A Pivot Table is a data summarization tool used in spreadsheet programs to analyze, summarize, and present data in a tabular format.

    • Pivot tables allow users to reorganize and summarize selected columns and rows of data to obtain desired insights.

    • Users can easily group and filter data, perform calculations, and create visualizations using pivot tables.

    • Pivot tables are commonly used in Excel and other spreadsheet program...

  • Answered by AI
  • Q6. Find the Highest-paid employee in each department along with their salary and department name.
  • Ans. 

    To find the highest-paid employee in each department, we need to group employees by department and then select the employee with the highest salary in each group.

    • Group employees by department

    • Find the employee with the highest salary in each group

    • Retrieve the employee's name, salary, and department name

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nagarro Data Analyst interview:
  • SQL
  • Excel
  • Problem Solving
  • PowerBI
  • SQL Queries
Interview preparation tips for other job seekers - Practice common interviews and scenarios, especially for your role.
Be prepared to discuss past challenges and how did you overcome.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. HTML, CSS fundamentals
  • Q2. Javascript event loop and array methods
  • Q3. Javascript coding for operation on object array
  • Ans. 

    Performing operations on an array of objects using JavaScript.

    • Use array methods like map, filter, reduce for operations on object array.

    • Access object properties using dot notation or bracket notation.

    • Iterate through the array using loops like for loop or forEach method.

    • Example: Calculate total sum of 'price' property in an array of products.

  • Answered by AI
  • Q4. React benefits and Redux implementations
  • Q5. How to create slice and combine reducers
  • Ans. 

    To create slice and combine reducers in React, use the createSlice and combineReducers functions from Redux toolkit.

    • Use createSlice function to define a slice of state with reducers and actions.

    • Example: const counterSlice = createSlice({ name: 'counter', initialState: 0, reducers: { increment: state => state + 1, decrement: state => state - 1 } })

    • Use combineReducers function to combine multiple slices into a sing...

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Questions based on projects, role, responsibilities and initiative at work place
  • Q2. How to create and optimize a react application
  • Ans. 

    To create and optimize a React application, focus on efficient component structure, state management, code splitting, lazy loading, and performance monitoring.

    • Use functional components and hooks for better performance.

    • Implement state management with tools like Redux or Context API.

    • Split code into smaller chunks and lazy load components for faster initial load times.

    • Optimize performance by minimizing re-renders and usin...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Day to day activity of workplace and salary negotiation
  • Ans. 

    Day to day activities involve coding, debugging, testing, collaborating with team members. Salary negotiation involves research, preparation, and effective communication.

    • Coding and developing new features

    • Debugging and fixing issues

    • Testing code for quality assurance

    • Collaborating with team members for project progress

    • Researching market rates for salary negotiation

    • Preparing a strong case for desired salary

    • Effectively comm

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic ReactJs ,NodeJs questions with typescript
  • Q2. Prepare for javascript problems on , string , array , recursion, this.fn
Round 2 - Technical 

(2 Questions)

  • Q1. Asked on Node.js event loop , libuv , AWS , Ci-Cid , authentication, middleware , design and problem solving questions
  • Q2. Recursion, array methods problem solving Js questions , es6 , array methods
Round 3 - HR 

(2 Questions)

  • Q1. Details about you and your family,. Location
  • Q2. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a straightforward process; simply be prepared with the technology you excel in, without the need to explain everything in detail.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are the different types of interfaces?
  • Ans. 

    Different types of interfaces include user interfaces, hardware interfaces, and software interfaces.

    • User interfaces: allow users to interact with the system, such as graphical user interfaces (GUI) and command-line interfaces (CLI)

    • Hardware interfaces: connect hardware components to the system, such as USB, HDMI, and Ethernet ports

    • Software interfaces: define how software components interact with each other, such as appl...

  • Answered by AI
  • Q2. What is the output of the program when the expression is evaluated as 0 divided by 7?
  • Ans. 

    The output of the program when 0 is divided by 7 is 0.

    • Division of 0 by any number results in 0.

    • In programming languages, dividing by 0 usually results in an error or undefined behavior.

  • Answered by AI
  • Q3. What are coroutines, scope functions, and visibility modifiers?
  • Ans. 

    Coroutines, scope functions, and visibility modifiers are key concepts in Kotlin programming for Android development.

    • Coroutines are a way to perform asynchronous programming in a sequential manner. They allow for non-blocking operations.

    • Scope functions are functions that allow you to execute a block of code within the context of an object. Examples include 'let', 'apply', 'run', 'also', and 'with'.

    • Visibility modifiers ...

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. What is the MVVM (Model-View-ViewModel) architectural pattern?
  • Ans. 

    MVVM is an architectural pattern that separates the user interface from the business logic and data handling in Android development.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the UI elements and sending user interactions to the ViewModel.

    • ViewModel acts as a mediator between the Model and the View, handling the communication and data flow.

    • MVVM helps in achieving se...

  • Answered by AI
  • Q2. What are the reasons for using that, and what are its pros and cons?
  • Ans. 

    Using dependency injection in Android development can improve code maintainability and testability.

    • Pros: easier to manage dependencies, promotes code reusability, facilitates unit testing

    • Cons: initial setup can be complex, may introduce overhead in smaller projects

    • Example: Using Dagger 2 for dependency injection in an Android project

  • Answered by AI
  • Q3. Questions related Dependency injection dagger-hilt / koin
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(9 Questions)

  • Q1. Myself and experience in english
  • Q2. Selected for the peocess
  • Q3. Last drawn salary why you are not another process
  • Q4. Why you left last job
  • Q5. Rate ur english 1 to 10 numbers
  • Q6. Introduce yourself as a employee
  • Q7. Season topic talk for two minutes
  • Q8. How is good english
  • Q9. Your favourite place on this topic

Interview Preparation Tips

Interview preparation tips for other job seekers - nice but bad
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. It was technical questions in relevant area
  • Q2. The questions relevant to my skill set and experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. The questions relevant to my skills and experience
  • Q2. The questions relevant to job requirements
Round 3 - HR 

(2 Questions)

  • Q1. General discussion about the profession and career
  • Q2. Discussed job location and client
Round 4 - Behavioral 

(2 Questions)

  • Q1. Discussed about client and company
  • Q2. Orientation related things discussed.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is not Level-3 company. In reality, It is Level-1 Company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Assessment via link MCQ

Round 2 - One-on-one 

(2 Questions)

  • Q1. Microservices theory, Kafka
  • Q2. Singoloton design pattern, concurrent package, core java, collection questions, Java 8 related problem solving stream api questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Same like round 1, little bit managerial
  • Q2. Producer consumer multithreading, Java 8 , core java, project
Round 4 - One-on-one 

(2 Questions)

  • Q1. Behavioral questions
  • Q2. Situation based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Get hands on actual code, singoloton design, multithreading and concurrent package, core java, spring boot, Kafka, microservices etc ..

ITCS Interview FAQs

How to prepare for ITCS 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 ITCS. The most common topics and skills that interviewers at ITCS expect are D, Framework, ITIL, Linux and Monitoring.
What are the top questions asked in ITCS interview?

Some of the top questions asked at the ITCS interview -

  1. what difference between methid overloading and method overrid...read more
  2. what are implicite method of jsp...read more
  3. what are the framwork do you know...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 ITCS interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.4k Interviews
Nagarro Interview Questions
4.0
 • 753 Interviews
Publicis Sapient Interview Questions
3.5
 • 594 Interviews
GlobalLogic Interview Questions
3.7
 • 554 Interviews
UST Interview Questions
3.8
 • 492 Interviews
CGI Group Interview Questions
4.0
 • 470 Interviews
View all

ITCS Reviews and Ratings

based on 5 reviews

3.3/5

Rating in categories

3.3

Skill development

2.9

Work-Life balance

2.9

Salary & Benefits

3.6

Job Security

3.3

Company culture

3.3

Promotions/Appraisal

3.5

Work Satisfaction

Explore 5 Reviews and Ratings
System Engineer
3 salaries
unlock blur

₹2.5 L/yr - ₹2.9 L/yr

Explore more salaries
Compare ITCS with

Cognizant

3.8
Compare

NTT Data Information Processing Services

4.0
Compare

Sutherland Global Services

3.7
Compare

Hexaware Technologies

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview