How to See Blocked People on Facebook
Want to find all the people you’ve blocked in your Facebook account? If so, Facebook keeps a tidy list of all your blocked users, which you can access and use to unblock a user if you want.
[mai mult...]Soluții pentru problemele tale IT
Want to find all the people you’ve blocked in your Facebook account? If so, Facebook keeps a tidy list of all your blocked users, which you can access and use to unblock a user if you want.
[mai mult...]PDF is one of the most secure and reliable file formats to share your work with people. You can even increase its security by encrypting it with a password to prevent unauthorized access. You can create and secure your own PDF file with the help of Microsoft’s in-built features that come pre-installed with the Office Suite. With the help of Microsoft Word, you can create a PDF file and encrypt it by adding a password to it.
[mai mult...]Given a number n, find whether all digits of n divide it or not.
Examples:
Input : 128 Output : Yes 128 % 1 == 0, 128 % 2 == 0, and 128 % 8 == 0. Input : 130 Output : No
We want to test whether each digit is non-zero and divides the number. For example, with 128, we want to test d != 0 && 128 % d == 0 for d = 1, 2, 8. To do that, we need to iterate over each digit of the number.
[mai mult...]Given A and B, the task is to find the number of possible values that X can take such that the given modular equation (A mod X) = B holds good. Here, X is also called a solution of the modular equation.
Examples:
Input : A = 26, B = 2
Output : 6
Explanation
X can be equal to any of {3, 4, 6, 8,
12, 24} as A modulus any of these values
equals 2 i. e., (26 mod 3) = (26 mod 4)
= (26 mod 6) = (26 mod 8) =Output:2
Input : 21 5
Output : 2
Explanation
X can be equal to any of {8, 16} as A modulus
any of these values equals 5 i.e. (21 mod
8) = (21 mod 16) = 5
[mai mult...] Given a decimal number N, the task is to check if a number has consecutive zeroes or not after converting the number to its K-based notation.
Examples:
Input: N = 4, K = 2
Output: No
4 in base 2 is 100, As there are consecutive 2 thus the answer is No.
Input: N = 15, K = 8
Output: Yes
15 in base 8 is 17, As there are no consecutive 0 so the answer is Yes.
Conjecture: A conjecture is a proposition or conclusion based upon incompleate information to which no proof has been found i.e it has not been proved or disproved.
Mathematically,
there is always one prime p in the range to
where n is any natural number.
for examples:
2 and 3 are the primes in the range to
.
5 and 7 are the primes in the range to
.
11 and 13 are the primes in the range to
.
17 and 19 are the primes in the range to
.