n=int(input())
bi=bin(n)
bi=int(bi[2:])
x=[]
// Solved By Pappu Career Guide
while(bi>0):
x.append(bi%10)
bi//=10
a=x.count(1)
b=x.index(1)
x.reverse()
c=len(x)-x.index(1)-1
print(a,b,c,sep="#")
In C
Coming Soon.....
https://t.me/techmahindra2021crack
3. Frequency Count Question with Solution: Frequency Count In C++
#include <bits/stdc++.h>
using namespace std;
string helper(string s)
// Solved By Pappu Kumar (Coder Guy)
{
int arr[26]={0}; // there are 26 alphabets
in the english char
for(int i=0;i<s.length();i++) // loop through
the input string
{
arr[s[i]-97]++; //
to come back with the 0 position
}
string result="";
for(int i=0;i<26;i++) // for character
count with loop
{
if(arr[i]>0) // if char is present
{
char ch = 97+i; // add the value of
ASCII value of i = 1 - taking b
result+=ch;
result+=to_string(arr[i]);
}
}
return result;
}
int main() {
string s;
cin>>s;
cout<<helper(s);
return 0;
}
In Python
Coming Soon.....
In C
Coming Soon.....
4. Caesar Cipher Question with Solution: Caesar Cipher In C++
#include <bits/stdc++.h>
using namespace std;
// Solved By Pappu Kumar (Coder Guy)
string helper(string s)
{
string result = ""; // answer store string
for(int i=0;i<s.length();i++) // loop through
the input string
{
char ch = char((s[i] + 3 - 97)%26 + 97);
result+=ch;
}
return result;
}
int main() {
string s;
cin>>s;
cout<<helper(s);
return 0;
}
In C
Coming Soon.....
In Python
Coming Soon.....
https://t.me/placemate
5. Number of Decodings
The solution in Python:
def numDecodings(s):
if not s:
return 0
dp = [0 for x in range(len(s) + 1)]
# base case initialization
dp[0] = 1
dp[1] = 0 if s[0] == "0" else 1 #(1)
for i in range(2, len(s) + 1):
# One step jump
if 0 < int(s[i-1:i]) <= 9: #(2)
dp[i] += dp[i - 1]
# Two step jump
if 10 <= int(s[i-2:i]) <= 26: #(3)
dp[i] += dp[i - 2]
return dp[len(s)]
https://t.me/techmahindra2021crack
s=input()
print(numDecodings(s))
In C
Coming Soon.....
In c++
Coming Soon.....
6. Longest Common Subsequence
// Solved By Pappu Career Guide
#include <bits/stdc++.h>
using namespace std;
string helper(string s1 , string s2)
{
https://t.me/freshersoffcampjobs
int dp[s1.length()+1][s2.length()+1];
https://t.me/placemate
for(int i=0;i<=s1.length();i++)
{
for(int j=0;j<s2.length();j++)
{
dp[i][j]=0;
}
}
https://t.me/freshersoffcampjobs
for(int i=1;i<=s1.length();i++)
{
for(int j=1;j<=s2.length();j++)
{
if(s1[i-1]==s2[j-1])
{
dp[i][j]=1+dp[i-1][j-1];
}
else
{
dp[i][j]=max(dp[i-1][j],dp[i][j-1]);
}
}
}
return dp[s1.length()][s2.length()];
}
int main() {
string s1;
string s2;
cin>>s1>>s2;
cout<<helper(s1,s2);
https://t.me/freshersoffcampjobs
return 0;
}
7. Numbers Puzzles Solution in C
// Solved By Pappu Career Guide
#include<stdio.h>
#include <stdlib.h>
void swap(int *x, int *y){
int temp;
temp = *x;
*x = *y;
*y = temp;
}
void BubbleSort( int arr[], int n ){
int i, j;
for(i=0;i<n-1;i++){
for (j = 0; j < n-i-1; j++){
if (arr[j] > arr[j+1]){
swap(&arr[j], &arr[j+1]);
}
}
}
}
int Display(int arr[], int n){
int i;
for(i=0;i<n;i++){
printf("%d \n", arr[i]);
}
}
https://t.me/freshersoffcampjobs
int AbsValue(int arr[],int n){
int sum=0;
for(int i=n-1;i>0;--i){
sum += abs(arr[i]-arr[i-1]);
}
printf("%d",sum);
}
int main(){
int arr[] = {3,2,1};
int n = sizeof(arr) / sizeof(arr[0]);
BubbleSort(arr, n);
//Display(arr,n);
AbsValue(arr,n);
}
8. Longest Increasing Subsequence Solution in Python
// Solved By Pappu Career Guide
https://t.me/freshersoffcampjobs 9. Moving Apples
https://t.me/techmahindra2021crack 10. inFixToPostFix Solution in Python
def inFixToPostFix():
inFix = '3*(x+1)-2/2'
postFix = ''
s = Stack()
for c in inFix:
# if elif chain for anything that c can be
if c in "0123456789x":
postFix += c
elif c in "+-":
if s.isEmpty():
s.push(c)
elif s.top() =='(':
s.push(c)
elif c in "*/":
if s.isEmpty():
s.push(c)
elif s.top() in "+-(":
s.push(c)
elif c == "(":
s.push(c)
elif c == ")":
while s.top() is not '(':
postFix += s.pop()
s.pop()
else:
print("Error")
print(postFix)
return postFix
https://t.me/techmahindra2021crack
pappu5
11. Penalty Solution in C++
// Solved By Pappu Career Guide
#include <bits/stdc++.h>
using namespace std;
int helper(int n, int arr[])
{
int penalty = 0;
sort(arr, arr+n); // inbuild method foro sort the array
for(int i=1;i<n;i++) // look through all the element in the array
{
penalty+=abs(arr[i]-arr[i-1]); // adding the adjecent element in a penalty variables
}
return penalty;
}
int main() {
int n;
cin>>n;
int arr[n];
for(int i=0;i<n;i++)
{
cin>>arr[i];
}
cout<<helper(n, arr);
return 0;
https://t.me/techmahindra2021crack
}
12. Euler’s Totient Function in C++
// Solved By Pappu Career Guide
#include <stdio.h>
int gcd(int a, int b)
{
if (a == 0)
return b;
return gcd(b % a, a);
}
int phi(unsigned int n)
{
unsigned int result = 1;
for (int i = 2; i < n; i++)
if (gcd(i, n) == 1)
result++;
return result;
}
int main()
{
int n;
for (n = 1; n <= 10; n++)
printf("phi(%d) = %d\n", n, phi(n));
return 0;
}
pappu4
13. Next Number Generator in C++
// Solved By Pappu Career Guide
14. Next Number Element in C++
// Solved By Pappu Career Guide
15. Maximu Subarray in C++
// Solved By Pappu Career Guide
16. Minimise a String in C++
// Solved By Pappu Career Guide
17. Dubai Airport in C++
// Solved By Pappu Career Guide
18. Possible Decodings in C++
// Solved By Pappu Career Guide
19. Longest Decreasing Subsequence in C++
// Solved By Pappu Career Guide
20. Longest Palindromic subsequence in C++
// Solved By Pappu Career Guide
21. module 11 in Python
// Solved By Pappu Career Guide
def remainder(st) :
ln = len(st)
rem = 0
for i in range(0, ln) :
num = rem * 10 + (int)(st[i])
rem = num % 11
return rem
st = "3435346456547566345436457867978"
print(remainder(st))
VIDEO
How To for Download All Section Non-SDE Tech With Coding Question with solution Complete in One PDF :
All candidates All Section Non-SDE Tech & Psychometric Assessment (1A/1B/1C) and Coding solution Complete in One PDF download here :
Step#1: Go to the above link, Join Our What's App Group.
Note: If Already Joined, Directly Apply Through Step#3 .
Step#3: Apply Link: Click Below Link To Apply
Download Updated* Link: Click here (PDF Link)
Note: Download Now Complete PDF Files.
Also, Read More about this:
Tips to Follow to Crack Tech Mahindra Exam 2021
CTS - Cognizant 96 Important Interview Questions 2021
TCS Ninja and Digital 2021 All Interview Questions
Hexaware technical interview 2021
Stay tuned with www.freshersocjob. com to receive more such updates on recruitment. Join our Telegram Channel and Join our WhatsApp Group To get Instant updates for All Recruitment Internships and Off-Campus of 2021 Pass-Out Batch and Other Batch.
Comments
Post a Comment