0% found this document useful (0 votes)
13 views3 pages

Replace All 0'S With 1 in A Given Integer Testcase 1: Input: 706120678 Output: 716121678

The document outlines a series of questions related to project discussions, data structures, coding challenges, MySQL problems, and HR interview questions. It includes inquiries about project roles, challenges, data structure concepts, coding tasks, and common HR interview topics. The content serves as a comprehensive guide for preparing for technical interviews and assessments.

Uploaded by

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

Replace All 0'S With 1 in A Given Integer Testcase 1: Input: 706120678 Output: 716121678

The document outlines a series of questions related to project discussions, data structures, coding challenges, MySQL problems, and HR interview questions. It includes inquiries about project roles, challenges, data structure concepts, coding tasks, and common HR interview topics. The content serves as a comprehensive guide for preparing for technical interviews and assessments.

Uploaded by

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

PROJECT RELATED QUESTION ( any 5)

1. Explain your project

2. Was it group project or individual?

3. What was your role in the project?

4. Why you were not leader of the project?

5. Challenges you faced during the project ?

6. What make your project unique from the already existing project?

7. Improvement in the future for the present system ?

DSA Question ( any 5)

1. What are data structure

2. what are linear and non-linear data structure

3.Explain stack DS and its application

4. What is hash map in DS

5. What is difference between array and linkedlist DS

6. Time complexity required for converting the single linked list to doubly linked list

7. Who can we implement the stack using queue

8. Type of operation we can perform using queue

( enqueue , dequeue , isEmpty , rear , front , size)

9. Type of operation we can perform using stack

( push , pop , top , isEmpty , size)

Coding :

1. Replace all 0’s with 1 in a given integer

TestCase 1 : input : 706120678 Output : 716121678


2. Occurrence of a digit in a given number
Testcase 1 : num1 = 898989 num2 = 9

Output : 3

TestCase 2: num1=123456 num2=0

Output : 0

3. Find maximum product sub-array in a given array :

Testcase 1: { 10 , -20 , -30 , 0 ,70 , -80 , -20}

Output : 112000

TestCase 2:

4. Capitalize the first and last character of each word of a string

TestCase 1: maximum product sub array

Output: MaximuM ProducT SuB ArraY

5. Move all the negative elements to one side of the array

TestCase 1: { -1 , 0 , 3, 1 , -4}

Output : {-1 , -2, 4, 2, 2}

7. Missing first integer from array

Input: { 2, -3 ,-1 ,5 , 6}

Input : { 1,2,3,4,5}

Input: {-1 ,0 , 2, 3, 5}

Input: { -12, 11, -13, -5, 6, -7, 5, -3, -6}


Output:{ -12, -13, -5, -7, -3, -6, 11, 6, 5}
8. Count word in sentence

9.Remove consecutive duplicate in string

Input : aaabbbccddefghhhh  abcdefgh


(HARD)

6. Find all pairs on integer array whose sum is equal to given number

TestCase-1: arr={ 1, 5, 7, -1} sum=6

Output : (1,5) and (7,-1)

TestCase-2 : arr={1,5,7,-1,-3,9} sum=6

Output : (1,5) (-3 ,9) (7,-1)

MYSQL

1. https://leetcode.com/problems/combine-two-tables/

2. https://leetcode.com/problems/duplicate-emails/

3. https://leetcode.com/problems/find-followers-count/

4. https://leetcode.com/problems/big-countries/

HR

1. Why should we hire you ?

2. What are your weakness and strength

3. What are your long term goals?

You might also like