Posts

Types of Big Data Part-1

Image
 Types of Big Data Big data can be classified into different types based on various factors. some of  the most common types of big data include: Structured data: structured data refers to data organized in a specific format, making it easy to analyze and process using traditional database tools. Structured data typically consists of tables, rows and columns and can be easily searched, queried and manipulated using SQL (Structured Query Language) or other database management systems. Examples of structured data include financial data, inventory data, customer data, and transaction data. Structured data is often used in business intelligence and analytics applications, where it can be analyzed to uncover patterns, trends and insights that can inform business decisions. Structured data has several advantages over unstructured and semi-structured data. This includes: Easy to analyse: Structured data can be easily analyzed using traditional database tools, which makes it easier to ...

Introduction to Big Data

Image
 Introduction to Big Data What is Big Data? Big Data is a term used to describe extremely large and complex datasets that are beyond the ability of traditional data processing tools to manage, process and analyze effectively. Big data is used to describe datasets that are too big, too complex or too rapidly changing to be processed using traditional data processing techniques. These datasets typically have multiple sources and may include structured, semi-structured and unstructured data. Example of big data sources includes social media posts, financial transactions, sensor data, scientific research data, and healthcare records.  Types in Big data Big data can be classified into three types based on its structure and characteristics: Structured Data: Structured data is highly organized and can be easily processed using traditional data processing tools. This type of data is usually stored in relational databases, spreadsheets and other structured data sources.   structur...

CLOUD COMPUTING

 ABOUT CLOUD COMPUTING Definition:  Cloud computing refers to the practice of using remote servers, accessible over the internet, to store, manage and process data. The term "Cloud" is a metaphor for the internet, and cloud computing allows users to access data and applications from anywhere in the world, without the need for physical hardware or infrastructure. There are four main types of cloud computing:  private clouds, public clouds, hybrid clouds, and multi-clouds.  There are also three main types of cloud computing services:  Infrastructure-as-a-Service (IaaS), Platforms-as-a-Service (PaaS), and Software-as-a-Service (SaaS). Infrastructure as a Service(IaaS): This involves renting the computing resources such as servers, storage and networking from a cloud provider. the user has complete control over the operating system and applications that run on the rented infrastructure. Platform as a Service(PaaS): In this model, the cloud provider offers ...

Advantages and Disadvantages of Linked list

 Advantages of linked lists we know that size of array is specified at the time of writing the program.this means that the memory space is allocated at compile time.which means we can't increase or decrease it during the runtime according to our needs.if the amout of data is less than the size of the array then the space is wasted ,if the data is more then the size of the array then overflow occurs even if there is enough space available in memory.where as in linked list we dynamically allocat memory.the size of the linked list is not fixed and it can be increased or decreased during runtime.  Insertion and deletion inside array is not efficient since it requires shifting of elements. In linked list insertion and deletion requires only change in pointers.there is no physical movement of data only the links are altered. Flexible memory allocation:linked lists allow for flexible memory alloction,making it easier to manage memory usage.you can allocate memory dynamicallyas needed...

Introduction to Data structure using C

 Introduction to Data structures  What is data structure??? A data structure is a specialized format for organizing and storing data.General data structure types include the array,the file,the record, the table,the tree. Different types of data structure  There are different types of data structures like 1. Primitive types 2.composite types 3.Abstract data types 4.array 5.lists 6.Binary trees 7.B-trees 8.Heaps