
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1952 Articles for Apps/Applications

5K+ Views
GPS stands for Global Positioning System which was initially created for military usage. The first fully functional GPS was in 1995 in the US and was then included in vehicles in 1996. It is nothing but a group of satellites that revolves around the earth and recursively send messages to the earth's surface which are received by various devices to calculate the optimized location of the receiving device, this calculation requires information from at least 4 satellites which includes the coordinate positions and clock deviations. This is known as space technology. It is implemented everywhere on the earth without 100% ... Read More

3K+ Views
The Adhoc network is a wireless link connected without any fixed infrastructure or infrastructures. Communication is established instantly whenever needed. The node access each other in the network without a base station or fixed station access point. Also, the network is distributed in the local area network. Each node uses radio waves to communicate with each other. Eg:- WLAN, GSM, etc. In a multi-hop distributed architecture, the terminals are connected. The nodes operate for routing, securing, key management, and addressing in an ad-hoc wireless network that does not have a centralized system. The transmission occurs through intermediate nodes from the ... Read More

356 Views
Android Studio is an Integrated Development Environment (IDE) developed by Google for building applications for all Android devices. It is a powerful tool that provides a comprehensive environment for creating and testing Android apps, with features such as code highlighting, debugging, and testing. In this article, we will explore various features of Android Studio that make it an indispensable tool for building Android apps. We will also discuss how Android Studio can be used to create apps for different Android devices, such as smartphones, tablets, wearables, and even TV. Getting Started with Android Studio Before we dive into features of ... Read More

3K+ Views
Are you interested in Android development and want to learn how to create amazing mobile apps? Then, you’ve come to the right place. In this article, we’ll be exploring some of the best Android development courses available in 2023. Android is the most popular mobile operating system, with over 2 billion active users worldwide. Therefore, it's no surprise that the demand for skilled Android developers is on the rise. Learning Android development can lead to a rewarding and lucrative career, as well as giving you the opportunity to create innovative mobile apps that can change the world. So, without further ... Read More

432 Views
API and SDK are two terms commonly used in software development, and while they might seem to be the same, they perform different tasks. APIs are a set of protocols for creating software applications, whereas SDKs are a set of tools for developing software applications. While an API can be part of an SDK, an SDK is a more comprehensive set of tools for developing software applications. Read this article to find out more about API and SDK and how they are different from each other. What is API? API stands for Application Programming Interface and refers to a set ... Read More

3K+ Views
Torque and force are two concepts that are often used in the field of mechanics. While both of these concepts deal with the movement of objects, they are different in terms of their nature, application, and effect. What is Torque? Torque is the measure of the rotational force that is applied to an object. It is a vector quantity that is defined as the product of force and the distance between the force and the axis of rotation. In simpler terms, it is the force that is used to twist or turn an object around an axis. Torque is commonly ... Read More

3K+ Views
In context of music, 8-bit and 16-bit represent the bit depth of the digital audio. Hence, the most fundamental difference between 8-bit and 16-bit music in their bit depth that is, the 8-bit music has a bit depth of 8-bits, i.e. each music sample is represented by using 8-bits, while the 16-bit music has a bit depth of 16-bits. In this article, we will discuss the important differences between 8-bit music and 16-bit music, but before that let us first discuss their basics. What is 8-Bit Music? 8-bit music is a type of digital audio that uses 8 bits to ... Read More

3K+ Views
Introduction Many times in android applications we use to display so many different types of activities. This activities are used in android applications for performing the different tasks. When we are navigating from one activity to another activity, the previous activity from which we have navigated remains in the stack, which will take system memory and may degrade the performance of the application. To prevent this we have to clear the activity history stack of an android application. In this article we will take a look on How to remove an activity from the history stack in Android. Implementation We ... Read More

7K+ Views
Introduction Many android applications use WebView with their applications to display the webpages to the user. This web page many times contains videos embedded within it. Such as many applications that open youtube inside the WebView to be displayed within their application. When the application user opens any video from that web page the full screen option to play the video is disabled. In this article we will take a look on How to enable that full screen inside our WebView so that we can play the HTML 5 video on full screen in WebView inside our android application. Implementation ... Read More

3K+ Views
Introduction There are many storage service providers in android applications which we can use to store data within our android application. We can store data in our android application in different ways such as by using SQLite database, Room Database, Shared Preferences and many more. Each of them has their own advantages and disadvantages. Room database and Sqlite database are similar which are used to store the data in the form of tables whereas shared preference is used to store the data in the form of key and value pairs. In this article we will be mostly focusing on SQLite ... Read More