
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 119 Articles for Software Development

2K+ Views
Introduction It is possible to fetch and pull remote repositories via Git Fetch and Git Pull, respectively. Several third-party websites host Git repos, like GitHub and BitBucket, for example. Developers use remote repositories in order to collaborate with one another. When changes are made on the remote location, those changes are automatically cloned locally. Whenever local commits are made, remote commits are also updated. Remote repositories that have been pushed are collected by Git Fetch and Git Pull. It is important to point out that despite this, their methods of working are different. There are a number of different purposes ... Read More

4K+ Views
Introduction Git is a development tool that helps teams manage their source code and handle projects efficiently. It's not possible to include blank/empty directories when uploading via GitHub or another hosting service. There's something wrong with that. Git provides a ".gitkeep" file that fixes this problem. It's good for pushing blank/empty folders with Git. We will cover Gitkeep basics in this article as well as how to commit and push blank/empty Git directories What is .Gitkeep? It is kept by git to ensure blank/empty directories are never added remotely when pushing changes. Git will only find .gitkeep entries in bare ... Read More

55K+ Views
Introduction When editing code, reviewing changes, and submitting to GitHub, developers often switch between multiple windows. In order for different modules and versions to be operated by different teams, version control is indispensable for every software project. This blog will explain how to publish your Visual Studio Code code to Github. Let's take a look at GitHub and Visual Studio in brief before you start working with them. What is GitHub? A big part of the popularity of GitHub is because of the large developer community that it has. It is a platform that fosters collaboration between developers and facilitates ... Read More

442 Views
Introduction With Git, developers can collaborate on projects and track their progress without interfering with each other. This facilitates collaboration within a project and helps prevent confusion or code clashes among team members. An evolving project is tracked and saved as snapshots, effectively keeping a history of its development. It is possible for users to communicate through the system once they install the software on their machines. Developers could collaborate over a centralized source (e.g., GitHub) where they can push and pull changes. In this tutorial, I'll show you how to install Git on a Mac. What is Git? It ... Read More

7K+ 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

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

8K+ 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

12K+ 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

45K+ 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