Karthikeya Boyini has Published 2192 Articles

What is the difference between pass by value and reference parameters in C#?

karthikeya Boyini

karthikeya Boyini

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

937 Views

Reference Parameters A reference parameter is a reference to a memory location of a variable. The reference parameters represent the same memory location as the actual parameters that are supplied to the method. When you pass parameters by reference, unlike value parameters, a new storage location is not created for ... Read More

Birthday Reminder Application in Python

karthikeya Boyini

karthikeya Boyini

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

820 Views

In this section we will see how to create a birthday reminder application using Python. Problem Statement Create an application using Python, which can check whether there is any birthday on the current day or not. If it is the birthday of some listed person, send a notification to the ... Read More

Erosion and Dilation of images using OpenCV in Python

karthikeya Boyini

karthikeya Boyini

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

882 Views

In this problem, we will see how Python can do some Morphological Operations like Erosion and Dilation using the OpenCV module. The OpenCV library is mainly designed for computer vision. It is open source. Originally it was designed by Intel. This is free to use under open-source BSD license. To ... Read More

Tweet using Python

karthikeya Boyini

karthikeya Boyini

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

196 Views

Before using Tweet in Python, we have to follow some steps. Step1 − at first we must have a tweeter profile and then it has to be added with our mobile number. First go to - Settings -> Add Phone -> Add number -> Confirm -> Save. We have to ... Read More

Using CX_Freeze in Python

karthikeya Boyini

karthikeya Boyini

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

1K+ Views

Sometimes we feel to create something different which is very exciting, and according to human nature, we always love to share it. Python also fulfills those wishes. Using Python, if we want to share our Python program with our friends we can do that, only need to have the same ... Read More

Decimal Functions in Python

karthikeya Boyini

karthikeya Boyini

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

13K+ Views

In Python, there is a module called Decimal, which is used to do some decimal floating point related tasks. This module provides correctly-rounded floating point arithmetic. To use it at first we need to import it the Decimal standard library module. import decimal In this section we will ... Read More

Text Analysis in Python3

karthikeya Boyini

karthikeya Boyini

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

298 Views

In this assignment we work with files. Files are everywhere in this Universe. In computer system files are essential part. Operating system consists a lot of files. Python has two types of files-Text Files and Binary Files. Here we discuss about Text Files Here we focus some of the ... Read More

Instruction type MOV r1, r2 in 8085 Microprocessor

karthikeya Boyini

karthikeya Boyini

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

14K+ Views

In 8085 Instruction set, MOV is a mnemonic, which stands for “MOVe”. In this instruction 8-bit data value in register r2 will be moved to the 8-bit register r1. Note that in 8085 instructions, as the first operand specifies the destination, and the second one the source, so here also ... Read More

SharedArrayBuffer.byteLength Property in JavaScript

karthikeya Boyini

karthikeya Boyini

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

101 Views

The byteLength property of the SharedArrayBuffer returns an unsigned, 32-bit integer that specifies the size/length of a SharedArrayBuffer. Syntax Its Syntax is as follows sharedArrayBuffer.byteLength Example Live Demo JavaScript Example ... Read More

Instruction type MOV M, r in 8085 Microprocessor

karthikeya Boyini

karthikeya Boyini

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

8K+ Views

In 8085 Instruction set, this instruction MOV M, r will copy 8-bit value from the register r to the memory location as pointed by HL register pair.This instruction uses register addressing for specifying the data. As “r” can have any one of the seven values − r = A, ... Read More

Advertisements