Filter interviews by
Yes
Use the 'sealed' keyword to prevent method overriding in C#
Mark the method with 'sealed' modifier to disallow further overriding
The class itself can still be inherited
The main components of .NET Framework are Common Language Runtime (CLR), Framework Class Library (FCL), and ASP.NET.
Common Language Runtime (CLR) provides the runtime environment for executing .NET applications.
Framework Class Library (FCL) is a collection of reusable classes, interfaces, and value types that simplify development.
ASP.NET is a web application framework for building dynamic websites and web services...
System.String is immutable, while System.StringBuilder is mutable.
System.String is a reference type that represents a sequence of characters and is immutable.
System.StringBuilder is a mutable class that provides methods to manipulate strings efficiently.
System.String is suitable for scenarios where frequent string manipulation is not required.
System.StringBuilder is more efficient when there is a need for frequent...
The latest .Net framework is .Net 5.0 with new features like improved performance, support for C# 9.0, and enhanced support for cloud-native applications.
.Net 5.0 is the latest version of the .Net framework.
It provides improved performance compared to previous versions.
It includes support for C# 9.0, which introduces new language features.
It offers enhanced support for building cloud-native applications.
It allows ...
OOPs (Object-Oriented Programming) is a programming paradigm that focuses on objects and their interactions.
Encapsulation: Bundling data and methods together in a class.
Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.
Polymorphism: Objects of different classes can be treated as objects of a common superclass.
Abstraction: Hiding complex implementation details and provi...
Yes, a class can inherit the constructor of its base class.
Inheritance allows a derived class to inherit the members of its base class, including constructors.
When a derived class is created, the constructor of its base class is automatically called.
The derived class can also define its own constructor, which can call the base class constructor using the 'super' keyword.
This allows the derived class to initialize ...
I appeared for an interview before May 2016.
The main components of .NET Framework are Common Language Runtime (CLR), Framework Class Library (FCL), and ASP.NET.
Common Language Runtime (CLR) provides the runtime environment for executing .NET applications.
Framework Class Library (FCL) is a collection of reusable classes, interfaces, and value types that simplify development.
ASP.NET is a web application framework for building dynamic websites and web services.
Othe...
The latest .Net framework is .Net 5.0 with new features like improved performance, support for C# 9.0, and enhanced support for cloud-native applications.
.Net 5.0 is the latest version of the .Net framework.
It provides improved performance compared to previous versions.
It includes support for C# 9.0, which introduces new language features.
It offers enhanced support for building cloud-native applications.
It allows devel...
System.String is immutable, while System.StringBuilder is mutable.
System.String is a reference type that represents a sequence of characters and is immutable.
System.StringBuilder is a mutable class that provides methods to manipulate strings efficiently.
System.String is suitable for scenarios where frequent string manipulation is not required.
System.StringBuilder is more efficient when there is a need for frequent modi...
OOPs (Object-Oriented Programming) is a programming paradigm that focuses on objects and their interactions.
Encapsulation: Bundling data and methods together in a class.
Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.
Polymorphism: Objects of different classes can be treated as objects of a common superclass.
Abstraction: Hiding complex implementation details and providing ...
Yes
Use the 'sealed' keyword to prevent method overriding in C#
Mark the method with 'sealed' modifier to disallow further overriding
The class itself can still be inherited
Yes, a class can inherit the constructor of its base class.
Inheritance allows a derived class to inherit the members of its base class, including constructors.
When a derived class is created, the constructor of its base class is automatically called.
The derived class can also define its own constructor, which can call the base class constructor using the 'super' keyword.
This allows the derived class to initialize its o...
I am a software engineer with experience in developing and maintaining software applications.
I have a Bachelor's degree in Computer Science.
I have worked on various projects using different programming languages such as Java, C++, and Python.
I am skilled in software development methodologies like Agile and have experience with version control systems like Git.
I have strong problem-solving and analytical skills, which h...
I have a strong technical background and a proven track record of delivering high-quality software solutions.
Extensive experience in software development and programming languages such as Java, C++, and Python.
Strong problem-solving and analytical skills, with the ability to quickly understand complex systems and identify areas for improvement.
Excellent communication and collaboration skills, enabling effective teamwor...
My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.
Strengths: problem-solving, attention to detail, teamwork
Weaknesses: time management, public speaking
The toughest challenge I faced was developing a complex algorithm for optimizing database queries.
Developing a complex algorithm for optimizing database queries
Working with large datasets and finding efficient ways to retrieve and manipulate data
Collaborating with a team to ensure the algorithm meets the requirements and performs well
Testing and debugging the algorithm to ensure its accuracy and efficiency
Top trending discussions
To debug a particular program without affecting others, use breakpoints and step through the code.
Set a breakpoint in the program you want to debug
Step through the code using a debugger to identify the issue
Use logging statements to track the flow of the program
Check the call stack to see which functions are being called
Use conditional breakpoints to stop the program at specific points
I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.
If and Switch Case statements are used for conditional branching in programming.
If statements are used for simple conditional branching.
Switch Case statements are used for multiple conditional branching.
If statements are more flexible than Switch Case statements.
Switch Case statements are more efficient than If statements for large number of conditions.
If statements can be nested, but Switch Case statements cannot.
Exam...
Yes, algorithms and pseudocodes are still important in IT Services.
Algorithms are used in various fields of IT such as machine learning, data analysis, and cryptography.
Pseudocodes are used to plan and design algorithms before coding them.
Understanding algorithms and pseudocodes is essential for software engineers to write efficient and optimized code.
Examples of algorithms include sorting algorithms, search algorithms...
Yes, I am comfortable using both CLIs and IDEs for my daily tasks.
I have experience using various CLIs such as Git Bash, Windows Command Prompt, and Terminal on macOS.
I am proficient in using IDEs such as Visual Studio Code, Eclipse, and IntelliJ IDEA.
I understand the benefits and drawbacks of both CLIs and IDEs and can choose the appropriate tool for the task at hand.
I applied via Campus Placement and was interviewed in Nov 2020. There were 6 interview rounds.
OOPs concepts are the fundamental principles of object-oriented programming.
Encapsulation - binding data and functions that manipulate the data
Inheritance - creating new classes from existing ones
Polymorphism - ability of objects to take on many forms
Abstraction - hiding implementation details and showing only functionality
Storage classes in C define the scope and lifetime of variables.
There are four storage classes in C: auto, register, static, and extern.
Auto variables are local to a block and have automatic storage duration.
Register variables are stored in CPU registers for faster access.
Static variables have a lifetime throughout the program and are initialized only once.
Extern variables are declared outside any function and can be a...
Linked list is a linear data structure. DFS and BFS are graph traversal algorithms.
Linked list is a collection of nodes where each node points to the next node.
DFS (Depth First Search) is a traversal algorithm that explores as far as possible along each branch before backtracking.
BFS (Breadth First Search) is a traversal algorithm that explores all the vertices of a graph in breadth-first order.
Example of linked list: ...
Optimize O(n2) program to O(log n)
Use binary search instead of linear search
Divide and conquer approach can be used
Implement efficient data structures like heap, AVL tree, etc.
Reduce unnecessary iterations and comparisons
Use memoization to avoid redundant calculations
I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.
I applied via Recruitment Consultant and was interviewed in May 2021. There were 6 interview rounds.
I applied via Company Website and was interviewed before Dec 2021. There were 3 interview rounds.
There are 2section of exam i.e English and Data structure
Some of the top questions asked at the Trivium Software Engineer interview -
based on 1 review
Rating in categories
Software Engineer
5
salaries
| ₹7 L/yr - ₹8.1 L/yr |
SME
5
salaries
| ₹3 L/yr - ₹5 L/yr |
TCS
Accenture
Wipro
Cognizant