Anvi Jain has Published 629 Articles

Insert datetime into another datetime field in MySQL?

Anvi Jain

Anvi Jain

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

393 Views

You can achieve this with the help of update command. To understand the method, let us create a table. The query to create a table is as follows −mysql> create table AddDateTimeWithOther −> ( −> Id int, −> IssueDate datetime, ... Read More

Working of 8212

Anvi Jain

Anvi Jain

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

444 Views

There are two types of Input Output ports. They are Programmable Input Output ports and Non-Programmable Input Output ports. Since the functions of Programmable Input Output ports changed by software they became more popular. We don't need to change the wiring rather the hardware of the I/O port to change ... Read More

8085 program to convert an 8 bit number into Grey number

Anvi Jain

Anvi Jain

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

207 Views

In this program we will see how to find the gray code from an 8-bit number.Problem StatementWrite 8085 Assembly language program to convert an 8-bit number stored at 8000H to its equivalent gray code. The result will be stored at 8050H.DiscussionIn this program we are converting binary to gray code. ... Read More

8085 program to convert 8 bit BCD number into ASCII Code

Anvi Jain

Anvi Jain

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

1K+ Views

Now let us see a program of Intel 8085 Microprocessor. This program will convert 8-bit BCDnumbers to two digit ASCII values.Problem StatementWrite 8085 Assembly language program where an 8-bit BCD number is stored in memory location 8050H. Separate each BCD digit and convert it to corresponding ASCII code and store ... Read More

How to detect which iOS version is running on the device?

Anvi Jain

Anvi Jain

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

418 Views

When working on iOS applications, we sometimes need to know the version that's running on an iPhone device. In this article we'll learn how to find the iOS version being used, using an iOS Application.Create an iOS application and in it's viewController's view did load function write the following code.print(" ... Read More

8085 program for bubble sort

Anvi Jain

Anvi Jain

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

2K+ Views

In this program we will see how to sort a block of bytes using bubble sorting technique.Problem StatementWrite 8085 Assembly language program to sort numbers in ascending order where n number of numbers are stored in consecutive memory locations starting from 8041H and the value of n is available in ... Read More

8085 Program to convert two-digit hex to two ASCII values

Anvi Jain

Anvi Jain

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

222 Views

Now let us see a program of Intel 8085 Microprocessor. This program will convert 8-bit numbers to two digit ASCII values.Problem StatementWrite 8085 Assembly language program where an 8-bit binary number is stored in memory location 8050H. Separate each nibbles and convert it to corresponding ASCII code and store it ... Read More

Count how many rows have the same value in MySQL?

Anvi Jain

Anvi Jain

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

2K+ Views

To count how many rows have the same value using the function COUNT(*) and GROUP BY. The syntax is as follows −SELECT yourColumName1, count(*) as anyVariableName from yourTableName GROUP BY yourColumName1;To understand the above syntax, let us first create a table. The query to create a table is as follows ... Read More

Delimiters in MySQL?

Anvi Jain

Anvi Jain

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

6K+ Views

Delimiters can be used when you need to define the stored procedures, function as well as to create triggers. The default delimiter is semicolon.You can change the delimiters to create procedures and so on. However, but if you are considering multiple statements, then you need to use different delimiters like ... Read More

MySQL command line client for Windows?

Anvi Jain

Anvi Jain

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

3K+ Views

In order to install MySQL command line client for Windows, you need to visit the following URL to get the download link https://dev.mysql.com/downloads/mysql/ −The snapshot is as follows −After that you need to select operating system. The snapshot is as follows −You need to choose Windows (x86, 32/64-bit) and download ... Read More

Advertisements