https://www.raajrani.com/babynames/60706
iven, iven name meaning, , নামের অর্থ, নামের অর্থ কি, bretons babyname, bretons girl name, little archer, boy, baby, baby names, babyname, babynames, girls name...
https://www.raajrani.com/babynames/9289
iven, iven name meaning, , নামের অর্থ, নামের অর্থ কি, christianity babyname, christianity girl name, little archer, boy, baby, baby names, babyname, babynames, ...
https://www.raajrani.com/fonts/download/aliveness
Font: Aliveness by Andi Moz. File type: .otf. Available for Desktop: yes, Website: yes, Ebook/PDF: yes, Application: yes.
https://www.raajrani.com/question-answer/q/how-do-you-find-all-prime-numbers-up-to-a-given-number
Write a program using two nested for loops.
The first for loop is used to loop between the numbers provided by the user. For example, 2 to 10.
A variable flag is set to 0.
The second for loop is...
https://www.raajrani.com/question-answer/q/how-do-you-perform-a-binary-search-in-a-given-array
Begin with an interval covering the whole array.
If the value of the search key is less than the item in the middle of the interval, narrow the interval to the lower half.
Otherwise, narrow it to th...
https://www.raajrani.com/question-answer/q/how-do-you-count-the-number-of-leaf-nodes-in-a-given-binary-tree
1) If the node is NULL then return 0.
2) Else If left and right child nodes are NULL return 1.
3) Else recursively calculate leaf count of the tree using the formula below.
Leaf count of a tr...
https://www.raajrani.com/question-answer/q/how-do-you-perform-preorder-traversal-in-a-given-binary-tree
Trees can be traversed in multiple ways:
Depth-first traversal:
(a) Inorder (Left, Root, Right) : 4 2 5 1 3
(b) Preorder (Root, Left, Right) : 1 2 4 5 3
(c) Postorder (Left, Right, Roo...
https://www.raajrani.com/question-answer/q/how-do-you-find-all-of-the-pairs-in-an-array-of-integers-whose-sum-is-equal-to-the-given-number
Traverse each element and check if there’s another number in the array which can be added to it to yield sum.
https://www.raajrani.com/question-answer/q/what-is-the-best-way-to-find-the-first-non-repeated-character-of-a-given-string
A character is non-repeating if its frequency in the string is a unit. To find such characters, find the frequency of all characters in the string and check which character has a unit frequency. This ...
https://www.raajrani.com/question-answer/q/write-a-function-to-find-out-the-longest-palindrome-in-a-given-string
Maintain a variable ‘ maxLength = 1 ‘ (for storing LPS length) and ‘ start =0 ‘ (for storing starting index of LPS).
If the idea is very simple, we will traverse through the entire string wit...