Filter interviews by
I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.
Trailing PE is a financial metric used to evaluate the valuation of a company by dividing its current stock price by its trailing earnings per share.
Trailing PE is calculated by dividing the current market price of a company's stock by its earnings per share (EPS) over the past 12 months.
It helps investors assess whether a stock is overvalued or undervalued.
A higher trailing PE ratio indicates that investors are willin...
I applied via Company Website and was interviewed before Sep 2020. There was 1 interview round.
I applied via Walk-in and was interviewed before May 2020. There was 1 interview round.
We develop our company by focusing on innovation, customer satisfaction, and strategic partnerships.
Investing in research and development to create new products and services
Listening to customer feedback and implementing changes to improve their experience
Forming partnerships with complementary businesses to expand our reach and offerings
Staying up-to-date with industry trends and adapting our strategies accordingly
Developing a strong brand image, expanding customer base, improving product quality and innovation, and effective marketing strategies can help the company to develop and hire.
Building a strong brand image through consistent messaging and quality products/services
Expanding customer base through targeted marketing and advertising campaigns
Improving product quality and innovation to stay ahead of competitors
Effective mar...
Yes, shareholders can be helpful in developing a company.
Shareholders can provide funding for growth and expansion.
They can offer expertise and guidance in business operations.
Shareholders can also bring in valuable connections and networking opportunities.
However, it is important to balance the interests of shareholders with the long-term goals of the company.
Shareholders may also have different priorities and expecta...
We currently have 25 shareholders who are actively involved in the company.
Our shareholders come from diverse backgrounds and bring a range of skills and expertise to the table.
They are involved in decision-making processes and provide valuable input for the growth of the company.
Some of our shareholders are also investors who have contributed to the company's funding.
We maintain regular communication with our sharehol...
TCS is developing through both people and shareholders.
TCS values its employees and invests in their development to drive growth.
Shareholders provide the necessary capital for TCS to expand and innovate.
TCS has a strong culture of employee empowerment and encourages innovation.
Shareholders benefit from TCS's growth and success through dividends and stock price appreciation.
I applied via Recruitment Consultant
Initiating business development and growth requires a strategic approach and a focus on customer needs.
Conduct market research to identify customer needs and preferences
Develop a clear value proposition and unique selling points
Build strong relationships with customers and partners
Invest in marketing and advertising to increase brand awareness
Continuously innovate and improve products and services
Explore new markets an...
Multithreading is the ability of a program to perform multiple tasks concurrently.
Multithreading allows for better utilization of CPU resources
It can improve program performance and responsiveness
Examples include running multiple downloads simultaneously or updating a GUI while performing a background task
Synchronization is important to prevent race conditions and ensure thread safety
Multithreading in Java allows concurrent execution of multiple threads.
Java provides built-in support for multithreading through the java.lang.Thread class.
Threads can be created by extending the Thread class or implementing the Runnable interface.
The start() method is used to start a new thread, which calls the run() method.
Synchronization mechanisms like synchronized blocks and locks can be used to control access to ...
No, Java does not support multiple inheritance. However, interfaces can inherit multiple interfaces.
Java does not allow a class to inherit from multiple classes.
This is because multiple inheritance can lead to ambiguity and conflicts.
However, a class can implement multiple interfaces in Java.
An interface can extend multiple interfaces, allowing for inheritance of multiple interfaces.
This is known as interface inheritan
DO-WHILE loop executes the code block at least once, while WHILE loop executes only if the condition is true.
DO-WHILE loop checks the condition at the end of the loop
WHILE loop checks the condition at the beginning of the loop
DO-WHILE loop executes the code block at least once
WHILE loop may not execute the code block at all if the condition is false
I would rate myself as an 8 on a scale of 1-10.
I have a strong understanding of software development principles and practices.
I have experience working with multiple programming languages and frameworks.
I am skilled in problem-solving and debugging.
I have successfully delivered complex software projects in the past.
I continuously strive to learn and improve my skills.
Display data of two tables by joining them using a common column.
Use SQL JOIN statement to combine data from two tables based on a common column.
Choose the appropriate type of JOIN based on the relationship between the tables.
Specify the columns to be displayed in the SELECT statement.
Use aliases to differentiate between columns with the same name in both tables.
Apply any necessary filters or sorting to the result set.
Networking refers to the process of connecting devices and systems to share information and resources.
Networking involves the use of hardware and software to connect devices and systems.
It allows for the sharing of information and resources such as files, printers, and internet access.
Networking can be done through wired or wireless connections.
Examples of networking technologies include Ethernet, Wi-Fi, and Bluetooth.
...
A router is a networking device that forwards data packets between computer networks.
A router operates at the network layer of the OSI model.
It uses routing tables to determine the best path for data packets to reach their destination.
Routers can connect multiple networks together, such as LANs and WANs.
They provide network address translation (NAT) to allow multiple devices to share a single public IP address.
Routers ...
Subnetting is the process of dividing a network into smaller subnetworks, called subnets, to improve network efficiency and security.
Subnetting allows for better utilization of IP addresses by dividing a network into smaller segments.
It helps in improving network performance by reducing network congestion.
Subnetting enhances network security by isolating different departments or devices within a network.
It enables effi...
Protocols are a set of rules and guidelines that govern the communication between devices or systems.
Protocols define the format and order of messages exchanged between devices.
They ensure reliable and efficient communication by specifying error detection and correction mechanisms.
Examples of protocols include TCP/IP, HTTP, SMTP, and FTP.
Protocols can operate at different layers of the network stack, such as the applic
Static protocols are fixed and do not change, while dynamic protocols can adapt to changing network conditions.
Static protocols are typically used in simple networks with predictable traffic patterns.
Dynamic protocols are used in complex networks with varying traffic patterns.
Examples of static protocols include ARP and RARP.
Examples of dynamic protocols include OSPF and BGP.
TCS is a leading global IT services company with a strong reputation and diverse opportunities for growth.
TCS has a strong reputation in the IT industry for delivering high-quality services and solutions.
TCS offers diverse opportunities for growth and career development.
TCS has a global presence, providing exposure to different cultures and working environments.
TCS values innovation and encourages employees to think cr...
I expect to receive proper training and support to transition into the IT field successfully.
I expect to be provided with relevant training and resources to learn the necessary skills for the role.
I hope for guidance and mentorship from experienced IT professionals within the company.
I am eager to contribute my non-IT skills and knowledge to the team, bringing a fresh perspective.
I am committed to putting in the effort...
Multithreading is the ability of a program to perform multiple tasks concurrently.
Multithreading allows for better utilization of CPU resources
It can improve program performance and responsiveness
Examples include running multiple downloads simultaneously or updating a GUI while performing a background task
Synchronization is important to prevent race conditions and ensure thread safety
Java supports multithreading through the java.lang.Thread class and java.util.concurrent package.
Java threads are created by extending the Thread class or implementing the Runnable interface.
Threads can be started using the start() method.
Synchronization can be achieved using synchronized keyword or locks.
Java provides several classes and interfaces to support concurrent programming such as Executor, ExecutorService, F...
Java does not support multiple inheritance, but interfaces can inherit multiple interfaces.
Java does not allow a class to inherit from multiple classes, but it can implement multiple interfaces.
Interfaces can inherit from multiple interfaces using the 'extends' keyword.
For example, interface C can extend interfaces A and B: 'interface C extends A, B {}'
Do-While loop executes the code block once before checking the condition, while loop checks the condition first.
Do-While loop is used when the code block needs to be executed at least once.
While loop is used when the code block may not need to be executed at all.
Do-While loop is less efficient than While loop as it always executes the code block at least once.
Example of Do-While loop: do { //code block } while (conditi...
Join the tables on a common column and display the combined data.
Identify the common column in both tables
Use JOIN statement to combine the tables
Select the columns to display
Apply any necessary filters or sorting
Display the data in a table or list format
Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.
Primary key cannot have null values, while unique key can have one null value.
A table can have only one primary key, but multiple unique keys.
Primary key is used as a foreign key in other tables, while unique key is not.
Example: Employee ID can be a primary key, while email address can be a unique key.
I have a strong background in software development, excellent problem-solving skills, and a passion for learning new technologies.
Extensive experience in programming languages such as Java, Python, and C++
Proven track record of delivering high-quality software solutions on time and within budget
Strong analytical and problem-solving skills, with the ability to quickly adapt to new technologies and frameworks
Excellent co...
based on 1 interview
Interview experience
Business Incharge
20
salaries
| ₹0 L/yr - ₹0 L/yr |
Business Manager
12
salaries
| ₹0 L/yr - ₹0 L/yr |
Assistant Manager
7
salaries
| ₹0 L/yr - ₹0 L/yr |
Business Trainee
5
salaries
| ₹0 L/yr - ₹0 L/yr |
Cluster Manager
5
salaries
| ₹0 L/yr - ₹0 L/yr |
HDFC Asset Management Company
ICICI Prudential Mutual Fund
SBI Funds Management
Nippon Life India Asset Management