i
ITC Infotech
Filter interviews by
Implementing layered security measures is essential to protect OT environments from cyber threats.
Conduct regular risk assessments to identify vulnerabilities in the OT environment.
Implement network segmentation to isolate OT systems from IT networks, reducing attack surfaces.
Utilize firewalls and intrusion detection systems specifically designed for OT environments.
Regularly update and patch OT systems to protect...
Communication between OT and IT involves data exchange, integration, and collaboration for operational efficiency and security.
Data Integration: OT systems like SCADA communicate with IT systems for real-time data analysis.
Protocols: Common protocols like MQTT and OPC UA facilitate communication between OT devices and IT networks.
Security Measures: Firewalls and VPNs are used to secure data exchange between OT and...
Effective networking in OT environments enhances communication, collaboration, and operational efficiency across systems.
Understand the OT architecture: Familiarize yourself with the specific components like PLCs, SCADA systems, and sensors.
Establish secure communication protocols: Use protocols like OPC UA or MQTT to ensure data integrity and security.
Implement segmentation: Divide the network into zones to limit...
CSS (Cascading Style Sheets) is a stylesheet language used to describe the presentation of HTML documents.
CSS controls layout, colors, fonts, and overall visual appearance of web pages.
It allows for responsive design, adapting layouts for different screen sizes.
Example: Using 'color: blue;' to change text color to blue.
CSS can be applied inline, internally within a <style> tag, or externally via .css files.
E...
What people are saying about ITC Infotech
A website is a collection of interconnected web pages hosted on a server, accessible via the internet.
Websites can be static (fixed content) or dynamic (content changes based on user interaction).
Examples of static websites include personal blogs or portfolios.
Dynamic websites include social media platforms like Facebook or e-commerce sites like Amazon.
Websites are accessed using web browsers like Chrome, Firefox,...
This code counts the number of vowels in a given string, helping to analyze text data effectively.
Character Iteration: Loop through each character in the string to check if it is a vowel.
Vowel Check: Use a set of characters (e.g., 'a', 'e', 'i', 'o', 'u') to determine if a character is a vowel.
Case Insensitivity: Convert the string to lower case to ensure that both uppercase and lowercase vowels are counted.
Count ...
Tuples are immutable sequences in Python, used to store collections of items.
Tuples are defined using parentheses: example: `my_tuple = (1, 2, 3)`.
They can hold mixed data types: example: `mixed_tuple = (1, 'hello', 3.14)`.
Tuples are immutable, meaning their contents cannot be changed after creation.
They support indexing and slicing: example: `my_tuple[1]` returns `2`.
Tuples can be nested: example: `nested_tuple =...
Python supports various built-in data types for handling different kinds of data efficiently.
1. Numeric Types: Includes integers (e.g., 5), floats (e.g., 3.14), and complex numbers (e.g., 2 + 3j).
2. Sequence Types: Lists (e.g., [1, 2, 3]), tuples (e.g., (1, 2, 3)), and ranges (e.g., range(5)).
3. Text Type: Strings (e.g., 'Hello, World!') are used for textual data.
4. Mapping Type: Dictionaries (e.g., {'key': 'value...
Lists are mutable and can change, while tuples are immutable and cannot be altered after creation.
Mutability: Lists are mutable (e.g., list.append(4)), tuples are immutable (e.g., tuple[0] = 1 raises an error).
Syntax: Lists use square brackets (e.g., my_list = [1, 2, 3]), tuples use parentheses (e.g., my_tuple = (1, 2, 3)).
Performance: Tuples are generally faster than lists due to their immutability.
Use Cases: Use...
Decorators in Python are a powerful tool for modifying the behavior of functions or methods dynamically.
Function Modification: Decorators allow you to wrap a function, modifying its behavior without changing its code. Example: @staticmethod.
Code Reusability: They promote code reusability by allowing common functionality to be applied to multiple functions. Example: logging decorators.
Chaining Decorators: Multiple ...
I appeared for an interview in Dec 2024.
Our working culture promotes collaboration, innovation, and integrity.
We prioritize teamwork and open communication to achieve common goals.
We encourage creativity and out-of-the-box thinking to solve complex problems.
We uphold high ethical standards and value honesty and transparency in all interactions.
We strive for continuous improvement and learning to stay ahead in the ever-evolving technology landscape.
I appeared for an interview in Feb 2025.
As a program manager, I coordinated multiple projects, ensuring alignment with strategic goals and effective resource management.
Developed a comprehensive project roadmap that aligned with organizational objectives, ensuring all stakeholders were informed.
Implemented Agile methodologies to enhance team collaboration and adaptability, resulting in a 20% increase in project delivery speed.
Facilitated regular cross-functi...
Successfully led cross-functional teams to deliver projects on time, improve processes, and enhance client satisfaction.
Led a team of 10 in delivering a critical software project 2 weeks ahead of schedule, resulting in a 15% cost saving.
Implemented Agile methodologies that improved team productivity by 30%, enabling faster response to client needs.
Developed a stakeholder communication plan that increased client satisfa...
I appeared for an interview in Feb 2025.
Oriented in sql,java logical question and manual testing they asked about that.
Pass by value &pass by reference
About the project &They suggest one topic in based on us
I applied via AmbitionBox and was interviewed in Nov 2024. There were 4 interview rounds.
I utilize tools such as Excel, Python, SQL, and Tableau for data analysis.
Excel for basic data manipulation and visualization
Python for advanced data analysis and machine learning
SQL for querying databases
Tableau for creating interactive visualizations
Data analysis of code in the context of data analysis.
Coding logical question paper.
I appeared for an interview in Aug 2024.
First, test and then pass the next.
I did not have a coding test, but the next round included a coding test.
Two were passed, and the next round was conducted on the assignment.
Assignment: right or wrong case study on the assignment.
The main focus is on group discussion.
Coding tests help assess candidates' technical skills and problem-solving abilities.
Coding tests help evaluate candidates' ability to write efficient and clean code.
They assess problem-solving skills and logical thinking.
Coding tests ensure that candidates have the necessary technical skills for the job.
They help identify candidates who can work well under pressure and meet deadlines.
The other option was to work as a customer service representative.
Customer service representative role involves handling customer inquiries and resolving issues.
Requires good communication skills and ability to remain calm under pressure.
Examples: answering phone calls, responding to emails, assisting customers with product information.
My strength as a telecaller is my excellent communication skills and ability to build rapport with customers. My weakness is sometimes I can be too detail-oriented, which may slow down my call volume.
Strength: Excellent communication skills
Strength: Ability to build rapport with customers
Weakness: Detail-oriented, which may slow down call volume
Motivate the manager by addressing the company's problems and offering support and solutions.
Listen to the manager's concerns and show empathy
Offer constructive feedback and solutions to address the problems
Provide resources and support to help the manager overcome challenges
Recognize and appreciate the manager's efforts and achievements
Encourage open communication and collaboration within the team
I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.
One coding test happen
Using stream API for Data Structures and Algorithms
Stream API in Java can be used to perform operations on collections like filtering, mapping, reducing, etc.
It can be used for implementing various data structures and algorithms efficiently.
For example, you can use stream API to find the sum of all elements in an array or filter out even numbers from a list.
Using stream API to filter a list of numbers and find the sum of even numbers
Use Stream.filter() to filter out even numbers
Use Stream.mapToInt() to convert stream to IntStream
Use IntStream.sum() to find the sum of even numbers
I appeared for an interview before Jun 2024, where I was asked the following questions.
I appeared for an interview before Jun 2024, where I was asked the following questions.
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
Optimizing stored procedures involves using proper indexing, reducing unnecessary loops, and minimizing database calls.
Use proper indexing on columns used in WHERE clauses to improve query performance
Avoid using cursors and loops whenever possible, as they can be inefficient
Minimize the number of database calls by combining multiple queries into a single query or using temporary tables
Consider using bulk processing tec...
Optimizing SQL queries involves using indexes, minimizing data retrieval, avoiding unnecessary joins, and optimizing query structure.
Use indexes on columns frequently used in WHERE clauses
Minimize data retrieval by selecting only necessary columns
Avoid unnecessary joins by using EXISTS or IN clauses instead
Optimize query structure by using appropriate join types and conditions
Returning clause is used to return a value from a function or procedure in PL/SQL.
Used to return a single value from a function or procedure
Can be used to return multiple values using OUT parameters
Helps in passing values back to the calling program
Triggers can lead to performance issues, complexity, and potential for unintended consequences.
Triggers can make code harder to debug and maintain
They can lead to cascading effects if not carefully implemented
Performance can be impacted if triggers are not optimized
Triggers can introduce dependencies between different parts of the codebase
I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.
Split alpha-numeric values in Java without using split method
Iterate through each character in the input string
Check if the character is a digit or a letter using Character.isDigit() and Character.isLetter() methods
Create separate strings for digits and letters and store them in an array
Use ALTER TABLE statement to add a new column with a default value and set it to NOT NULL
Use ALTER TABLE table_name ADD column_name data_type DEFAULT default_value NOT NULL;
Example: ALTER TABLE employees ADD hire_date DATE DEFAULT '2022-01-01' NOT NULL;
The duration of ITC Infotech interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 367 interview experiences
Difficulty level
Duration
based on 4k reviews
Rating in categories
Associate Information Technology Consultant
5.1k
salaries
| ₹4.3 L/yr - ₹14.6 L/yr |
Lead Consultant
4.7k
salaries
| ₹9.2 L/yr - ₹36 L/yr |
Associate Consultant
944
salaries
| ₹2.5 L/yr - ₹19.2 L/yr |
Software Engineer
514
salaries
| ₹3.6 L/yr - ₹14.3 L/yr |
Senior Software Engineer
382
salaries
| ₹6.8 L/yr - ₹25.4 L/yr |
TCS
Mphasis
L&T Technology Services
Coforge