- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who

Updated on 27-Mar-2023 11:48:30
Using a credit card to open a door may seem like something out of a movie, but it is a common technique that can be used in various situations. There are several ways to open a door with a credit card, and each method requires a different skill and talent. Read this tutorial to learn the different ways to open doors with a credit card. Bypass the Lock Mechanism This technique works best on older lock systems that need robust security features. To use this method, you must insert the credit card between the door and the door frame and ... Read More 
Updated on 27-Mar-2023 11:47:55
What is B.Phil? B.Phil stands for Bachelor of Philosophy, which is an undergraduate academic degree program. The program provides a comprehensive understanding of the various fields of philosophy such as metaphysics, epistemology, ethics, logic, aesthetics, and political philosophy. The B.Phil program typically lasts for 3 to 4 years and is designed to equip students with critical thinking, analytical reasoning, and problem-solving skills that are highly valued in a wide range of professions such as law, journalism, education, business, and public service. Students are required to attend lectures, seminars, and tutorials, and to complete coursework, assignments, and research projects that develop ... Read More 
Updated on 27-Mar-2023 11:44:50
In Haskell, we can find Sum of N Numbers by using recursion, tail-recursion and fold-recursion. In the first example we are going to use base case, (sum_n [] = 0) and recursive case, (sum_n (x:xs) = x + sum_n xs)) and in second example, we are going to use, tail-recursion. And in the third example, we are going to use (sumOfN''' xs = foldr (+) 0 xs) function. Algorithm Step 1 − The recursive sum_n function is defined as, For example 1 − sum_n [] = 0 sum_n (x:xs) = x + sum_n xs. ... Read More 
Updated on 27-Mar-2023 11:43:58
In Haskell, we can find the Product of Two Numbers by using recursion along with recursive repeated addition. In the first example we are going to use (product' x y | y == 0 = 0 | y == 1 = x | otherwise = x + product' x (y-1)) function. And in the second example, we are going to use recursive repeated addition. Algorithm Step 1 − The recursive product’ function is defined as, For example 1 and 2 − product' x y | y == 0 = 0 ... Read More 
Updated on 27-Mar-2023 11:43:33
In Haskell, we can find Sum of Digits of a Number by using recursion along with mod, div and other helper functions. getCurrentTime and NominalDiffTime function. In the first example we are going to use (sumOfDigits n | n < 10 = n | otherwise = (n `mod` 10) + sumOfDigits (n `div` 10)) function. And in the second example, we are going to use helper function. Algorithm Step 1 − The recursive sumOfDigits function is defined as, For example 1 − sumOfDigits n | n < 10 = n ... Read More 
Updated on 27-Mar-2023 11:42:13
What is B.Pharma? B.Pharma or Bachelor of Pharmacy is an undergraduate academic degree program that focuses on the study of pharmaceutical sciences. It is a four-year program that is designed to prepare students for careers in the pharmaceutical industry, drug research and development, clinical pharmacy, and related fields. During the course of the program, students learn about the composition and effects of drugs, pharmaceutical chemistry, pharmacology, pharmaceutics, and pharmacognosy. The program also includes practical training in various aspects of pharmacy, such as drug manufacturing, quality control, and dispensing. After completing the B.Pharma program, graduates can work in various roles in ... Read More 
Updated on 27-Mar-2023 11:42:11
In Haskell, we can calculate the power by using recursion along with cases and also by using tail-recursion. In the first example we are going to use recursion along with base case, (power _ 0 = 1) and recursive case, (power x y = x * power x (y-1)). In the second example, we are going to use recursive cases as (power' x y | y == 0 = 1| otherwise = x * power' x (y-1)) and in third example, we are going to use tail-recursion. Algorithm Step 1 − The user defined recursive power function is defined ... Read More 
Updated on 27-Mar-2023 11:39:48
In Haskell, we can reverse a Sentence by using recursion along with concatenation and also by using list comprehension. In the first example we are going to use recursion along with base and recursive case and in the second example, we are going to use concatenation as ((last sentence) : reverseSentence (init sentence)) and in third example, we are going to use list comprehension as, reverseSentence s = [s !! i | i String reverseSentence [] = [] reverseSentence sentence = (last sentence) : reverseSentence (init sentence) main :: IO () main = do let ... Read More 
Updated on 27-Mar-2023 11:38:36
What is B.M? B.M. usually stands for Bachelor of Music, which is an undergraduate academic degree awarded to students who have completed a program of study in music at a college, university, or conservatory. The degree typically involves coursework in music theory, music history, music performance, and music education. The Bachelor of Music degree is designed to provide students with a strong foundation in the fundamentals of music and advanced training in a specific area of specialization such as vocal performance, instrumental performance, music education, or music composition. Eligibility The eligibility criteria for pursuing a Bachelor of Music (B.M.) degree ... Read More Advertisements