Posts

What is Unified Model Language (UML) ?

Image
The UML is the standard visual modeling language used to describe, specify, design, and document the structure and behavior of software systems, particularly Object Oriented UML can formally specify a system so that code can be generated UML can informally specify a system to enhance team communication UML can casually represent a system to enhance your understanding during implementation and maintenance UML is not specific to one particular programming language, UML can be generated keeping C++ in mind and the same UML can be used to generate JAVA code. UML is a basic representation of your code logic. UML consists of different diagrams: Top Leve Diagram Structure Diagram Class Diagram Component Diagram Object Diagram Profile Diagram Composite Structure Diagram Deployment Diagram Package Diagram Behaviour Diagram Activity Diagram Use Case Diagram State Machine Diagram Interaction Diagram Sequence Diagram Communication Diagram Interaction Overvie...

Intro to C++: Hello World

Image
Code: #include <iostream> using namespace std; int main(){   cout<<"Hello World"<<endl;   return 0; }

Why C programming is so yummy!

There is no kidding here. We all love C programming, maybe because that the first programming language we learned or maybe because of its simplicity. Developed in the year 1969, C is still one of the popular languages that are taught to most students new to the realm of programming. Where C lacks in security and features, it completes itself by making itself simple to learn attitude. C is considered as a root level language, that means it just one step above from assembly language and runs natively on your hardware. Being one of the first languages to allow to code in the English language it was a bliss to programmers.