Skip to main content

Contact us

Name


Email Address important


Content important



Comments

Popular posts from this blog

HOW TO PLANT ROSES????

  Rose is undoubtedly the 'Queen of Flowers'. If you have a passion for gardening and loveflowers then I am sure you have always wanted to grow roses in your garden. Some newbie gardeners including me, a fewyears ago used to think rose is one of the most difficult shrubs to grow. This is actually a misconception. Anybody can grow roses just like any otherplant. All you have to do is follow some simple tipsand tricks on how to grow roses correctly. In this episode let's list out the 10 usefulrose plant care tips one by one. Please watch it till the end as some of thesetips might surprise you with few bonus tips at the end. Before we start make sure you have subscribedto our channel along with the bell notification. 10. Bare Root Roses or Container Roses? You can purchase roses already potted in soilthats container roses or as dormant bare-root plants . If you are a beginner, container roses isthe best option, because they are easy to plant and they establish quickly. If you ...

WHY 5G?????......................

  Hiii,guy's I isha welcomes you all in my new post...The Internet of Things or iotis influencing our lifestyle from the way we react to the way we behave.From air conditioners that you can controlwith your smartphone to Smart Cars providingthe shortest route or your Smartwatch which is trackingyour daily activities. IoT is a giant network with connected devices.These devices gather and share data abouthow they are used and the environmentin which they are operated. It's all done using sensors, sensors are embedded in every physical device. It can be your mobilephone, electrical appliances Pecos barcode sensors traffic lights and almosteverything that you come across in day-to-day life. These sensorscontinuously emit data about the working stateof the devices, but the important question is how do they sharethis huge amount of data, And how do we put this data to our benefit iotprovides a common platform for all these devicesto dump their data. And a Common language for all the ...

BASIC STRUCTURE OF C++ PROGRAM

                       Structure of a program  Probably the best way to start learning a programming language is by writing a program. Therefore, here is our first program:  // my first program in C++  #include <iostram> using namespace std;  int main () {  cout << "Hello World!";  return 0; }  Hello World!  The first panel shows the source code for our first program. The second one shows the result of the program once compiled and executed. The way to edit and compile a program depends on the compiler you are using. Depending on whether it has a Development Interface or not and on its version. Consult the compilers section and the manual or help included with your compiler if you have doubts on how to compile a C++ console program. The previous program is the typical program that programmer apprentices write for the first time, and its result is the printing on screen of the...