Skip to main content

Rapid View Of Technology

 Currently Running Top 10 Programming Languages


  1. C programming language                        C language is the most popular and and widely used programming language.The C language is developed in 1972 by  Dennis Ritchie at bell laboratories of AT&T American Telephone & Telegraph, located in the U.S.A. C language is also knows as mother and structured programming language.C language is a basic language of all other languages.
  2. C++ programming language                                C++ is object oriented programming language. C++ programming language was developed in 1980 by Bjarne Stroustrup  at bell laboratories of AT&T,located in U.S.A . C++ is totally based on oops concept.
  3. HTML                                                                                                                       Hyper Text Markup Language. html is a markup language it is not a programming language.  But it help full in programming language. html is a used to create web pages and web applications. In this language use the many markup tags. 1989 Tim Berners-lee inverted WWW html was created by Tim berners-lee in late 1991.
  4. JAVA SCRIPT                                                                                                                                                                                                                       Java Script is object based scripting language.Java script is used to create client slide dynamic pages.Java script is developed by Brendan Eich.
  5. JAVA                                                                                                                                                                                                       Java is a object- oriented, secured and general-purpose programming language. Java was developed by James Gosling in 1995. Before Java,its name was oak .Oak was already a registered company,  James Gosling and his team changed the Oak name to Java.  
  6. PHP                                                                                                                                                                                                                                                                      PHP stands for (Hypertext Preprocessor ). PHP was developed by Rasmus Lerdorf   in 1994 but appeared in the the market 1995. PHP is a server-side scripting language,which is used to manage the dynamic content of the website. 
  7. PYTHON                                                                                                                                                                                                                                                                                                                  PYTHON is a interpreted general-purpose scripting and object oriented programming language.Guido van Rossum is founder of python programming. He was working in a national research institute Netherland. Python was started in the early 1980.The real implementation started in 1989.And python programming is finally published in 27 feb 1991.
  8. SQL                                                                                                                                                                                                                                                                                                                                                               SQL is stands for(Structure Query Language).SQL is used to perform operation on the record stored in the database such as create,update,delete,modify records etc. SQL programming  language was first developed in the 1970 by IBM researchers Raymond Boyce and Donald Chamberlin.  
  9. RUBY                                                                                                                                 
                                                                                                                                                                                                               Ruby is an open-source and object-oriented programming language. Ruby is designed and developed by Yukihiro Martz Mastsumoto in mid 1990s in japan.
  10. SWIFT                                                                                                                                                                     
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   SWIFT is a general purpose and complied programming     language.The development of Swift was started in 2010 by Chris Lattner with other programmers. Swift was introduced in 2014 at Apple's Worldwide Developers Conference.


  We will make future tutorial available you soon...
                        C Language Tutorial

Comments

Post a Comment

Popular posts from this blog

Let's Be Technical

.   Programming Languages And There       Importance       Before you know about programming  language  we  must  know about languages. the language is a communication medium why which we can understand other person the language way of the transformation of various ideas and thoughts among people. After this  now we  know about programming language a programming language is a formal language, which comprises a set of instructions that produce various kinds of output. Programming languages are used in computer programming to implement algorithms. Most programming languages consist of instructions for computers. How its Importance of Programming Language Important in your daily life we use various device & tools that are works one the programming language like microwave ,ATM, Lift etc.  Programming language is important  because it define semantics and grammar which allow the pro...

C Looping Statements

Looping/Iterative Statements What is Loop one statements are executed one or more time .looping simplify the complex problems into the easy one.loop provides code reusability.  we do not need to write same code again and again.looping is used to traverse the element of  data structure. Types of loops 💥 For Loop:- In C the For loop is used to iterate a part of the program many time.In the for loop number of iteration is fixed. Syntax:- for(initialization,condition,increment/decrement) { statement }                                   Flow chart of for loop Example                                                                      #include<stdio.h>    #include<conio.h>...