
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Mohd Mohtashim has Published 238 Articles

Mohd Mohtashim
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

Mohd Mohtashim
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

Mohd Mohtashim
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

Mohd Mohtashim
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

Mohd Mohtashim
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

Mohd Mohtashim
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

Mohd Mohtashim
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

Mohd Mohtashim
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