CodingHuman #Coding_Help , All exam codes, Coding solutions, accenture TCS Wipro Nagarro Persistent Cisco
588 subscribers
136 photos
310 links
We Provide free material, Coding stuff, Placement material, Handwritten Notes, previous year company questions, Job updates and many more.
Conding help.
Download Telegram
How Much SALARY Do You Expect?

As a fresher, My 1st priority is to gain knowledge enhance my skills to be more productive for the company & also I need to become financially independent.

So, I will accept what you offered as per the company norms which will fulfill my economical needs.

Telegram - https://t.me/Coding_human
1)240
2)78
3)
5- mother in law
7- 27 may Thursday cooking
9- only conclusion 2 3 and 4 follows
10-Both A and R are true and R is the correct explanation of A

Telegram - https://t.me/Coding_human
Some codes are already in the channel/group, you can search the code by their names.
What are your strengths and weaknesses?

My strength is I am self-motivated, I can adjust myself to any environment, I don't wait for the deadline, I finish my work before the deadline.

My weakness is I just can't keep any work pending. I wanted to complete my work on time, otherwisw it Disturbs my routine also.

Telegram - https://t.me/Coding_human
What is the difference between confidence and over confidence?

I can do it because I am well prepared, this is confidence & I can do it easily and I don't need to prepare, this is overconfidence.

Telegram - https://t.me/Coding_human
def countPalin(str):
count = 0

# splitting each word as spaces as
# delimiter and storing it into a list
listOfWords = str.split(" ")

# Iterating every element from list
# and checking if it is a palindrome.
for elements in listOfWords:
if (checkPalin(elements)):

# if the word is a palindrome
# increment the count.
count += 1
print (count)

# Driver code
countPalin("Madam Arora teaches malayalam")
countPalin("Nitin speaks malayalam")

Python
Palindrome count
Telegram - https://t.me/Coding_human
n=input()
m=input()

if m in n:
print("yes")

else:
print("No")

Python
String within String Code
Telegram https://t.me/Coding_human
n = int(input())
A = int(input())
A1 = []
A2= []
A3= []
ans = 0
https://t.me/Coding_human

for i in range(n):
A1.append(int(input()))
for j in range(n):
A2.append(int(input()))
for k in range(n):
A2.append([p[k], b[k]])
a.sort()
for z in a:
if a[0] > N:
break
N += a[1]
ans += 1
print(ans)


Try this code for this question... Python 3

Telegram:-https://t.me/Coding_human
https://t.me/infosys_sp_dsp_all_code
Guys ❤️

Infosys Exam on 29/7/22 , 30/7/22,31/07/22

Telegram:- https://t.me/infosys_sp_dsp_all_code
https://t.me/Coding_human

Note : Some codes are already in the channel/group, you can search the code by their names.
C++



Telegram:- https://t.me/infosys_sp_dsp_all_code
https://t.me/Coding_human

Note : Some codes are already in the channel/group, you can search the code by their names.
Number Of Subsequences Code For Infosys

int A[] = {10,13,7,8,14,11};
int n = 6;

int memo[6];//initialized with -1s;

int count(int currIndex){
if (currIndex == n-1) return 1;
if (memo[currIndex] != -1) return memo[currIndex];

int res = 0;
for (int i=currIndex+1 ; i<n ; i++){
if (abss(A[currIndex] - A[i]) <= 3){
res += count(i);
}
}

memo[currIndex] = res;
return res;
}


c++

Telegram:- https://t.me/Coding_human
Guys ❤️

Infosys Exam on 29/7/22 , 30/7/22,31/07/22

Telegram:- https://t.me/infosys_sp_dsp_all_code
https://t.me/Coding_human

Note : Some codes are already in the channel/group, you can search the code by their names.
// Infosys
// N flowers on a Recatangular pana
int ans = 100000000;
void solve(vector<int> a, int n, int k, int index, int sum,
int maxsum)
{
if (k == 1)
{
maxsum = max(maxsum, sum);
sum = 0;
for (int i = index; i < n; i++)
{
sum += a[i];
}
maxsum = max(maxsum, sum);
ans = min(ans, maxsum);
return;
}
sum = 0;
for (int i = index; i < n; i++)
{
sum += a[i];
maxsum = max(maxsum, sum);
solve(a, n, k - 1, i + 1, sum, maxsum);
}
}
int GetMaxBeauty(int N, int K, vector<int> A)
{

solve(A, N, K, 0, 0, 0);
return ans;
}


Telegram:- https://t.me/Coding_human
class CountOccurrences {
public static void main(String[] args) {
String str = "aabbccd";
char a[]=str.toCharArray();
int cnt = 0;

for (int i = 0; i < a.length; i++) {
for (int j = i + 1; j < a.length; j++)
{
if ((a[i] == a[j])) {
cnt++;
}

}
}
System.out.println(cnt);
}
}

Java

Telegram:-https://t.me/Coding_human
Guys ❤️

Infosys Exam on 29/7/22 , 30/7/22,31/07/22

Telegram:- https://t.me/infosys_sp_dsp_all_code
https://t.me/Coding_human

Note : Some codes are already in the channel/group, you can search the code by their names.