Skip to main content

Internet of Things (IOT)

Internet of Things (IoT) 

Today all the electronic devices are controlled by using programmed equipment. The internet allow to access all the data form several location. Thus if we want to access all the device on world wide location then we connect the devices to the internet. 

Internet of Things is a concept of computer that allow to access the physical objects that connected to the  internet and able to access themselves to other devices. 

In this technology, sensor technology is use to sense the device and perform the specific operation. IOT help to make a intelligent machine. 

                               The internet of things is a difficult concept to define precisely. In fact, there are many different groups that have defined the term, although its initial use has been attributed to Kevin Ashton, an expert on digital innovation. 

Real World Applications of IoT

1. Smart Home

2. Car connect

3. Smart cities 

4. Help in Agriculture 

5. Smart Retail System

6. IoT in HealthCare


and Many more......

IoT like  If you go your home after complete your job hours and start your car. When you start your car a message send to your internet connected AC and your AC automatically start to cool your room. ......

Comments

Popular posts from this blog

Multiple Inheritance

Multiple Inheritance In multiple inheritance a class can access the property of more than one class. This inheritance is use for multiple accessing of properties. In multiple inheritance ambiguty is  occured when same name function is declare in both class and the object is confuse with function is called.  syntax − class derived-class: access baseA, access baseB.... Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following  example − #include <iostream.h> #include <conio.h>  // Base Class class Shape  {    public:       void getwidth(int w) {          width = w;       }       void getheight(int h) {          height = h;       }           prot...

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...