Tip 1 : Be confident while giving the answers during the interview.
Tip 2 : Do more practice of problem solving techniques.
Tip 1 : Do not make your resume too lengthy.
Tip 2 : Have some projects on your resume.
Tip 3 : Do not put false things on your resume.
It was a technical round related to SAS Technology.
The interviewer was a technically sound personality.



1. There will be no leading zeros in any string in the list ‘BINARYNUMS’.
Consider N = 5 and the list ‘binaryNums’= [“0”, “01”, “010”, “100”, “101”]. This list consists of the binary representation of numbers [0, 1, 2, 4, 5]. Clearly, the missing number is 3 and its binary representation will be “11”. So you should return string “11”.
Step 1 : Create an array of numeric columns in a dataset.
Step 2 : Apply a Do loop from 1 to the length of an array.
Step 3 : For each column value, check if it is a missing value. If yes, then replace it by 0 value.
Step 4 : End of Do loop.



Input: 'N' = 2, 'M' = 3, 'MAT' = [[1, 2, 3], [2, 0, 0]]
Output: 6
The weight of first row is 1 + 2 + 3 = 6
The weight of the second row is 2 + 0 + 0 = 2; hence the answer will be a maximum of 2 and 6, which is 6.
Step 1 : Apply a call symput function inside a data step.
Step 2 : Inside a call symput function assign the _n_ value into a macro variable.
Step 3 : At the last iteration of a detastep _n_ will have the last row number which will be assigned to a macro variable.
It was related to a DBMS related query.
What are the different types of joining conditions in a Teradata Database?
Tip 1 : Please refer to online sites or books to identify the different joining conditions in the Teradata Database.
It was an HR round.
All the queries were related to previous work experience, salary discussion, notice period, etc.
What is a notice period in your company and is it negotiable?
Tip 1 : Always speak the truth in front of HR.
What is your current salary package and what is your expectation?
Tip 1 : Always be frank while discussing your salary package related query.

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?