Skip to main content

UML Diagram For Blogging Platform Mini Project -1

In this Article first of all we learn about what is UML?  then we will see the Uml Diagrams for Blogging Platform mini project that helps to student to develope a the Blogging Platform mini project .

It helps to student who are studing in BCS,BCA, BTech,BE,MCA for drawing UML diagram for thier acadmic project .they can get referance from this diagrams.

Lets Start,

What is UML?

UML is Stands for Unified Modeling Language . It is a part of Software Engineering . Typically ,software architects or designers aften take the lead in creating UML diagrams to communicate and document the system's design. It's a standardized way to visually represent and design software systems.

Followings are UML Diagram

1. ER Diagram for Blogging Platform :

ER Diagram for Blogging Platform Database



2. Class Diagram :

Class diagram for Blogging Platform

3. Use Case Diagram:

System Use Case Diagram :

Use case Diagram of Blogging Platform System

Use Case Diagram: User Management ,Blog Management,Commenting and interaction Module :

Use Case Diagram: User Management ,Blog Management,Commenting and interaction Module

Use Case Diagram :Social Media Sharing,Personalization and Notifications,Category Management Module :

Use Case Diagram :Social Media Sharing,Personalization and Notifications,Category Management Module

Use Case Diagram: Blog Customization ,Blog Browsing and Search Module:

.Use Case Diagram: Blog Customization ,Blog Browsing and Search Module




Comments

Popular posts from this blog

"Python programiTutorial Part 2: "

  Hey guys , Welcome back in new post Python Tutorial part-2 . Lets start the remaining part here.. First Python Program: Before starting a code we have to install python on your machine for more about installation click me We will discuss the basic syntax of python. now firstly we will see the first and simple "HELLO WORLD "program. Run this program. Python provides us two way to run the program: 1.Using Interactive interpreted command prompt. this is image of Interactive interpreted command prompt with the "HELLO WORLD" program with output. 2.Using a script file. This is the image of  script file with the code of "HELLO WORLD ' program with out put.  Script mode has some advantages and disadvantages : 1.We run multiple lines of code at a time in script mode.  2.Run and interpretation process or debugging is easy in the script mode. 3.It is best for beginners and expert also. Disadvantages:-...

Source File Structure in java

Welcome to world of Programming ! Whether you are a notice beginner coder, student understanding the fundamental structure of Java source file is crucial. In this article , we will unravel the mysteries behind java source file ,providing you with a solid foundation for writing clean ,efficient ,and maintainable code ,and clear the concept behind java source file and Tips . In this article we discuss this concept with Question and Answer based . Q1. In Java Program How many Class can we Take ?  Ans . In java program we can take any no of classes .and we can compile them but we cant run without Main method  Demo with code :  Q2. Which class name do we give for the Java programm?  Ans : Any Class name we can give for Java program( as like shown in above demo with code) but if we declare any class of them as Public we have to compulsory create a java program file with that class name ....

What is Hashtable, And what are features of Hashtable ?

Introduction : A hashtable is a data structure that allows you to store and retrieve value using a key. It is a widely used data structure in computer science for implementing associative arrays, sets and  caches. The bsic idea behind a hashtable is to use a hash function to map key to indices in an array. This allows for efficient insertion, deletion and retrieval of values. Here are the Key Features of hashtables: 1. Key-value Storage: A hash Table stores data in key-value pairs. The key is used to uniquely identify each entry in the hashtable. The value is the data associated with the key. 2.  Hash Function: Hash function takes a key as input and produces a fixed size hash code(usually an integer) as output. The hash code is used as an index to store the key-value pair in the array. An ideal hash function distrubutes keys uniformly across the array, minimizing collisions. 3. Array Storage: Hash Table use an array to store the key-value pairs. The array sixe is typically det...