Skip to main content

WHAT is Programming Language - ( basic , easy way to learn )

 Hello Friends , Welcome back to our blogging page , Today we are going to learn one of the very important topic i.e PROGRAMMING LANGUAGE of computer . 



Before moving towards programming language , I think it would be great that we will discuss a little bit about language .

What is Language ? 😕

A language is a system of object or symbols , such as sound or character sequence that can be combined into a various ways . It is the way in which humans can express their thaughts , feelings or instructions with  others who able to understand it in the same way .

What is Programming Language ?  😕

Programming Language is a computer understandable language in which we used to write instructions which computer can follow. Basically it is a series of symbols which allows human to translate their thaughts into instruction which computer can understand .

All operations of a computer are controlled by a set of instructions ,called computer program .

What does these instructions ? 😕

It is written to tell the computer about the following things .

  • What operations to perform 
  • Where to locate data 
  • How to present results 
  • When to make certain decision 
Friends , communications between two parties whether they are computers , machines or human being , always need  a language should be understandable from both sides .The computer have also their own language like humans . So any communications with computers must be in their language or we have to convert into their language . 

There are three level of programming language available here.

  1. Machine Languages or  ( Low Level Languages )
  2. Assembly Languages or ( Symbolic )
  3. Procedure Oriented Language or ( High Level Language )


 
Examples :- C , C++ , Java , Python , C#   etc.


We will discuss about it in our next blog which will be coming soon .










.

Comments

Popular posts from this blog

Complete Strategy to clear TCS Xplore IPA in One Attempt Now ( 80+ Score )

  So hello Everyone , Here are the all Links from where you can Practice !  All the resources are searched from my best !  1. For KYT and Bizzskill  Link :- tcs Xplore course  2. Unix Operating system Link :-    a.  click here Link 1 b.  click here Link 2 c.  Click here Link 3   3. UI  Link :-  click here 4. SQL and Pl SQL Link : -  Click here Click here click here 5. Java MCQ  Link :-  click here click here click here 6. Java coding :-  Access the playlist on YouTube :-  click here to watch Access the blogs :-  click here All in one link :-   click here

TCS IPA previous year quistion ( 35 marks ) , Quistion , Input , output

 Problem Statement Video Link :    https://youtu.be/XCBvfJAo908 Create a class TravelAgencies with below attributes: regNo – int agencyName – String pakageType – String price – int flightFacility – boolean Write getters, setters for the above attributes . Create constructor which takes parameter in the above sequence. Create class Solution with main method. Implement two static methods – findAgencyWithHighestPackagePrice and agencyDetailsforGivenIdAndType in Solution class. findAgencyWithHighestPackagePrice method: This method will take array of TravelAgencies objects as an input parameter and return the highest package price from the given array of objects. agencyDetailsForGivenldAndType method: This method will take three input parameters -array of TravelAgencies objects, int parameter regNo and String parameter packageType. The method will return the TravelAgencies object based on below conditions. FlightFacility should be available. The input parameters(regNo and packageType) shoul

TCS IPA previous year problems solved [input + output ] in JAVA - (35 marks )

  Problem Statement :  Video Link :   Click Here Create a class AutonomousCar with the below attributes: carld – int brand – String   noOfTestsConducted – int noOfTestsPassed- int environment – String grade – String Write getters, setters for the above attributes . Create constructor which takes parameter in the above sequence except grade. Create class Solution with main method. Implement two static methods – findTestPassedByEnv and updateCarGrade in Solution class. findTestPassedByEnv method: This method will take two input parameters -array of AutonomousCar objects and string parameter environment. The method will return the sum of the noOfTestsPassed attribute from autonomousCar objects for the environment passed as parameter. If no autonomousCar with the given environment is present in the array of AutonomousCar objects, then the method should return 0. updateCarGrade method: This method will take a String parameter brand, along with the array of AutonomousCar objects. The method