AmitDiwan has Published 10744 Articles

Difference Between Fuzzy Set and Crisp Set

AmitDiwan

AmitDiwan

Updated on 29-Apr-2021 06:17:54

7K+ Views

In this post, we will understand the difference between fuzzy set and crisp set −Fuzzy SetIt is understood using vague properties.Fuzzy set can have a progressive transition among many degrees of membership.They are generally used in fuzzy controllers.The elements have the ability to be partially included in the set.They are ... Read More

Difference Between Informed and Uninformed Search

AmitDiwan

AmitDiwan

Updated on 29-Apr-2021 06:15:33

10K+ Views

In this post, we will understand the difference between informed search and uninformed search −Informed SearchThey contain information on goal state.It helps search efficiently.The information is obtained by a function that helps estimate how close a current state is, to the goal state.Examples of informed search include greedy search and ... Read More

Difference Between ERP and CRM

AmitDiwan

AmitDiwan

Updated on 27-Apr-2021 07:00:16

265 Views

In this post, we will understand the difference between CRM and ERP −CRM (Customer Relationship Management)It is a computer software that helps companies record every transaction and interaction with the present and prospective customers.It is a subset.It was developed in 1990.It is generally utilized in front office activities.It helps focus ... Read More

Difference Between Waterfall Model and Spiral Model

AmitDiwan

AmitDiwan

Updated on 27-Apr-2021 06:44:17

4K+ Views

In this post, we will understand the difference between waterfall model and spiral model −Waterfall ModelIt works in sequential method.The errors and risks are identified and rectified after the stages are completed.It is generally used by customers.It can be used with small projects.The requirements and early stage planning is important ... Read More

Difference Between Manual and Automated Testing

AmitDiwan

AmitDiwan

Updated on 27-Apr-2021 06:36:24

496 Views

In this post, we will understand the difference between manual and automated testing −Automation TestingIt uses automation tools to execute the test cases.It is fast in comparison to a manual approach.It doesn’t allow random testing to be performed.The initial investment is high.The return on investment is better in the long ... Read More

Difference Between Test Plan and Test Strategy

AmitDiwan

AmitDiwan

Updated on 27-Apr-2021 06:31:43

500 Views

In this post, we will understand the difference between test plan and test strategy −Test PlanIt is a document prepared for a software project that defines the approach, scope, and intensity required for software testing.It can be changed.It happens independently.It describes the details.It is only done by the test administrator ... Read More

Regrouping characters of a string in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Apr-2021 10:35:22

153 Views

ProblemWe are required to write a JavaScript function that takes in a string str as the first and the only argument.The string str can contain three types of characters −English alphabets: (A-Z), (a-z)Numerals: 0-9Special Characters − All other remaining charactersOur function should iterate through this string and construct an array ... Read More

Maximum average of a specific length of subarray in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Apr-2021 10:34:13

146 Views

ProblemWe are required to write a JavaScript function that takes in an array of integers, arr, as the first argument and a number, num, as the second argument.Our function should find the contiguous subarray of given length num that has the maximum average value. And we need to output the ... Read More

Finding longest consecutive joins in JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Apr-2021 10:33:48

144 Views

ProblemWe are required to write a JavaScript function that takes in an array of pairs of numbers, arr, as the first and the only argument. In every pair, the first number is always smaller than the second number.Now, we define a pair (c, d) that can follow another pair (a, ... Read More

Finding two closest elements to a specific number in an array using JavaScript

AmitDiwan

AmitDiwan

Updated on 24-Apr-2021 10:33:16

799 Views

ProblemWe are required to write a JavaScript function that takes in an array of sorted integers, arr, as the first argument and a target number, as the second argument.Our function should return an array of exactly two numbers that exists in the array arr and are closest to target. The ... Read More

Advertisements