Articles on Trending Technologies

Technical articles with clear explanations and examples

How to ORDER BY RELEVANCE in MySQL?

Arjun Thakur
Arjun Thakur
Updated on 30-Jul-2019 891 Views

To order by relevance, use the case statement. To understand the concept, let us create a table. The query to create a table is as follows −mysql> create table OrderByRelevance    -> (    -> UserId int,    -> UserName varchar(200)    -> ); Query OK, 0 rows affected (0.51 sec)Now you can insert some records in the table using insert command. The query is as follows −mysql> insert into OrderByRelevance values(101, 'Carol Smith'); Query OK, 1 row affected (0.18 sec) mysql> insert into OrderByRelevance values(102, 'Carol Adams'); Query OK, 1 row affected (0.17 sec) mysql> insert into ...

Read More

8085 program to find the sum of first n natural numbers

Rishi Rathor
Rishi Rathor
Updated on 30-Jul-2019 3K+ Views

In this program we will see how to add first n natural numbers.Problem StatementWrite 8085 Assembly language program to add first N natural numbers. The value of N is provided.DiscussionWe are getting the value of N from memory location 8000H. We are using the number N as count variable, in each step we are calculating (A + Count) value, and store them into A. After adding them, the count value is decreased, thus the total series is completed.If the number is 23H(35D), then the sum will be (35*36)/2 = 630 (276H)InputAddressData......800023......Flow DiagramProgramAddressHEX CodesLabelsMnemonicsCommentsF00021, 00, 80LXI H, 8000HPoint to get the ...

Read More

How to Scroll top in RecyclerView with LinearLayoutManager in Android?

Arjun Thakur
Arjun Thakur
Updated on 30-Jul-2019 3K+ Views

Before getting into example, we should know what is Recycler view in android. Recycler view is more advanced version of list view and it works based on View holder design pattern. Using recycler view we can show grids and list of items .This example demonstrate about how to Scroll top in RecyclerView with LinearLayoutManager by creating a beautiful student records app that displays student name with age .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 − Open build.gradle and add Recycler ...

Read More

8085 program to count number of once in the given 8-bit number

Vrundesha Joshi
Vrundesha Joshi
Updated on 30-Jul-2019 1K+ Views

In this program we will see how to count number of 1's in an 8-bit number.Problem StatementWrite 8085 Assembly language program to count number of 1s in 8-bit number stored atlocation 8000H.DiscussionIn this program we areusing the rotate operation to count the number of 1's. As there are8 different bits in 8-bit number, then we are rotating the numbereight times. we can use RRC or RLC. Here we have used the RRCinstruction. This instruction sends the LSb to MSb also to carryflag. So after each iteration we can check the carry status to getthe count of 1s.If the number is ...

Read More

How to update RecyclerView Adapter Data in Android?

Ankith Reddy
Ankith Reddy
Updated on 30-Jul-2019 6K+ Views

Before getting into example, we should know what is Recycler view in android. Recycler view is more advanced version of list view and it works based on View holder design pattern. Using recycler view we can show grids and list of items.This example demonstrate about how to update Recycler View adapter by creating a beautiful student records app that displays student name with age.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 − Open build.gradle and add Recycler view & Card view ...

Read More

Why is "LIMIT 0" even allowed in MySQL SELECT statements?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 1K+ Views

As you know if you use LIMIT 0 in MySQL SELECT statement, it returns an empty set.The LIMIT can be used when you want a specified number of rows from a result rather than the entire rows. If you use any MySQL API, then the job of LIMIT is to acquire the type of result columns.LIMIT 0 can be used to check the validity of a query. For more details use the following link −https://dev.mysql.com/doc/refman/8.0/en/limit-optimization.htmlHere is the demo of LIMIT 0. The query to create a table is as follows −mysql> create table Limit0Demo    -> (    -> Id ...

Read More

How to create Animated Gradient Background in android.

George John
George John
Updated on 30-Jul-2019 985 Views

Before getting into example, we should know what is Gradient color. According to Wikipedia, In computer graphics, a color gradient (sometimes called a color ramp or color progression) specifies a range of position-dependent colors, usually used to fill a region. For example, many window managers allow the screen background to be specified as a gradient.This example demonstrate about how to create Animated Gradient Background in android.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. ...

Read More

What are the best plugins for building best and attractive website pages?

yashwanth sitamraju
yashwanth sitamraju
Updated on 30-Jul-2019 197 Views

A plugin is that piece of software that gives additional functionality to a website. These plugins help the web browser to display additional content and increases the functionality of a website and makes it look great.Websites are usually created using WordPress, so let us discuss some of the best "Free WordPress Plugins" to help in building best and attractive website pages.AkismetJetpackEverest formsYoast SEOGoogle XML SitemapsNivo SliderW3 Total CacheVaultPressUser RegistrationWP Smush

Read More

8085 program to count total even numbers in series of 10 numbers

Anvi Jain
Anvi Jain
Updated on 30-Jul-2019 1K+ Views

In this program we will see how to count number of even numbers in a block of elements.Problem StatementWrite 8085 Assembly language program to count number of even numbers in a block of data, where the block size is 10D. The block is starting from location8000H.DiscussionThe Odd Even checking is very simple. we can determine one number is odd or even by checking only the LSb. When LSb is 1, the number is odd, otherwise it is even. In this program we are taking a number from memory and then ANDing01H with it. if the result is nonzero, then the ...

Read More

How to implement Android Pull-to-Refresh?

Chandu yadav
Chandu yadav
Updated on 30-Jul-2019 722 Views

Before getting into example, we should know what is Pull to refresh layout in android . we can call pull to refresh in android as swipe-to-refresh. when you swipe screen from top to bottom it will do some action based on setOnRefreshListener.This example demonstrate about how to implement android pull to refresh.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 code we have given swipeRefreshLayout as parent ...

Read More
Showing 60401–60410 of 61,297 articles
Advertisements