Filter interviews by
Clear (1)
I applied via Company Website and was interviewed in Sep 2023. There were 3 interview rounds.
Basic web related questions and protocols
A webpage is a document or resource on the internet that is typically written in HTML and can contain text, images, videos, links, and other multimedia elements.
A webpage is accessed through a web browser like Chrome, Firefox, or Safari
It is usually identified by a unique URL (Uniform Resource Locator)
Webpages can be static (unchanging) or dynamic (changing based on user input or other factors)
Examples of webpages incl...
I applied via Company Website and was interviewed in Sep 2023. There were 3 interview rounds.
Basic questions related to web and protocols
Top trending discussions
I was interviewed before May 2016.
Wipro is a global leader in IT services with a strong reputation for innovation and client satisfaction.
Wipro has a strong reputation for innovation and cutting-edge technology solutions.
The company has a global presence and works with a diverse range of clients across various industries.
Wipro offers excellent opportunities for career growth and professional development.
The company values diversity and inclusion, creat
I am a recent graduate with a degree in finance and a strong analytical mindset.
Recent graduate with a degree in finance
Strong analytical mindset
Experience with data analysis tools like Excel and SQL
Strength: Strong analytical skills. Weakness: Difficulty with public speaking.
Strength: Able to analyze data effectively and draw meaningful insights.
Weakness: Struggle with presenting findings in front of large groups.
Strength: Excel at problem-solving and critical thinking.
Weakness: Feel nervous and anxious when speaking in public.
Strength: Detail-oriented and able to spot patterns in data.
Weakness: Lack confidence i
Creating a table in HTML
Use the <table> tag to create a table
Use <tr> for table rows and <td> for table data cells
Add <th> for table headers if needed
My favorite book is 'To Kill a Mockingbird' by Harper Lee.
The book explores themes of racism, injustice, and morality in a small Southern town.
The character of Atticus Finch is often cited as a moral compass and a symbol of integrity.
The novel has won numerous awards and continues to be a classic in American literature.
Software development life cycle (SDLC) is a process used to design, develop, and maintain software.
SDLC is a systematic approach to software development.
It consists of several phases including requirements gathering, design, coding, testing, deployment, and maintenance.
Each phase has specific goals and activities that contribute to the overall development process.
SDLC models include Waterfall, Agile, and DevOps.
Example...
I applied via Campus Placement and was interviewed in Jul 2020. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.
International banking refers to financial services provided by banks across different countries to facilitate global trade and investment.
International banking involves services such as foreign exchange, trade finance, cross-border payments, and international investment.
Banks establish branches or subsidiaries in different countries to offer services to clients operating internationally.
International banking helps busi...
posted on 9 Apr 2023
I applied via Walk-in and was interviewed in Mar 2023. There were 3 interview rounds.
I am a motivated and detail-oriented Junior Analyst with a strong analytical background and a passion for data-driven insights.
Bachelor's degree in Business Analytics
Proficient in data analysis tools such as Excel, SQL, and Tableau
Experience in conducting market research and competitor analysis
Strong problem-solving and critical thinking skills
Excellent communication and presentation abilities
Internship at XYZ Company ...
I am a highly motivated and detail-oriented individual with strong analytical skills and a passion for data analysis.
I have a strong academic background in mathematics and statistics, which has equipped me with the necessary quantitative skills for the role.
I have experience in conducting thorough research and data analysis, as demonstrated during my internship at XYZ Company.
I am proficient in using various data analy...
Capital market is a financial market where long-term securities like stocks, bonds, and other financial instruments are traded.
Capital market is a platform for companies to raise long-term funds from investors.
It includes both primary and secondary markets.
Investors can buy and sell securities like stocks, bonds, and debentures in the capital market.
The capital market is regulated by the Securities and Exchange Board o...
Money market refers to a segment of the financial market where short-term borrowing and lending of funds take place.
Money market deals with short-term debt instruments such as treasury bills, commercial papers, certificates of deposit, etc.
It is used by governments, corporations, and financial institutions to manage their short-term cash needs.
Money market instruments are considered to be low-risk and low-return invest...
I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.
Overloading is the ability to define multiple functions or operators with the same name but different parameters.
Function overloading allows multiple functions with the same name but different parameters to be defined in a class.
Operator overloading allows operators such as +, -, *, / to be redefined for user-defined data types.
Overloading is resolved at compile-time based on the number, type, and order of arguments pa...
Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were the same type.
Polymorphism is achieved through method overloading and method overriding.
Compile-time polymorphism is achieved through method overloading.
Runtime polymorphism is achieved through method overriding.
Examples of polymorphism include method overloading and method overriding.
Pol...
Machine learning is a subset of artificial intelligence that enables machines to learn from data and improve their performance.
It involves training algorithms on large datasets to make predictions or decisions.
It can be supervised, unsupervised, or semi-supervised.
Examples include image recognition, natural language processing, and recommendation systems.
It requires a lot of data and computing power to train models eff...
Artificial Intelligence is the simulation of human intelligence in machines.
AI involves creating intelligent machines that can perform tasks without human intervention.
It includes machine learning, natural language processing, and robotics.
Examples include Siri, Alexa, and self-driving cars.
AI has applications in various fields such as healthcare, finance, and transportation.
TCP/IP model is a networking protocol used for communication between devices on the internet.
TCP/IP model has four layers: application, transport, internet, and network access.
Each layer has its own set of protocols and functions.
TCP/IP model is used for communication between devices on the internet.
Examples of protocols used in TCP/IP model include HTTP, FTP, TCP, and IP.
Software Development Life Cycle (SDLC) is a process followed by software development teams to design, develop and test high-quality software.
SDLC consists of several phases including planning, analysis, design, development, testing, deployment, and maintenance.
Each phase has its own set of activities and deliverables that must be completed before moving on to the next phase.
SDLC models include Waterfall, Agile, and Dev...
A class is a blueprint for creating objects in C++. An object is an instance of a class.
A class is a user-defined data type that encapsulates data members and member functions.
An object is an instance of a class that has its own set of data members and can access the member functions of the class.
Classes are used to organize and structure code, making it easier to maintain and reuse.
Example: class Car { private: int sp...
Interface in Java is a blueprint of a class that has only abstract methods and constants.
Interfaces are used to achieve abstraction and multiple inheritance in Java.
A class can implement multiple interfaces but can only extend one class.
All methods in an interface are public and abstract by default.
Interfaces can also have default and static methods in Java 8 and above.
Example: interface Shape { void draw(); }
A linked list is a linear data structure where each element is a separate object with a pointer to the next element.
Linked list is a dynamic data structure
It consists of nodes that contain data and a pointer to the next node
Insertion and deletion operations are efficient in linked list
Example: Singly linked list, Doubly linked list
File structure refers to the way data is stored on disk, while data structure refers to the way data is organized in memory.
File structure is concerned with how data is stored on disk, while data structure is concerned with how data is organized in memory.
File structure is typically hierarchical, with directories containing files, while data structures can take many forms such as arrays, linked lists, and trees.
Example...
A tree is a hierarchical data structure with a single root node and child nodes, while a graph is a non-linear data structure with nodes and edges.
Trees have a clear parent-child relationship, while graphs have arbitrary connections between nodes.
Trees are used in file systems, HTML DOM, and decision trees, while graphs are used in social networks, maps, and recommendation systems.
Both structures can be represented usi...
A data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.
Data structures are used to manage and manipulate data.
They can be implemented using arrays, linked lists, trees, graphs, and other methods.
Examples include stacks, queues, hash tables, and binary search trees.
Choosing the right data structure is important for optimizing performance and memory usage.
Co...
A Spanning Tree is a subset of a graph that connects all vertices with the minimum possible number of edges.
It is a tree that spans all the vertices of a connected graph.
It has no cycles and is a subgraph of the original graph.
It has n-1 edges for a graph with n vertices.
It is used in network design and optimization problems.
A Brute Force Algorithm is a method of solving problems by trying every possible solution.
It involves trying every possible combination of inputs to find the correct output.
It is a simple but inefficient algorithm.
It is commonly used in cryptography to crack passwords.
Examples include the exhaustive search algorithm and the traveling salesman problem.
Program to implement anagram using array of strings
Create a function to check if two strings are anagrams
Loop through the array of strings and compare each pair of strings
If two strings are anagrams, add them to a new array
Return the new array of anagrams
I applied via Naukri.com and was interviewed before Jul 2022. There were 4 interview rounds.
Reasoning and computer Science questions
I applied via Company Website and was interviewed before Jun 2020. There were 4 interview rounds.
based on 2 interviews
Interview experience
based on 3 reviews
Rating in categories
Technical Support Engineer
80
salaries
| ₹0 L/yr - ₹0 L/yr |
Junior Support Engineer
66
salaries
| ₹0 L/yr - ₹0 L/yr |
Junior Analyst
34
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
33
salaries
| ₹0 L/yr - ₹0 L/yr |
Team Lead
18
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Wipro
Infosys
HCLTech