Found 115 Articles for Software Development

How to Install Git in Vs Code?

Muthu Annamalai Venkatachalam
Updated on 04-Jan-2023 10:10:36

6K+ Views

Introduction There's no doubt that Git is one of the most popular version control systems out there. Git always keeps track of your work, and if needed, you can revert to an old version if necessary. Using Git, several people can collaborate on a document simultaneously by merging their changes. Even if you write code you will only see yourself, Git can be valuable if you work alone or in a team. Computers run Git locally. With this, it will be possible for you to track and store the files you store on your computer. Revision history and files can ... Read More

How to add an image to your README.md file in Git repository?

Muthu Annamalai Venkatachalam
Updated on 04-Jan-2023 09:48:54

2K+ Views

Introduction Git, an open-source distributed version control system, is capable of handling projects of any size, from tiny to very big. Among the most commonly used features of GitHub is version control. It is useful when you are working with more than one developer in a team. This article shows how to add images to a GitHub README.md file What is GitHub? The GitHub software development platform allows users to manage, track, and collaborate on software projects online. Using this service, developers can upload their own code files and collaborate on open-source projects with their colleagues. In addition to its ... Read More

Difference Between COCOMO 1 and COCOMO 2

Kiran Kumar Panigrahi
Updated on 20-Feb-2023 16:50:19

5K+ Views

COCOMO 1 and COCOMO 2 are two cost estimation models, developed by Barry Boehm. These two cost estimation models are used for computing the cost of software development. The most basic difference between these two models is that the COCOMO 1 model helps to provide the estimates required for the efforts and schedule, whereas the COCOMO 2 model provides the estimates that represent a standard deviation near the most likely estimate. Read this article to learn more about the COCOMO 1 and COCOMO 2 models and how they are different from each other. What is COCOMO 1? COCOMO 1 was the first model developed ... Read More

Difference between Product and Process in Software development

Kiran Kumar Panigrahi
Updated on 11-Jan-2023 15:47:45

8K+ Views

Product and Process are the two crucial terms in software development. The elementary difference between the two is that a "process" is a sequence of steps to be followed to create an appropriate product, while a "product" is the final outcome of the software development cycle. Read this tutorial to learn more about Product and Process in the context of software development and how they are different from each other. What is a Product? The product is the final outcome of the software development process. It is the software application or system that is being built or maintained. A product ... Read More

Difference between composition and aggregation

Kiran Kumar Panigrahi
Updated on 20-Feb-2023 16:52:02

35K+ Views

Both Composition and Aggregation are types of association which are used to represent the relationship between two classes. But they are absolutely different from each other. The basic difference between the two is that composition is a strong association, while aggregation is a weak association. Read this article to learn more about composition and aggregation and how they are different from each other. What is Composition? Composition is a method of wrapping the simple objects or data types into a single unit. It is a type of association used to represent the relationship between two classes. Composition is considered as ... Read More

Advertisements