How to Memorize BABOK

Prita Roy
Updated on 09-Dec-2022 10:47:01

441 Views

BABoK, or Business Analysis Body of Knowledge, is a prime subject for business analyst students. The book contains 50 techniques to learn how to do business analysis under several critical situations. Primarily, the book is the practical guide for the practice and the last word to learn analysis techniques in almost all ways. What is BABoK? Business Analysis Body of Knowledge has undergone several versions in its previous history, and today we will talk about its v3 version. The book contains all the practiced methods and techniques, which are elaborately described. International Institute of Business Analysis (IIBM), Canada, published ... Read More

Check Whether a Number is a Tech Number in Java

Mr. Satyabrata
Updated on 09-Dec-2022 10:27:19

8K+ Views

A number is said to be a tech number, when an even digit number is divided into exactly two parts and the square value of the sum of those two numbers is equal to the original number. For more clarification, we take a number which has even digits. After that, divide it into two parts and add two parts. After getting the sum value, we calculate the square of it. Now we compare both the calculated square value and the original/input number. If both are same then we can say that the input number is a tech number otherwise ... Read More

Check Whether a Number is Tcefrep Number in Java

Mr. Satyabrata
Updated on 09-Dec-2022 10:24:06

564 Views

A number is said to be a Tcefrep number, if the reverse of that number is equal to the sum of the proper divisors of the original number. For more clarification, we find the sum of the divisors of a number and find the reverse of the original number. If both the sum value and the reverse of the given number are the same then we can say that the given number is a Tcefrep number. Some examples of Tcefrep numbers are: 6, 498906, 20671542 ... etc. In this article, we will see how to check if a ... Read More

Check Whether a Number is Strontio Number in Java

Mr. Satyabrata
Updated on 09-Dec-2022 10:19:14

3K+ Views

A number is said to be a Strontio number, if we multiply 2 with a four-digit number then in the resultant number the tens place and hundreds place digits are the same. In simple terms, Strontio numbers are basically four-digit numbers. When we multiply 2 with it, it results in a number whose tens place and hundred places are exactly the same. Some examples of Strontio numbers are- 1111, 2222, 3333, 4444, 5555, 6666, 7777, 8888, 9999, 1001 ... etc. In this article, we will see how to check if a number is a strontio number by using Java ... Read More

Get Weekday as a Number in JavaScript

Lokesh Yadav
Updated on 09-Dec-2022 10:19:11

4K+ Views

In this article, we are going learn about the weekday as a number in JavaScript with appropriate examples. To get the weekday as a number, JavaScript has provided getDay() method. The getDay() is a method from Date object. The getDay() method returns a value between 0 to 6. For example, Sunday = 0, Monday =1, Tuesday =2, Wednesday = 3 and so on. To get a better understanding, let’s look into the syntax and usage of getDay() method in JavaScript. Syntax The syntax for getDay() method is − dateObject.getDay(); Where, dateObject is an object created from date. This method ... Read More

Merge Sort vs Quick Sort in JavaScript

Lokesh Yadav
Updated on 09-Dec-2022 10:17:35

694 Views

In this article, we are going to discuss about the differences between merge sort and quick sort in JavaScript with appropriate examples. Merge sort and Quick sort are used to sort the elements, but the approach is different. Both Merge sort and quick sort are based on Divide and Conquer Strategy. Merge sort It is a stable sorting algorithm. In the merge sort, it follows a recursive approach that repeatedly splits the array into half until no more division is possible i.e., the array either remains empty or has a single element. Then by comparing the two small array elements ... Read More

Check Whether a Number is a Pointer Prime Number in Java

Mr. Satyabrata
Updated on 09-Dec-2022 10:17:02

902 Views

A number is said to be a pointer prime number, if the sum of the product value of digits and the original prime number results in the next prime number. For more clarification, we take a prime number and multiply the digits with each other and add that multiplication value with the original number. After that if we get another prime number which is next to the original prime number. Then we can say that the number is a pointer prime number. Some examples of pointer prime numbers are: 23, 61, 1123, 1231 ... etc. In this article, ... Read More

D vs D in JavaScript

Lokesh Yadav
Updated on 09-Dec-2022 10:16:12

3K+ Views

This article discusses about \d vs\ D in JavaScript regex. The \d and \D meta characters are used to match the characters of a given string. \d and \D are different from each other. \d (character) is equivalent to [0-9] that means it matches any single number. The characters that are not matched by the \d are matched by the \D. \D is equivalent to [^0-9] that means it matches any character other than number. Both \d and \D are completely inverse to each other. To match a string with a pattern, the possible methods are: string.match(pattern), string.search(pattern), pattern.exec(string), pattern.test(text). ... Read More

w vs W in JavaScript Regex

Lokesh Yadav
Updated on 09-Dec-2022 10:13:21

4K+ Views

This article discusses about the \w vs \W in JavaScript regex. The \w and \W meta characters are used to match the characters of a given string. \w and \W are different from each other. \w (character) is equivalent to [a-zA-Z0-9_] that means it matches any single letter, number, or underscore. The characters that are not matched by the \w are matched by the \W. \W is equivalent to [^a-zA-Z0-9_] that means it matches any character other than letter, number and underscore. To match a string with a pattern, the possible methods are: string.match(pattern), string.search(pattern), pattern.exec(string), pattern.test(text). We use match ... Read More

Super Keyword in JavaScript

Lokesh Yadav
Updated on 09-Dec-2022 10:09:56

1K+ Views

In this article, we are going to discuss about the super keyword in JavaScript with suitable examples. The Super keyword is basically used in Object Oriented Programming. The Super keyword is used to call parameters and functions of an object’s parent. There are times a parent class and sub class can have same method names and parameter names. In those case, to avoid confusion between the parent class and sub class method names or parameter names, super keyword is used. In order to use a Super keyword, the child method must extend the parent class method. Syntax The syntax to ... Read More

Advertisements