0% found this document useful (0 votes)
56 views

Next-Wave Reference Docs

The document provides guidance on preparing for and participating in a job interview, including sample questions. It lists topics like resume preparation, effective communication, and answering non-technical questions. It also includes Python coding problems and exercises for finding common substrings between two strings.

Uploaded by

sai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views

Next-Wave Reference Docs

The document provides guidance on preparing for and participating in a job interview, including sample questions. It lists topics like resume preparation, effective communication, and answering non-technical questions. It also includes Python coding problems and exercises for finding common substrings between two strings.

Uploaded by

sai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Reference Document - Interview Questions

*Doing Mirror Practice/Self-assessment of all the enlisted questions will increase the
possibility of the candidate clearing the Company interview easily. This is just a practice
pattern and a list of practice questions.
Reach out to the placement support team for any further support.
All the best!
Sessions
1. Resume - Link
2. Interview Mindset - Link
3. Interview Preparation Part 1 - Link
4. Interview Preparation Part 2 - Link
5. Effective communication - Link
6. Do’s and Don'ts in an interview - Link
7. How to answer non-technical questions- Link
8. Project Explanation - Link

Python Coding

1. Write a code to get the output as per the given Input

a. Test case-1
INPUT : ABDEF
OUTPUT : GEFCB

b. Test case-2
INPUT : XTD
OUTPUT : EUY

2. Write a logic and solve the problem


a. Input : xtd
b. Output : euy
3. Pattern Printing

a. Input: 1
Output:
1
1,2,1
1

b. Input: 2
Output:
1
2,4,2
1

c. Input: 3
Output:
1
1,2,1
1,2,3,2,1
1,2,3,4,3,2,1
1,2,3,2,1
1,2,1
1

d. Input: 4
Output:
1
1,2,1
1,2,3,2,1
2,4,6,8,6,4,2
1,2,3,2,1
1,2,1
1
4. Use the below inputs and solve the Problem

Ex: 1: Input number - 6 (The pattern should include all the numbers till 6^2 = 36)
01 02 03 04 05 06
12 11 10 09 08 07
13 14 15 16 17 18
24 23 22 21 20 19
25 26 27 28 29 30
36 35 34 33 32 31

Ex:1 - Input-1: "gogle"


Input-2: "oglen"

Output: "ogle"

Ex:2 - Input-1: "fluffy"


Input-2: "flutter"

Output: "flu"

Ex:3 - Input-1: "ornithologist"


Input-2: "gynecologist"

Output: "ologist"

Ex:4 - Input-1: "Luggage"


Input-2: "Baggage"

Output: "ggage"
Ex:5 - Input-1:"Fine"
Input-2:"Fire"

output:Fi
Ex-6 - Input-1:"Trouble"
Input-2:"Double"

Output:"ouble"
5Use the given inputs and solve the Problems

Ex-Input-1: gogle Input-2: "oglen

Output: "ogle

Ex:2-Input-1: "fluffy

Input-2 "flutter"

Output: "flu"

Ex:3-Input-1: ornithologist" Input-2: gynecologist

Output "ologist

Ex:4-Input-1: "Luggage" Input-2: "Baggage"

Output: "ggage"

You might also like