Tip 1 : Resume sholuld be concise
Tip 2 : Be well prepared with basics
Tip 1 : Don't lie
Tip 2 : Resume should be 1 page maximum
To test basic computer fundamentals. The quiz had 30 questions to be attempted in 25 minutes consisting of questions related to Data structures and algorithms, OOPS, OS, DBMS, and some questions to find the output of the Java Program.
Number of primitive data types in Java are?
Answer - 8
2 questions of coding of medium level



'str' = abcad and 'k' = 2.
We can see that the substrings {ab, bc, ca, ad} are the only substrings with 2 distinct characters.
Therefore, the answer will be 4.



If ‘A’ is 13(1101) and ‘B’ is 7(0111), The number of bits that should be flipped is 2(0111).
Questions were based on resume and DSA


Pattern:
ABCDDCBA
ABCCBA
ABBA
AA

‘S’ = “112”.
Output: [aab, al, kb]
The possible ways to convert the given strings is:
aab => a = 1, a = 1, b = 2,
al => a = 1, l = 12
kb => k = 11, b = 2
Hence, the final array is: [aab, al, kb].
Based on JAVA , OOPS and DSA



Suppose ‘A’ = “brute”, and ‘B’ = “groot”
The shortest supersequence will be “bgruoote”. As shown below, it contains both ‘A’ and ‘B’ as subsequences.
A A A A A
b g r u o o t e
B B B B B
It can be proved that the length of supersequence for this input cannot be less than 8. So the output will be bgruoote.



There will only be distinct characters in the given string.
Tell me about yourself.
Have you got offer from another organization?
Why do you want to join Walmart?
Tip 1 : Be confident
Tip 2 : Don't Lie

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?