Articles on Trending Technologies

Technical articles with clear explanations and examples

How to use input readonly attribute in jQuery?

Rushi Javiya
Rushi Javiya
Updated on 07-Mar-2023 15K+ Views

The readonly is an HTML attribute that we can add to any HTML tag. Whenever we use the readonly attribute with any HTML element, it becomes non-editable. Users can’t write into the text field but can only read. In this tutorial, we will learn to add the readonly attribute to the HTML element using the various methods of jQuery. Use the attr() method of jQuery The attr() method of jQuery sets the attribute to the HTML element. It takes two parameters, and we can pass the attribute name as the first parameter and the attribute value as the second ...

Read More

How to use Grid Component in Material UI?

Rushi Javiya
Rushi Javiya
Updated on 07-Mar-2023 1K+ Views

The grid means the structure of rows and columns like a table. When we create a table using the HTML tag, we can create every row and column of different dimensions, but the Grid component of the Material Ui library allows us to do so. We can use the Grid component of the Material UI as a container and item. Also, we can adjust the grid automatically according to the dimensions of the device screen. Users first need to install the Material Ui library to use the Grid component in the React project using the below command. ...

Read More

Check for the existence of key in an object using AngularJS

Aman Gupta
Aman Gupta
Updated on 07-Mar-2023 2K+ Views

Overview The existence of a key in an object can be checked using AngularJS. The key in an object is unique and cannot be duplicated. As object is a collection of different data types in Key-Value form, which contains String, Number type of data into a single reference variable. To check the existence of a key, we will use the "in" operator, which will check the object and return true or false. Syntax The syntax used in this problem is − if (key in objectName ) { action } else { action } ...

Read More

How to use Fab Component in Material UI?

Rushi Javiya
Rushi Javiya
Updated on 07-Mar-2023 845 Views

The fab component is a short form of the floating action button. You may have seen the floating action button in many Android applications at the bottom right corner. However, it's not fixed that you need to add the floating action button at the bottom right corner, but it is the most used place. Users can use the Fab component of Material UI to create floating action buttons with different icons. To start with the Material UI, execute the below command in the terminal in the React project directory. npm install @mui/material @emotion/react @emotion/styled Syntax Users can ...

Read More

How to Find a Lost Cell Phone?

Ankur Choudhury
Ankur Choudhury
Updated on 06-Mar-2023 892 Views

Cell phones are one of the most valuable assets of our life as they contain sensitive data such as pictures, videos, financial information, banking details, etc. The last thing you want to do is to let it fall into the wrong hands. However, thanks to advanced technology, tracking a smartphone is much easier than it used to be in the pre-GPS era. In this tutorial, we have listed down several methods that you can use to track a lost cell phone. Finding a Lost Android Phone If you lost your Android phone here is the methods explaining the step by ...

Read More

Find Number of Sorted Rows in a Matrix in Java?

Mr. Satyabrata
Mr. Satyabrata
Updated on 06-Mar-2023 575 Views

Matrices are nothing but a collection of data elements arranged in a rectangular layout that is two-dimensional. In Java, an array with two dimensions can be considered as a matrix. As per the problem statement the task is to count all the rows in a matrix that are sorted either in strictly increasing order or in strictly decreasing order. Let’s deep dive into this article, to know how it can be done by using Java programming language. To show you some instances Instance-1 Suppose the original matrix is{ { 5, 6, 7, 8 , ...

Read More

Find Minimum Elements in Each Row of Matrix in Java?

Mr. Satyabrata
Mr. Satyabrata
Updated on 06-Mar-2023 2K+ Views

In Java, Array is an object. It is a non-primitive data type which stores values of similar data type. The matrix in java is nothing but a multi-dimensional array which represents multiple rows and columns. As per the problem statement we have to find the minimum element present in every row of a given matrix of a multi-dimensional array. Let’s deep dive into this article, to know how it can be done by using Java programming language. To show you some instances Instance-1 Suppose the original matrix is = { {2, 3, 11, 4, 6}, ...

Read More

Are machine learning algorithm patentable?

Premansh Sharma
Premansh Sharma
Updated on 06-Mar-2023 921 Views

Introduction In all industries, artificial intelligence (AI) has emerged as the most important technological advancement in decades. Machine learning (ML) is becoming more and more popular, helping companies with anything from improving breast cancer detection to increasing ad conversion rates. By 2022, it is anticipated that the worldwide machine-learning market would be worth $8.8 billion. The criteria and restrictions of AI and machine learning software patents are of interest to businesses of all sizes, from massive IT organizations to lean startups. Nonetheless, confusion over the subject matter that can be patented is common and has been a focus of ...

Read More

Applied marketing science approach to machine learning explained

Premansh Sharma
Premansh Sharma
Updated on 06-Mar-2023 393 Views

Introduction Businesses may utilize marketing science as a crucial tool to better understand their target market and determine their marketing strategy. Contrarily, machine learning is a fast-expanding discipline that has the potential to completely change how businesses study and utilize data. The idea of integrating these two disciplines to develop an applied marketing science approach to machine learning has gained popularity in recent years. This post will define this strategy and discuss how it might enhance marketing results. What is the Applied Marketing Science Approach to Machine Learning? Utilizing cutting-edge statistical and computational methods, the applied marketing science approach ...

Read More

Check if a Matrix is Involutory or not in Java?

Mr. Satyabrata
Mr. Satyabrata
Updated on 06-Mar-2023 337 Views

Matrices are nothing but a collection of data elements arranged in a rectangular layout that is two-dimensional. In Java, an array with two dimensions can be considered as a matrix. Involutory matrix is a square matrix which when multiplied by itself, gives back an identity matrix. Identity matrix is a matrix in which all elements are zero except the diagonals which are one. Let’s deep dive into this article, to know how it can be done by using Java programming language. To show you some instances Instance-1 Suppose we have a matrix | 1 0 ...

Read More
Showing 40011–40020 of 61,297 articles
Advertisements