Machine Learning vs Big Data: Best Career Options

Mouri Roy
Updated on 09-May-2023 12:15:47

236 Views

There is a buzz among the students regarding the terms like machine learning and big data. Machine learning and Big Data are both technologies are derived from Data Science. Although there are many differences between them, many students get confused. This is not wrong to get confused because both these technologies are from a similar field. Choosing a career in either of these fields needs a clear vision and understanding of the topic. In this article, we will discuss the various aspects where machine learning and big data are similar and where they are different. Apart from this, we will ... Read More

Sign Android APK Before Uploading to Google Play

Vaibhav Ahire
Updated on 09-May-2023 12:14:01

355 Views

Introduction While publishing any android application to the Google Play store, it is necessary to sign the android application package (APK) to make our application secure and trustworthy. In this article we will take a look at How to sign the Android APK before uploading it to Google Play Store. Generating the signed APK Create the android studio project for which you have to generate the Android application package (APK) file. Now once your project has been created, we will take a look at How to generate a signed apk for your project. For generating a signed APK navigate to ... Read More

Apply Machine Learning in an Android App

Mouri Roy
Updated on 09-May-2023 12:13:15

383 Views

Nowadays there are more intelligent recommendation systems, AI embedded cameras on smartphones for auto-focus and auto-face detection, advanced chatbots, and ai voice assistants like Siri, Alexa, and Google Assistant. People have started creating apps like ChatGPT, which can handle advanced problems like interviews. However, fascinating this may seem but to deploy an app with such capabilities one needs to have in-depth knowledge of machine learning and deep learning algorithms, with access to a huge variety of resources and datasets, which sometimes is impossible to attain by single individuals. So a proper group of people is needed to access and manage ... Read More

Send POST Requests with JSON Data Using Volley in Android

Vaibhav Ahire
Updated on 09-May-2023 12:12:32

5K+ Views

Most of the android applications we see on Google Play store make an API call within themselves so that they can gather data from their database and display that within our application. Similarly many applications take the data from the user through forms and store them within their database. Many applications take user details such as address and other for delivering specific products to their address. For posting this data there are different ways such as using Volley, Retrofit and others. In this article we will take a look on How to send POST requests with JSON data using Volley ... Read More

Design Patterns for Data Mining in Machine Learning Projects

Mouri Roy
Updated on 09-May-2023 12:05:58

271 Views

As the demand for machine learning is increasing in various fields like corporate offices, hospitals, server-side services, traffic, manufacturing, and many more fields, it is important to deliver the best solutions for any problem related to machine learning. This will alternatively increase the efficiency of machine learning models. The design patterns are a way in which the various stages and steps to train machine learning models are recorded so that it can be used to solve a problem with much efficiency and less error. In this article, we will see the various machine learning design patterns. But before that let ... Read More

Send Images via MMS in Android

Vaibhav Ahire
Updated on 09-May-2023 12:05:52

2K+ Views

Introduction The multimedia messaging service is a great way to send images and other media files along with text to different contacts over the phone. If you are looking to send images to your contacts then MMS is a great way to send this to your friends and family. In this article we will take a look at How to send images via MMs in 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. After that we will be creating an image view in ... Read More

Save Files on External Storage in Android

Vaibhav Ahire
Updated on 09-May-2023 12:02:05

4K+ Views

Introduction In android devices the most useful feature is to store and read the files within the device storage or an external storage. This allows users to expand their device storage capacity so that they can store and retrieve files according to their convenience and can use them accordingly. In this article we will take a look at How to save files on external storage in 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.After that we will be creating an edit text field ... Read More

Read and Write String from a File in Android

Vaibhav Ahire
Updated on 09-May-2023 11:56:27

3K+ Views

Introduction Many times while building an android application we have to store data in the form of files within our android application. We will read and write string data inside our file. In this article we will take a look on How to Read/Write string from a file in Android Implementation We will be creating a simple application in which we will be firstly writing the data in that file which the user can enter through edit text. After that we will be reading the data stored in that file by clicking a button and displaying that within our text ... Read More

Search Element in a Dictionary using Swift

Ankita Saini
Updated on 09-May-2023 11:51:09

3K+ Views

In a Swift dictionary, we can search for an element that is either a key or value with the help of contains() function. The contains() function will return a boolean value which represents whether the specified element(key or value) is found or not. Syntax dict.contains{$0.key == “KeyName”} Here, dict is the dictionary. The contains() function returns a boolean value which represents the result. Here we pass a closure in the function which will check if the current key is equal to the specified key or not and then return the result accordingly. Algorithm Step 1 − Create a ... Read More

Replace Elements in a Dictionary in Swift

Ankita Saini
Updated on 09-May-2023 11:49:30

362 Views

In Swift, a dictionary is an unordered collection of key-value pairs. So, to replace the value of a key Swift provides bracket notation or subscript notations. Using this notation we can also add new key-value pair in the dictionary if the specified pair does not exist. Syntax dict[keyName] = “Value” Here, dict is the dictionary. The keyName represents the key whose value you want to replace, and the Value represent the new value. Algorithm Step 1 − Create a dictionary with key-value pairs. Step 2 − Display the original dictionary. Step 3 − Now replace the value of ... Read More

Advertisements