George John has Published 1167 Articles

C++ Program to Perform Right Rotation on a Binary Search Tree

George John

George John

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

632 Views

A Binary Search Tree is a sorted binary tree in which all the nodes have following two properties −The right sub-tree of a node has a key greater than to its parent node's key.The left sub-tree of a node has a key less than or equal to its parent node's ... Read More

Wait state generation in 8085 Microprocessor

George John

George John

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

2K+ Views

The memory and the peripheral chips present today are very fast for a 8085 processor working at 3 MHz of frequency. So we do not need wait states. If we use 8085AH-2 which works at 5 MHz frequency, there we need to insert one wait state, between T2 and T3.To ... Read More

How to get the longest VarChar length in MySQL?

George John

George John

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

4K+ Views

To get the longest varchar length, you need to use CHAR_LENGTH().The syntax is as followsSELECT Max(CHAR_LENGTH(yourColumnName)) AS anyAliasName FROM yourTableName;To understand the above syntax, let us create a table. The query to create a table is as followsmysql> create table CharLengthDemo    - > (    - > Id int ... Read More

Convert IntStream to String in Java

George John

George John

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

318 Views

If you have IntStream with ASCII values, then easily convert it to string using the below given example.For IntStream class, import the following packageimport java.util.stream.IntStream;Let’s say the following is our IntStreamIntStream stream = "Example".chars();Now, convert the IntStream to stringString str = stream.collect(StringBuilder::new,    StringBuilder::appendCodePoint,    StringBuilder::append).toString();The following is an example ... Read More

How to make full screen custom dialog in Android?

George John

George John

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

3K+ Views

This example demonstrate about How to make full screen custom dialog.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the above ... Read More

Get MySQL DISTINCT to work correctly if the records contain whitespace?

George John

George John

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

124 Views

To get distinct including whitespace, you can use below syntax −SELECT DISTINCT replace(yourColumnName, ' ', '') FROM yourTableName;Let us first create a table:mysql>create table DemoTable (    Id int NOT NULL AUTO_INCREMENT PRIMARY KEY,    Name varchar(20) ); Query OK, 0 rows affected (0.63 sec)Insert some records in the table ... Read More

Evaluation of Boolean expression

George John

George John

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

315 Views

We write a program in 8085 in the assembly language just for the evaluation of only wo Boolean expressions of 4 variables by using the interface of logic controller. The output of the program should be logically tested automatically by the output by the input changing from the inputs from ... Read More

DoubleStream.Builder build() method in Java

George John

George John

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

68 Views

The build() method of the DoubleStream.Builder class builds the stream. It transitions this builder to the built state.The syntax is as followsDoubleStream build()To use the DoubleStream.Builder class in Java, import the following packageimport java.util.stream.DoubleStream;The following is an example to implement DoubleStream.Builder build() method in Java:Example Live Demoimport java.util.stream.DoubleStream; public class Demo ... Read More

Resolve Unknown database in JDBC error with Java-MySQL?

George John

George John

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

8K+ Views

This type of error occurs if you select any database that does not exist in MySQL. Let us first display the error of unknown database in JDBC.The Java code is as follows. Here, we have set the database as ‘onlinebookstore’, which does not exist:import java.sql.Connection; import java.sql.DriverManager; public class UnknownDatabaseDemo ... Read More

Difference between count(*) and count(columnName) in MySQL?

George John

George John

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

2K+ Views

The count(*) returns all rows whether column contains null value or not while count(columnName) returns the number of rows except null rows.Let us first create a table.Following is the querymysql> create table ifNotNullDemo    -> (    -> Name varchar(20)    -> ); Query OK, 0 rows affected (0.54 sec)Following ... Read More

Advertisements