Articles on Trending Technologies

Technical articles with clear explanations and examples

What is the career prospect in drone technology?

Dev Kumar
Dev Kumar
Updated on 26-Jun-2020 284 Views

Jobs in drone technology-driven enterprises are the jobs of the future because drones are going to play a very crucial role across a large number of industries in future. Many youngsters think that jobs in the drone domain involve just engineering and technological openings but the fact is there are many other openings which don't require you to be a technological wizard.Drone PilotingThis is one specialization that is already opening up many opportunities for youngsters. Drones are finding application in different sectors like mining, security services including private security for industrial and commercial assets, disaster management, logistics and many others. ...

Read More

How to get locale information from Network provider in android?

Arushi
Arushi
Updated on 26-Jun-2020 314 Views

This example demonstrate about How to get locale information from Network provider 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.     In the above code, we have taken text view to show locale infomation.Step 3 − Add the following code to src/MainActivity.javapackage com.example.myapplication; import android.Manifest; import android.content.pm.PackageManager; import android.location.Address; import android.location.Geocoder; import android.location.Location; import android.location.LocationManager; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v4.app.ActivityCompat; import android.support.v7.app.AppCompatActivity; import android.widget.TextView; import java.io.IOException; ...

Read More

What is meant by recycling unicorns?

Dev Kumar
Dev Kumar
Updated on 26-Jun-2020 352 Views

In the world of business, Unicorns are by no means the mythical single horned Equus; it refers to the category of companies called startups with a valuation of over a billion dollars. Hence, recycling unicorns are nothing but startups in the recycling sector that are worth over a billion dollars. It was venture capitalist Aileen Lee who first coined the term 'unicorn' for startups that broke the billion-dollar threshold and the reason he did so was that startups that are worth a billion dollars are as elusive as the mythical unicorn. And yet, there are over 200 unicorns around the ...

Read More

Why are the keys on the keyboard not arranged in alphabetical order?

Dev Kumar
Dev Kumar
Updated on 26-Jun-2020 4K+ Views

The arrangement of keys in a typing keypad that we have today is nearly a century and half old. Initially, in the olden days the typewriter machines did have the keys arranged alphabetically but because the machines were too slow in comparison to the speed at which users learned to master them, it presented a different problem.Swift UsersThe users turned out to be way faster than the machines and this resulted in the mechanical character arms getting jumbled up all over. Therefore, the makers of typewriters in response to customer experience and feedback designed a completely new keyboard where the ...

Read More

8085 Program to Add two multi-byte BCD numbers

George John
George John
Updated on 26-Jun-2020 1K+ Views

Now let us see a program of Intel 8085 Microprocessor. This program is mainly for adding multi-digit BCD (Binary Coded Decimal) numbers.Problem StatementWrite 8085 Assembly language program to add two multi-byte BCD (Binary Coded Decimal) numbers. DiscussionWe are using 4-byte BCD numbers. The numbers are stored into the memory at location 8501H and8505H. One additional information is stored at location 8500H. In this place, we are storing the byte count. The result is stored at location 85F0H.The HL pair is storing the address of first operand bytes, the DE is storing the address of second operand bytes. C is holding the ...

Read More

8085 Program to Add N numbers, of size 8 bits

Ankith Reddy
Ankith Reddy
Updated on 26-Jun-2020 7K+ Views

In this program, we will see how to add a block of data using the 8085 microprocessor.Problem StatementWrite 8085 Assembly language program to add N 1-byte numbers. The value of N is provided.DiscussionIn this problem, we are using location 8000H to hold the length of the block. The main block is stored from address 8010H. We are storing the result at location 9000H and 9001H. The 9000H holding the lower byte, and 9001H is holding the upper byte.Repeatedly we are taking the number from the memory, then adding it with the accumulator and increase the register E content when carry ...

Read More

What is the role of local community media in strengthening democracy at the grassroot level?

Dev Kumar
Dev Kumar
Updated on 26-Jun-2020 251 Views

There can be no doubt about the critical role that community media can play in strengthening democracy at the grass-root level. For most folks in urban areas, especially in Tier I, II and even III cities this issue might not generate much interest, but for those in the smaller towns and villages, this is one issue that will spark immediate interest. That's because folks living in such areas that are classified as rural, don't take a lot of things for granted like their counterparts in cities do.Keep An Insight of the Local PoliticsMost of us in cities don't even know ...

Read More

Register codes of 8085 Microprocessor

Ankith Reddy
Ankith Reddy
Updated on 26-Jun-2020 2K+ Views

Using 16-bit address, 8085 can access one of the 216= 64K locations. As a single hexadecimal digit can be expressed in4-bit notation so, in 8085, memory address can be expressed using four hexadecimal digits. Similarly, for convenience, we can represent all 8085 CPU registers as A, B, C etc. using binary notations. Internally 8085 specifies these registers using 0s and 1s only. So3-bits are just enough to represent a register. The 3-bit register codes for the registers of 8085 are shown in the following tableWith 3-bit register code, eight registers can be specified in maximum as 23= 8. On the ...

Read More

Is it possible to use recycled plastic waste for road building and if so, will it substantially absorb plastic waste from the environment?

Dev Kumar
Dev Kumar
Updated on 26-Jun-2020 178 Views

Recycled plastic or for that matter, any plastic when mixed with the bitumen used to build asphalt roads tend to make the roads stronger and more durable. Considering the total number of roads that are already there and newer roads that will be built in a huge country like India, the total amount of plastic waste generated by the country is way too much to be absorbed entirely in this road building and repairing activity.Hence, building roads with recycled waste plastic can be part of the overall plastic recycling efforts but on its own, it can't absorb all of the ...

Read More

Absolute addressing mode in 8085 Microprocessor

Arjun Thakur
Arjun Thakur
Updated on 26-Jun-2020 2K+ Views

In this mode, the data is directly copied from the given address to the register. This absolute addressing mode is also called a direct addressing mode. For example LDA 3000H: means the data at address 3000H is copied to register A.LDA 4050HLet us consider LDA 4050 Has an example instruction of this type. It is a 3-Byte instruction. The initial content of memory address 4050H is ABH. initial accumulator content is CDH. As after execution A will be initialized with value ABH. Memory location 4050H will still remain with the content ABH. The results of the execution of this instruction ...

Read More
Showing 53121–53130 of 61,297 articles
Advertisements