Posts

History of coding

Image
C++ history History of C++ language  is interesting to know. Here we are going to discuss brief history of C++ language. C++ programming language  was developed in 1980 by Bjarne Stroustrup at bell laboratories of AT&T (American Telephone & Telegraph), located in U.S.A. Bjarne Stroustrup  is known as the  founder of C++ language. It was develop for adding a feature of  OOP (Object Oriented Programming)  in C without significantly changing the C component. C++ programming is "relative" (called a superset) of C, it means any valid C program is also a valid C++ program. Let's see the programming languages that were developed before C++ language. Language Year Developed By Algol 1960 International Group BCPL 1967 Martin Richard B 1970 Ken Thompson Traditional C 1972 Dennis Ritchie K & R C 1978 Kernighan & Dennis Ritchie C++ 1980 Bjarne Stroustrup

11 facts of coding

Just as we said before, recent studies have shown that over 70% of coding jobs are in fields outside of technology. The first computer virus was created in 1983. The first computer game was created in 1961. The word computer “bug” was inspired by a real bug. It was founded by  Grace Hopper  in 1947. Nowadays, there are over 700 different programming languages. All experts recommend for kids to start with a visual editor and a blockly based programming language for them to learn in a smoother and easier way. The first programming language (per sé) was called Fortran, and it was created in the ’50s. Almost any powered with electricity needs to be coded. Can you imagine?! Since many programming languages share the same structure, it is easy for students to learn a new programming language once they have already mastered one before. Computers run on binary code, which means that their software is written using only 1s and 0s. Learning coding has stunning cognitive-related benefits, such as

what is coding?, why to do coding?, Type of codings.

Image
What is coding?  Coding is the process of using a programming language to get a computer to behave how you want it to. Every line of code tells the computer to do something, and a document full of lines of code is called a script. Each script is designed to carry out a job. This job might be to take an image and change its size. Why to do coding?  Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity, math,writing, and confidence. 1.Coding can lead to software development jobs.  2.It open up other job opportunities. 3.Coding can make your job application stand out.  4.Coding literacy can help you understand other aspects of tech.  5.It could lead to freelance work.  6.Coding can allow you to pursue passion projects.  7.Coding can boost problem solving and log

c++ basic

C++ is a coding language which can be understand by computer and  compiler There are tokens also  1. Key word 2. Identifier 3. Constant 4. Operations 5. Strings 6. Special symbol like      Bracket ()      Braces ||     Comma,       Hash #    Example  of c++ easy and simple program // my name c++ program// #include<iostream> using namespace std; int main() {     cout << " My name is vishwajeet";     return 0; } This is the one of simple program on c++ language (// my name c++ program//)  This line is comment line . Comment link always starts with //  and there is another comment link which starts with /* and end with */ this is multi line comment