Posts

Types of Cloud Services

Image
                            Types of Cloud Services:                                                            IaaS, PaaS, SaaS Most cloud computing services fall into three broad categories: Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS). These are sometimes called the cloud computing stack because they build on top of one another. Knowing what they are and how they are different makes it easier to accomplish your business goals. Infrastructure--As--A--Service (IaaS) The most basic category of cloud computing services. With IaaS, we rent IT Infrastructure -- servers and virtual machines (VMs), Storage, Network, Operating system -- from a cloud provider on a pay-as-you-go basis. To learn more see  ...

Cloud Computing?

Image
                What is Cloud Computing?       Learn the basic of cloud computing terminology and its uses. Simply, cloud computing is the delivery of computing services - Softwares, servers, storage, databases, networking, analytics and more -- over the internet ("The cloud"). Companies offering these computing services are called providers and typically charge for cloud computing services based on usage, similar to how you are billed for water or electricity at home. Still foggy on how cloud computing works and what it is for? This blog is designed to demonstrate the basic cloud computing jargon and concepts and quickly bring you up to speed. Use of cloud computing you are probably using cloud computing right now, even if don't realize it. If you use online service to send email, edit documents, watch movies or TV, listen to music, play games or store picture and other files, it is likely that cloud computing i...

How to prepare for Job INTERVIEW?

Image
Career advise and tips to become successful over Interview best job Interview tips The Best Career Advice That Almost No One Takes You are getting the interviews, but not getting the job. Back at square one every time, you do the usual: polishing your resume and finding new ways to say the same old thing. But if you are like most people, you won't do the one thing that could really make a difference in your next job interview. The secret weapon is in your pocket or maybe in your hand: your smartphone. People overestimate their strengths and underestimate their weaknesses all the time. They tell themselves they can "wing it" and congratulate themselves on how well they think on their feet. Except, they can't. Only by video recording yourself (or having someone else do it) as you answer interview prep question can you see and hear how you come across. Here are five reasons why you should take the best career advice that almost no one takes. ...
Image
Robotics? Five factors supporting the rapid growth of robotics through 2022 The robotics industry growth has been tremendously high in the recent years. But the next few years are going to buzz with stupendous advancements in the robotic technology. With technological advancements, the robotics industry growth has gone up tremendously. Earlier, the interaction between a machine and a human was boring and limited. But, recent trends have it that a world full of robots can be a lot of fun. Today, robots can verbally interact, lend a helping hand, and also save lives, which probably makes robots more human-like with every passing day. Realizing the potential of robotics, many organizations have taken significant steps to bring robotics into application in diverse and unique fields. For instance, MIT has introduced the world to a soft robotic fish called SoFi to help save the ocean, whereas NASA is all set to send a  swarm of robots to Mars , similar to a swarm of bee...

A Brief Understanding of Pointers you must read

Image
A Brief Understanding of Pointers in C Programming Posted by   Shivendra kumar The  computer’s memory is a sequential collection of storage cells. Each cell, commonly known as a byte, has a number called   address  associated with it. Typically, the addresses are numbered consecutively, starting from zero. The last address depends on the memory size. A computer system having 64k memory will have its last address as 65,535.   Whenever we declare a variable in our programs, the system allocates somewhere in the memory, an appropriate location to hold the value of the variable. This location will have its own address number. Consider the following example: The above statement  int var  creates a location in the memory to hold integer value. That location will have an address for example assume it is 5000. The statement  var = 200  stores the value 200 at the location whose address is 5000. So, in our example,  var  i...