Mohd Mohtashim has Published 238 Articles

Perl Installation on Unix and Linux Platform

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 07:08:25

1K+ Views

Here are the simple steps to install Perl on Unix/Linux machine.Open a Web browser and go to  https://www.perl.org/get.html.Follow the link to download the zipped source code available for Unix/Linux.Download the perl-5.x.y.tar.gz file and issue the following commands at $ prompt.$tar -xzf perl-5.x.y.tar.gz $cd perl-5.x.y $./Configure -de $make $make test $make ... Read More

Perl is Interpreted or Compiled Language?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 07:04:30

1K+ Views

Perl is an interpreted language, which means that your code can be run as-is, without a compilation stage that creates a non-portable executable program.Traditional compilers convert programs into machine language. When you run a Perl program, it's first compiled into a byte code, which is then converted ( as the ... Read More

Perl and the Web

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 07:02:12

203 Views

Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more.Perl used to be the most popular web programming language due to its text manipulation capabilities and rapid development cycle.Perl ... Read More

What is Perl Programming Language?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 06:59:17

605 Views

Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more.Perl is a stable, cross-platform programming language.Though Perl is not officially an acronym few people used it as Practical Extraction ... Read More

What are the Applications of Perl Programming?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 06:56:56

1K+ Views

Perl is one of the most widely used languages over the web. I'm going to list a few of them here −Perl used to be the most popular web programming language due to its text manipulation capabilities and rapid development cycle.Perl is widely known as "the duct-tape of the Internet".Perl ... Read More

Hello World using Perl.

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 06:54:29

955 Views

Perl is a programming language developed by Larry Wall, specially designed for text processing.Just to give you a little excitement about Perl, I'm going to give you a small conventional Perl Hello World program, You can try it using the Demo link.Example Live Demo#!/usr/bin/perl # This will print "Hello, World" print ... Read More

What are the Features of Perl Language?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 06:51:56

2K+ Views

Perl is a programming language developed by Larry Wall, specially designed for text processing. There are following great feature of Perl LanguagePerl takes the best features from other languages, such as C, awk, sed, sh, and BASIC, among others.Perl's database integration interface DBI supports third-party databases including Oracle, Sybase, Postgres, ... Read More

Why to Learn Perl?

Mohd Mohtashim

Mohd Mohtashim

Updated on 28-Nov-2019 06:47:48

321 Views

Perl is a programming language developed by Larry Wall, specially designed for text processing. It stands for Practical Extraction and Report Language. It runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX Following great features make this language necessary for the Programmers ... Read More

Advertisements