An array is a collection of elements of homogeneous datatypes stored in contiguous memory locations. Python does not provide support for the built-in arrays. If you need to work with arrays you need to import the "array" module or, use the arrays in numpy library.We can use lists instead of arrays in Python. However, we cannot restrict the elements of a list to be of the same data type. The given task is to remove all the occurrences of an element in an array/list. i, e. we to remove the specified element including the duplicate elements. Let us understand how this ... Read More
As cloud computing has become more common, it has led to the creation of many new things. Many facets of contemporary life have changed due to cloud computing, especially the nature of the modern workplace and how employees engage with one another there. As a result of the unwanted plague, many businesses have switched to cloud-based services to handle output problems. Cloud computing is one of the newest IT tools with the fastest expansion rate. Although technology has existed for over ten years, its appeal has recently soared. By 2023, cloud computing will overtake all other technologies based on current ... Read More
Introduction Many times in android applications we can see that OTP received for user authentication is detected automatically and it is added within the application automatically. Users don't have to add the otp manually. This can be done in android applications with the help of broadcast receivers. In this article we will take a look on How to listen for incoming sms messages in android application Implementation We will be creating a simple application in which we will be displaying two text views. First text view is for displaying the heading of our application. Second text view we will be ... Read More
Introduction Many times in android applications the address to the specific store or a location is being displayed in the form of an icon. On clicking on that google map icon the application redirects us to the Google Maps application in which we will get to see the route from users location to the stores location. In this article we will take a look on How to launch Google Maps Directions via an intent on Android. Implementation We will be creating a simple application in which we will be creating a text view for displaying the heading of our application. ... Read More
Introduction We can get to see different payment gateways used within any android application for collecting payments from the application users for providing the specific services such as Paytm, Razorpay, Paypal and many others. In this article we will take a look on How to integrate PayPal in an android application. Implementation We will be creating a simple application in which we will be creating a text view for displaying the heading of our application. After that we will create an edit text which is used to enter the amount for which the user has to make payment and a ... Read More
Many times in an android application we can get to see the data is being displayed in the form of a list such as in task tracker application we can get to see different types of tasks arranged in the form of a list in a specific order. Now inside those applications we can change the priority of tasks by simply changing their priority. We will add the task with highest priority at the top. So we can simply drag and drop that task to the top most position. So in this way Drag and Drop functionality is used for ... Read More
A Full Outer Join is an operation that combines the results of a left outer join and a right outer join. In PySpark, it is used to join two dataframes based on a specific condition where all the records from both dataframes are included in the output regardless of whether there is a match or not. This article will provide a detailed explanation of how to perform a full outer join in PySpark and provide a practical example to illustrate its implementation. Installation and Setup Before we can perform a full outer join in PySpark, we need to set up ... Read More
Introduction When we have to connect our android application to other applications or websites we can use URI (Uniform Resource Identifier) to connect. In this article we will take a look on How we can create a URI scheme for our android application. Implementation We will be creating a simple application in which we will be displaying two text views. First text view we will be using to display the heading of our application. We will be using a second text view for displaying the data to be passed through our URL. Step 1 : Creating a new project in ... Read More
SASS is a CSS pre-processor, that stands for Syntactically Awesome Style Sheet. The SASS code is written just like a scripting language like JavaScript, but at the time of compilation it is converted into CSS and compiled as CSS in the browser. SASS can be used with any version of CSS. It is used to enhance and advance the way of writing the code in normal CSS. In normal workspace, we are used to of writing the whole code in one single file only, that makes our code complex to read and understand for any other developer. SASS allow us ... Read More
In CSS or the Cascading Style Sheet, there are many units available to represent the values of different properties in different ways according to the need. The CSS properties like: font-size, height, width and line-height etc are used to define the different properties to a container. The values of these properties can be assigned in the form of different units. In this article, we are going to learn about the different CSS units in details and implement them practically to understand use of each one of them. There are many CSS units available in CSS, but in this article ... Read More