Posts

Showing posts from September, 2021

Top Important OOPs Interview Questions and Answers

  Basic OOPs Interview Questions 1. What is the difference between OOP and SOP? Object-Oriented Programming Structural Programming Object-Oriented Programming is a type of programming which is based on objects rather than just functions and procedures Provides logical structure to a program where programs are divided functions Bottom-up approach Top-down approach Provides data hiding Does not provide data hiding Can solve problems of any complexity Can solve moderate problems Code can be reused thereby reducing redundancy Does not support code reusability 2. What is Object Oriented Programming? Object-Oriented Programming(OOPs) is a type of programming that is based on objects rather than just functions and procedures. Individual objects are grouped into classes. OOPs implements real-world entities like inheritance, polymorphism, hiding, etc into programming. It also allows binding data and code together.Read More Dotnet Online training 3. Why use OOPs? OOPs allows clarity in progr...

Top Companies using DevOps in 2021 – All you need to know!

Image
  Companies using DevOps are undergoing a serious culture shift. But before understanding the reason behind it, let’s take a look at  what is DevOps ?  DevOps is a methodology that brings the “ Dev ” and “ Ops ” team together. This practice aims in delivering products at a faster pace by using different automation tools.   DevOps  helps businesses that are keen on improving the flexibility and agility of their team.  In this article, we will look at some fast-growing MNCs and startups that have implemented DevOps. The following list of Companies using DevOps have seen triumph: Amazon HP Etsy Netflix  Adobe 1 . AMAZON Problem You must be aware that Amazon is one of the biggest e-commerce companies in the world. But back in 2001, their website followed a  traditional monolithic architecture . Here, all processes were coupled together and run as a single service Over time as the source files grew, it became  hard to  scale , maintain,...

Top .NET Interview Questions To Look Out For In 2021

Image
  Advanced .NET Interview Questions Q-1:  What are EXE and DLL? EXE and DLL are assembly executable modules. EXE:  It is an executable file that runs the application for which it is designed. When we build an application, an exe file is generated. Therefore the assemblies are loaded directly when we run an exe. But an exe file cannot be shared with other applications.Read More Dotnet Online Training DLL:  It stands for dynamic link library that consists of code that needs to be hidden. The code is encapsulated in this library, an application can have many DLLs and can also be shared with other applications. Q-2: What is the difference between function and stored procedure? Function Stored Procedure Must return a single value Always used to perform a specific task It can only have the input parameter It can have both input and output parameters Exception handling is not possible using a try-catch block Exception handling can be done using a try-catch block A stored pr...