JavaScript Operator

javascript

Let us take a simple expression 4 + 5 is equal to 9. Here 4 and 5 are calledoperands and ‘+’ is called the operator. JavaScript supports the following types of operators. Arithmetic Operators Comparision Operators Logical (or Relational) Operators Assignment Operators Conditional (or ternary) Operators Lets have a look on all operators one by … Read more

Python : Installation on Windows and Simple Example

python tutorial

What is python? Python is an interpreted programming language. As it is a programming language so it tells a computer what to do. However, the computer doesn’t read the language directly – there are hundreds of programming languages, and it couldn’t understand them all. So, when someone writes a program, they will write it in … Read more

Call Centre Dialer : What is a Dialer and what are the types of Dialers

iNet Expert Technology support

What is a Dialer? Dialer is an application used in call centres to automate the process of dialing to external phone numbers so that the agents can attend to certain calls. A dialer (American English) or dialler (British English) is an electronic device that is connected to a telephone line to monitor the dialed numbers and alter them to seamlessly provide … Read more

Get started – Asterisk – Learn Asterisk Programming

Asterisk dial command

What is Asterisk? Asterisk is an open source framework for building communications applications. Asterisk turns an ordinary computer into a communications server. Asterisk powers IP PBX systems, VoIP gateways, conference servers and other custom solutions. It is used by small businesses, large businesses, call centers, carriers and government agencies, worldwide. Asterisk is free and open … Read more

How to insert CSS in webpages

html-css-website

The 3 ways to insert CSS into your web pages There are three ways of inserting a style sheet: External style sheet Internal style sheet Inline style External style sheet With an external style sheet, you can change the look of an entire website by changing just one file! Each page must include a reference … Read more

CSS Selectors

html-css-website

What is CSS selectors? CSS selectors allow you to select and manipulate HTML elements. CSS selectors are used to “find” (or select) HTML elements based on their id, class, type, attribute, and more. There are many types of selectors. We will describe here each of them with example. Element Selectors: For example if we talk … Read more

Hashes in perl : Key values Hashes

perl-programming

Hashes are one of the data structures available in Perl.A hash is an un-ordered group of key-value pairs. The keys are unique strings. The values are scalar values. Each value can be either a number, a string, or a reference. We’ll learn about references later. Hashes, like other Perl variables, are declared using the my keyword. The … Read more