Question { 11307 }
A string of charaters were given. Find the highest
occurance of a character and display that character.
eg.: INPUT: AEGBCNAVNEETGUPTAEDAGPE
OUTPUT: E
Answer
Is This Answer Correct ? | 21 Yes | 1 No |
Write a program that takes a 3 digit number n and finds out
whether
the number 2^n + 1 is prime, or if it is not prime find out its
factors.
Answer
Is This Answer Correct ? | 16 Yes | 6 No |
c# coding for a program that takes a 3 digit number n and
finds out whether the number 2^n + 1 is prime, or if it is
not prime find out its factors not using the Big-integer
and Exponential Function's.
Answer
Is This Answer Correct ? | 5 Yes | 4 No |