Friday 14 August 2015

Learn Javascript tutorials in hindi


          In this video series you'll learn the basics of JavaScript. JavaScript is the most popular client side  scripting language in the world and is used in html web page. When a user request an html page with JavaScript in it. The script is sent to the browser then it is up to the browser to do something.

          If you don't have any programming experience at all it's best language to start learning programming. However JavaScript is not programming language it is scripting language and tells browser to do something.

           

          01
          02
          03
          04
          05
          06
          07
          08
          09
          10
          11
          12
          13
          14
          15
          16
          17
          18
          19
          20




Learn HTML tutorials in hindi and urdu


In this series of videos we'll learn basics of html



 

               01
               02
               03
               04
               05
               06
               07
               08
               09
               10
               11
               12
               13
               14
               15
               16
               17
               18
               19
               20
               21
               22
               23
               24
               25




3 C sharp tutorials in hindi and urdu How to compile C sharp program using command line


We'll switch to text editor as you knew while programming in visual studio we typed a little code and the application was ready. With this method one cannot command over the language therefore I prefer to write programs using text editor. Using text editor we know spelling errors and correct form of keywords.



You can download Text Editor here



          




C sharp tutorials in hindi and urdu printing hello world



When visual studio has installed correctly follow the instructions bellow for c sharp settings.


  1.        Launch the visual studio
  2.        Select visual c# development settings
  3.        Click on start visual studio


Wait for moment, a new window will appear,

  1. Change the name for you application
  2. Select Console application
  3. Click Enter
--------------------------------------------------------------------------------------------------------------------------
This is the basic structure of the program. The code used in the program in the video is given bellow.

using System;


class Program
{
    public static void Main()
    {
        
        Console.WriteLine ("Welcome to C Sharp !"); 
    }
}

            




c sharp tutorials in hindi and urdu on how to install visual studio 2010


In this tutorial we will learn how to download and install visual studio 2010, a rich, integrated development environment for developing windows applications for free

For downloading free visual studio 2010 click here












C sharp tutorials in Hindi and Urdu from beginning to advance


         C# training video tutorials from beginning to advance. The series consists of 250 lessons in pure and easy hindi and urdu language.You will all the basic and advance concepts of c sharp as you proceed.

          As you know that the programming training fee is high now and the students from poor backgrounds cannot afford them so I made this playlist to help you develop software development skills utterly free of cost. The language spoken in these tutorials is very simple and clear.

        If you find these tutorials helpful must subscribe my YouTube channel to get daily alerts for tutorials


         001 Installing Visual Studio 2010
         002 Printing hello world
         003 how to learn c sharp
         004
         005
         006
         007
         008
         009
         010
         011
         012
         013
         014
         015
         016
         017
         018
         019
         020
         021
         022
         023
         024
         025
         026
         027
         028
         029
         030
         031
         032
         033
         034
         035
         036
         037
         038
         039
         040
         041
         042
         043
         044
         045