View all courses
Read more
The Language Which does not need any prior knowledge of Programming and Easy to learn .Python is Object-oriented ,interpreted and Server side Scripting language . It is mainly used for lynux platform.
In Advance concept After learning Core Python We will use Python to create Desktop Application, Web Application, Sockets Programming , Multithread Programming. Since its An Open source Language its free of Cost
Ruby is server side, dynamic, reflective, object-oriented, general-purpose programming language. Ruby is "an interpreted scripting language for quick and easy object-oriented programming"
Ruby on Rails, or simply Rails, is a web application frameworkwritten in Ruby under the MIT License. Rails is a model–view–controller (MVC) framework, providing default structures for a database, a web service, and web pages.
If you have any confusion then you can ask our experts.Our experts will guide you properly.
We are looking you if you are looking guidance for web design and development. Apply online.
Contact us
To make copy of a folder --------------------------------- cp -r source destination/ If destination doesn't exist, it will be created. -R means copy directories recursively. You can also use -r since it's case-insensitive To copy from one html folder to another folder [html] cp -r xyz/* pqr/ To Zip Folder ------------------- cd path/to/folder/foldername zip -r foldername.zip foldername * [use * if it has any sub directory] To UNZIP a folder on server -------------------------------------- unzip foldername.zip Note :- Here you can see we have used foldername.zip and the location is not defined so where ever it will be the location there it will be unzipped If the message shows commond not found then we have to use yum install unzip Restrart Apache server -------------------------------- let say you have created some virtual hosting on web server to create sub domain so to make it effective we need to restart apache server Service httpd restart Service httpd status