Posts

WHAT IS ROBOT AND HOW WORKS ROBOT??

Image
Robot A robot is a machine designed to execute one or more tasks automatically with speed and precision. There are as many different types of robots as there are tasks for them to perform.   A robot is a type of automated machine that can execute specific tasks with little or no human intervention and with speed and precision. The field of robotics, which deals with robot design, engineering and operation, has advanced remarkably in the last 50 years. IDC identifies robotics as one of six innovation accelerators driving digital transformation. The others include  3D printing , cognitive computing, next-generation security and  virtual reality  or  augmented reality . What can robots do? Essentially, there are as many different types of robots as there are tasks for them to perform. Robots can perform some tasks better than humans, but others are best left to people and not machines. The following are things robots do better than humans: Autom...

Java Tutorial | Learn Java Programming

Image
  Java Tutorial Our core Java programming tutorial is designed for students and working professionals. Java is an  object-oriented , class-based, concurrent, secured and general-purpose computer-programming language. It is a widely used robust technology. What is Java? Java is a  programming language  and a  platform . Java is a high level, robust, object-oriented and secure programming language. Java was developed by  Sun Microsystems  (which is now the subsidiary of Oracle) in the year 1995.  James Gosling  is known as the father of Java. Before Java, its name was  Oak . Since Oak was already a registered company, so James Gosling and his team changed the name from Oak to Java. Platform : Any hardware or software environment in which a program runs, is known as a platform. Since Java has a runtime environment (JRE) and API, it is called a platform. Java Example Let's have a quick look at Java programming example. A detailed description...

What is coding? How it's work?

Image
  What is Coding? You’ve heard tons about coding and know that it has to do with computers and how they process the information we see. However, you may not have much more than this vague understanding of the concept. Don’t feel bad. Many people don’t really understand it, though we all depend on the fundamentals of code each and every day. It’s such an important aspect of the technological landscape that, according to  Fortune , former President Obama unveiled an initiative called “Computer Science for All” that has been backed by and invested in by big names, including the Turner Broadcasting Network. This movement is one that mirrors that of our nation’s schools that have been emphasizing the value of technology, computer science, engineering, and other STEM-related topics. Read on to discover what computer code is and why it is of such importance in today’s society. What Coding Is Coding is basically the computer language used to develop apps, websites, and software. Witho...

C Program to Calculate Sum & Average of an Array

                          This is a C Program to calculate the sum & average of an array. Problem Description We have to write a program in C such that we are reading an array of N elements and then we are going to calculate the sum and average of those N elements and display it to the standard output or screen. Expected Input and Output If we are entering 5 elements (N = 5), with array element values as 10, 20, 30, 40 and 50 then, 1.  Sum of Elements of the array will be : 10 + 20 + 30 + 40 + 50 = 150 2.  Average of Elements of the array will be : 150 / 5 = 30  Problem Solution Fundamentally, an array is a data structure containing a collection of values or variables. The simplest type of array is a linear array or one-dimensional array. An array can be defined in C with the following syntax: int Arr[5] = {10, 20, 30, 40, 50}; /* here 10,20,30,40,50 are the elements at indices 0,1,2,3,4 respectively */ ...

Program to convert Fahrenheit into Celsius in C programming language

Image
   Explanation Fahrenheit and Celsius are the measures of temperature having Unit in degrees as  o F o C respectively. In this tutorial, we have to convert Fahrenheit to Celsius by using the scientific formula in programmes of different languages. Formula T( o C) = ((T( o F) - 32 ) × 5)/9 Algorithm Define temperature in Fahrenheit unit. Apply in the formula. Print the temperature in Celsius.    Solution program # include <stdio.h> int main() { float fahrenheit, celsius; printf ("Enter temperature in fahrenheit :"); scanf ("%f", &fahrenheit); celsius = ((fahrenheit-32)*5)/9; printf ("temperature in celsius: %f",celsius); return(0); } This is it, the output of the program would be, Enter Fahrenheit: 100 Celsius: 37.777779   Hope this post helped someone, Good Luck!

What is WordPress ??

Image
    What is WordPress? At its core,   WordPress is the simplest, most popular way to create your own website or blog.  In fact, WordPress powers   over 37.6%   of all the websites on the Internet. Yes – more than one in four websites that you visit are likely powered by WordPress.                                                                                                                    O n a slightly more technical level, WordPress is an open-source content management system licensed under GPLv2, which means that anyone can use or modify the WordPress software for free. A content management system is basically a tool that makes it easy to manage important aspects o...