Samual Sam has Published 2491 Articles

Speech Recognition in Python using Google Speech API

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

1K+ Views

The speech recognition is one of the most useful features in several applications like home automation, AI etc. In this section we will see how the speech recognition can be done using Python and Google’s Speech API. In this case we will give an audio using microphone for speech recognizing. ... Read More

ChainMap in Python

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

717 Views

The ChainMap is used to encapsulates the dictionaries into single unit. The ChainMapis a standard library class, which is located in the collections module. To use it at first we need to import it the collections standard library module. import collections In this section we will see some ... Read More

Create a Website Alarm Using Python

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

385 Views

In this section we will see how to create the website alarm system using Python. Problem Statement Open a website URL on the browser by taking a website URL and time. When the system time reaches the specified time, the webpage will be opened. We can store different web pages ... Read More

Morse Code Translator in Python

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

2K+ Views

Morse Code Translator is used in Cryptography. It is named by Samuel F. B. Morse. By this technique we convert a message to a series of dots, commas, "-", "/". This technique is very simple. Every alphabet in English signifies a series of ".", ", ", "/", "-". We just ... Read More

Comparison of double and float primitive types in C#

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

309 Views

Precision states the difference between float and double data type. Float is a single precision (32 bit) floating point data type. Double is a double precision (64 bit) floating point data type. Range of a float type − -3.4 x 1038 to + 3.4 x 1038 Range ... Read More

Instruction type MVI r, d8 in 8085 Microprocessor

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

11K+ Views

MVI is a mnemonic, which actually means “Move Immediate”. With this instruction, we can load a register with an 8-bitsor 1-Bytevalue. This instruction supports immediate addressing mode for specifying the data in the instruction. In the instruction “d8” stands for any 8-bit data, and ‘r’ stands for any one of ... Read More

Instruction type MOV r, M in 8085 Microprocessor

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

11K+ Views

In 8085 Instruction set, MOV r, M is an instruction where the 8-bit data content of the memory location as pointed by HL register pair will be moved to the register r. Thus this is an instruction to load register r with the 8-bit value from a specified memory location ... Read More

Comparison of Java and .NET

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

250 Views

Java is a high-level programming language originally developed by Sun Microsystems and released in 1995. Java runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. .NET framework is a computer software framework invented by Microsoft. It runs on Microsoft Windows OS (Operating ... Read More

Instruction Type LXI rp, d16 in 8085 Microprocessor

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

22K+ Views

In the 8085 Instruction set there are four instructions, which belong to the type LXI rp, d16. These instructions are used to load the 16-bit address into the register pair. We can use this instruction to load data from memory location using the memory address, which is stored in the ... Read More

Difference between Boxing and Unboxing in C#

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:23

883 Views

Boxing convert value type to an object type whereas unboxing converts object type to the value type. Let us see the difference between Boxing and Unboxing in C#. Storage In boxing, the value stored on the stack is copied to the object stored on heap memory, whereas unboxing is the ... Read More

Advertisements