Arjun Thakur has Published 1025 Articles

Flip Effect with CSS

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 12:24:55

556 Views

The flip effect is used to create a mirror image of the object. The following parameters can be used in this filterS.NoParameter & Description1FlipHCreates a horizontal mirror image2FlipVCreates a vertical mirror imageExampleTo set flip effectLive Demo                               Text Example:       CSS Tutorials    

SIM and RIM instructions in 8085

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 12:15:52

17K+ Views

In 8085 Instruction set, SIM (Set Interrupt Mask) and RIM (Read Interrupt Mask) instructions can perform mask and unmask RST7.5, RST6.5, and RST5.5 interrupt pins and can also read their status. In 8085 Instruction set, SIM stands for “Set Interrupt Mask”. It is 1-Byte instruction and it is a multi-purpose instruction. ... Read More

Flip In X Animation Effect with CSS

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 12:15:49

102 Views

To implement Flip In X Animation effect with CSS, you can try to run the following codeExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;         ... Read More

4-bit microprocessors

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 12:10:05

3K+ Views

In the 4-bit microprocessor or computer architecture will have a data path width or a highest operand width of 4 bits or a nibble. And also these architectures or microprocessors typically will have a matching register file with registers width of 4 bits and 4-8-bit wide addresses.Most of the first ... Read More

Modern Microprocessors

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 12:05:57

1K+ Views

In 8085 Instruction set, In the year 2001, Intel introduced the Itanium processor is the first in a family of 64-bit products. It is capable to meet up most demanding enterprise and high-performance computing applications like e-Commerce security transactions, mechanical computer-aided engineering, large databases and sophisticated scientific and engineering computing.Intel ... Read More

Microcontrollers and Digital Signal Processors

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 12:01:02

3K+ Views

A Microcontroller is a small and low-cost microcomputer, which is designed to perform the specific tasks of embedded systems like displaying microwave’s information, receiving remote signals etc.The general microcontroller consists of the processor, the memory (RAM, ROM, EPROM), Serial ports, peripherals (timers, counters) etc.Types of MicrocontrollersMicrocontrollers are divided into various categories ... Read More

Differences in Microcomputer, Microprocessor and Microcontroller

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 11:05:24

20K+ Views

Let us discuss Microcomputer, Microprocessor, and Microcontroller in this article and also to highlight their respective differences in between. MicrocomputerA microcomputer can be defined as a small sized, inexpensive, and limited capability computer. It has the same architectural block structure that is present on a computer. Present-day microcomputers are having smaller ... Read More

High-level language program

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 11:01:32

2K+ Views

High level language is the next development in the evolution of computer languages. Examples of some high-level languages are given belowPROLOG (for “PROgramming LOGic”)FORTRAN (for ‘FORrmula TRANslation’)LISP (for “LISt Processing”)Pascal (named after the French scientist Blaise Pascal).High-level languages are like English-like language, with less words also known as keywords and ... Read More

eval() function in PHP

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 08:56:41

1K+ Views

The eval() function evaluates a string as PHP code.Syntaxeval(code)Parameterscode − The PHP code to be evaluated.ReturnThe eval() function returns null unless a return statement is called in the code string. Then the value passed to return is returned. if there is a parse error in the code string, eval() returns ... Read More

FILTER_SANITIZE_STRING constant in PHP

Arjun Thakur

Arjun Thakur

Updated on 27-Jun-2020 08:53:49

392 Views

The FILTER_SANITIZE_STRING constant deletes tags and encodes special characters from a string.FlagsFILTER_FLAG_NO_ENCODE_QUOTES − Do not encode quotesFILTER_FLAG_STRIP_LOW − Removes characters with ASCII value less than 32FILTER_FLAG_STRIP_HIGH − Removes characters with ASCII value greater than 127FILTER_FLAG_ENCODE_LOW − Encodes characters with ASCII value less than 32FILTER_FLAG_ENCODE_HIGH − Encodes characters with ASCII value ... Read More

Advertisements