Skip to main content

What Does True Love Mean To Me?

True love is posted in so many ways that some people get confused about what true love is. But yet every one has there own opinion about what they feel true love is. You can sit there and say oh my god I love chocolate but does that mean you love chocolate like you would love your mother or father and does this mean that when you love your mother or father it’s the same as loving your boyfriend/girlfriend or even your husband?

Love is put out there in so many ways. You can love your favorite toy, or your favorite book, or even your favorite food but when you love a person it changes completely. Some people find true love in how the person looks, sometimes true love is found in how much money that person holds in there wallet, and sometimes true love is so blind that your heart leads you towards them and not your mind.

But what does true love mean to me? True love is a state of being it’s a feeling that you feel towards a person that has been there for you every second that you needed them. True love is how a person is towards you and how they act around you. You may say you love some one truly but would you love that person if they disrespected you? Or if they never showed care for you? I don’t think so because true love comes in how that one person is towards you. When a person respects you, when a person loves u as much as you love them or maybe even more, or when that person cares for you like a mother would care for her sick baby. That’s when believe true love comes in when a person is like this towards you I know that it would be true love right away and that person would be your soul mate. So I wanted to post this to see what other people think true love is. Because truly you cant just take one persons definition because every one has a heart and a mind that thinks differently.

Comments

Popular posts from this blog

Standard and Formatted Input / Output in C++

The C++ standard libraries provide an extensive set of input/output capabilities which we will see in subsequent chapters. This chapter will discuss very basic and most common I/O operations required for C++ programming. C++ I/O occurs in streams, which are sequences of bytes. If bytes flow from a device like a keyboard, a disk drive, or a network connection etc. to main memory, this is called   input operation   and if bytes flow from main memory to a device like a display screen, a printer, a disk drive, or a network connection, etc., this is called   output operation . Standard Input and Output in C++ is done through the use of  streams . Streams are generic places to send or receive data. In C++, I/O is done through classes and objects defined in the header file  <iostream> .  iostream  stands for standard input-output stream. This header file contains definitions to objects like  cin ,  cout , etc. /O Library Header Files There are...

Data Warehousing - An Overview

Anurag Information Technology (IT) has historically influenced organizational performance and competitive standing. The increasing processing power and sophistication of analytical tools and techniques have put the strong foundation for the product called data warehouse. There are a number of reasons that any organization should consider a data warehouse, which can be the critical tool for maximizing the organization’s investment in the information it has collected and stored throughout the enterprise. IT managers need to understand the rationale and benefits of data warehouses because they may need to design and implement, or procure this kingpin of business intelligence. The data warehouses are supposed to provide storage, functionality and responsiveness to queries beyond the capabilities of today's transaction-oriented databases. Also data warehouses are set to improve the data access performance of databases. Traditional databases balance the requirement of data access w...

Normalization in DBMS: 1NF, 2NF, 3NF and BCNF in Database

Normalization   is a process of organizing the data in database to avoid data redundancy, insertion anomaly, update anomaly & deletion anomaly.  Anomalies in DBMS There are three types of anomalies that occur when the database is not normalized. These are – Insertion, update and deletion anomaly. Let’s take an example to understand this. Example : Suppose a manufacturing company stores the employee details in a table named employee that has four attributes: emp_id for storing employee’s id, emp_name for storing employee’s name, emp_address for storing employee’s address and emp_dept for storing the department details in which the employee works. At some point of time the table looks like this: emp_id emp_name emp_address emp_dept 101 Nikhil Kangra D001 101 Nikhil Kangra D002 123 Ashish Shimla D890 166 Rahul Pathankot D900 166 Rahul Pathankot D004 The above table is not normalized.  Update anomaly : In the above table we have two rows for employee Nikhil as he belongs ...