Flutter Key Questions

Sure, here are some important questions related to Flutter, a popular open-source UI software development toolkit created by Google: What is Flutter and how does it differ from other frameworks? What is Dart and why is it used with Flutter? Dart extension methods. What are mixins in Dart, and how are they used? How Flutter […]

person shubham sharmaaccess_time September 15, 2023launch Read More

Type of problem can be solved by ML

Machine learning (ML) can solve a wide variety of problems, including: Classification: This is the task of assigning a category to an input. For example, a machine learning model could be trained to classify images of animals into different categories, such as cats, dogs, and horses. Regression: This is the task of predicting a continuous […]

person shubham sharmaaccess_time September 5, 2023launch Read More

Types of Machine learning

There are four main types of machine learning: supervised learning, unsupervised learning, semi-supervised learning, and reinforcement learning. Supervised learning is the most common type of machine learning. In supervised learning, the machine is given a set of labeled data, where each data point has a known output. The machine then learns to map the input […]

person shubham sharmaaccess_time September 5, 2023launch Read More

Components of AI

The components of AI are the different techniques and technologies that are used to create intelligent machines. Some of the most important components of AI include: Machine learning: Machine learning is a type of AI that allows machines to learn without being explicitly programmed. This is done by feeding the machine data and allowing it […]

person shubham sharmaaccess_time September 5, 2023launch Read More

Types of AI

There are many different types of artificial intelligence (AI), but they can be broadly categorized into two main types: Weak AI (also known as narrow AI) is a type of AI that can only perform specific tasks. For example, a weak AI might be able to play chess or translate languages. Strong AI (also known […]

person shubham sharmaaccess_time September 5, 2023launch Read More

Random technical terms

Object LiteralDebounceDesign PatternGuard StatementTuple Coupling Tight coupling : In general, Tight coupling means the two classes often change together. In other words, if A knows more than it should about the way in which B was implemented, then A and B are tightly coupled. Loose coupling : In simple words, loose coupling means they are […]

person shubham sharmaaccess_time April 20, 2022launch Read More

JavaScript The Event Loop

JavaScript is single threaded. so it needs event loop to run asynchronous (Multi Thread) code. JavaScript first runs synchronous code, then it queue asynchronous code to call later. Asynchronous code is called/executed by event loop. System/Browser takes synchronous code and put them as tasks. then these tasks are put them into queue. The Event Loop […]

person shubham sharmaaccess_time March 26, 2022launch Read More