Tip 1 : thorough understanding about basics
Tip 2 : write points
Tip 1 : simple and neet
Tip 2 : mentioned skills which I know



Input:
'a' = 8, 'b' = 5
Output:
5 8
Explanation:
Initially, the value of 'a' and 'b' is 8 and 5, respectively.
After swapping, the value of 'a' is 5, and the value of 'b' is 8.
ENTER x, y
PRINT x, y
x = x + y
y= x - y
x =x - y
PRINT x, y



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
for i <- 1 to indexOfLastUnsortedElement-1
if leftElement > rightElement
swap leftElement and rightElement



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
DEFINE String string = "Dream big"
DEFINE reversedStr = " "
SET i =string.length()-1. REPEAT STEP 5 to UNTIL i>=0
reversedStr = reversedStr + string.charAt(i)
i = i - 1
PRINT string.
PRINT reversedStr.



[Initialize counter variable. ] Set i = LB.
Repeat for i = LB to UB.
Apply process to arr[i]
HR asked about my self, my strength, weakness, aim, dream, why this company, salary.
Self introduction, Dream, Why HashedIn by Deloitte
Tip 1 : Be confident
Tip 2 : Don't argue with package if am fresher.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?