26th April Shift 1- Coding Questions & Solutions | TCS NQT 2024 | #python #cpp #java

preview_player
Показать описание
In this video, discover the solutions to the latest TCS NQT coding questions from the 26th April exam. Learn valuable tips and insights for TCS NQT 2024 preparation. Don't miss out on these essential coding strategies! #TCSNQT #TCSNQT26APRIL #TCSDigital #TCSPrime #tcsnqt #tcscoding

📚 Playlists:

Subscribe, like the channel and leave a comment!

Interview preparation playlists:

🖥️ Prime Coding Community (Notes/Hiring Updates/Ask Doubt):

Join us on social media:

Don't forget to like, comment, and subscribe for more updates and preparation tips!

Video Tags:
TCS NQT 26th April Coding Questions & Solutions | TCS NQT 2024
TCS NQT 26th April Coding Questions
TCS NQT 26th April Coding Questions & Solutions
TCS NQT 26th April Coding Solutions
TCS NQT 26th April coding questions
TCS NQT 2024 exam solutions
TCS NQT coding round preparation
How to crack TCS NQT 2024
TCS Ninja National Qualifier Test tips
TCS NQT previous year questions with solutions
tcs nqt coding questions today
tcs nqt python coding questions
tcs nqt coding questions python
how to solve tcs nqt coding questions
tcs nqt digital coding questions
tcs nqt coding questions with answers
tcs nqt 26th april coding questions
tcs nqt 26th april coding solutions
tcs nqt 2024 exam solutions
tcs nqt coding round preparation
how to crack tcs nqt 2024
tcs ninja national qualifier test tips
tcs nqt previous year questions with solutions
tcs nqt interview preparation strategies
tcs nqt coding questions for 26th april

Search Result:
cracking the tcs nqt 26th april coding questions | tips & tricks
tcs nqt 26th april coding questions explained | step-by-step solutions
mastering tcs nqt 2024 coding questions | complete guide
solving tcs nqt 26th april coding questions live | q&a session
tcs nqt 2024 exam: how to prepare for coding questions
tcs nqt 26th april: top coding questions & how to tackle them
acing tcs nqt 2024 coding section | expert tips
tcs nqt 26th april coding questions discussion | community forum
cracking tcs nqt 2024: solving sample coding questions
tcs nqt 26th april 2024: solving previous year coding questions

Video Tags:
TCS NQT, TCS NQT 2024, TCS NQT 26th April, TCS NQT coding questions, TCS NQT coding solutions, TCS NQT exam tips, TCS NQT preparation, TCS NQT coding round, TCS NQT interview preparation, TCS NQT previous year questions, TCS Ninja Hiring, TCS Ninja National Qualifier Test, TCS coding questions, TCS placement preparation, TCS recruitment, TCS campus hiring, tcs nqt, tcs nqt 2024, tcs nqt 26th april, tcs nqt coding questions, tcs nqt coding solutions, tcs nqt exam tips, tcs nqt preparation, tcs nqt coding round, tcs nqt interview preparation, tcs nqt previous year questions, tcs ninja hiring, tcs ninja national qualifier test, tcs coding questions, tcs placement preparation, tcs recruitment, tcs campus hiring
TCS NQT 26th April coding solutions,TCS NQT 2024 exam preparation,TCS NQT 26th April question analysis,TCS NQT 2024 coding round tips,TCS NQT 26th April mock test,TCS NQT 2024 coding interview practice,TCS NQT 26th April test series,TCS NQT 2024 coding challenges,TCS NQT 26th April coding strategy,TCS NQT 2024 exam review,tcs nqt 26 april coding questions,tcs nqt coding 26 april 2024,tcd nqt 2024,apne wale coders,tcc nqt coding 2024,26 april,26 april tcs exam

#tcsnqt #tcsnqt2024 #tcsnqt26thapril #tcsnqtcodingquestions #tcsnqtcodingsolutions #tcsnqtexamtips #tcsnqtpreparation #tcsnqtcodinground #tcsnqtinterviewpreparation #tcsnqtpreviousyearquestions #tcsninjahiring #tcsninjanationalqualifiertest #tcscodingquestions #tcsplacementpreparation #tcsrecruitment #tcscampushiring
Рекомендации по теме
Комментарии
Автор

Hello Everyone, I hope you understood the concept. If you have any doubts please write in into comments. All the best.

PrimeCoding
Автор

int maxSubArray(int* nums, int numsSize) {
int count_sum=0;
int max=INT_MIN;
for(int i =0; i<numsSize;i++)
{
count_sum+=nums[i];
if(max<count_sum)
max=count_sum;
if(count_sum<0){
count_sum=0;
continue;
}

}
return max;
}

alanjohnsmathew
Автор

The best explanation ever 👏👏.... Hats off to your effort.

asrinidhi
Автор

Question 1 (the optimal approach)- Nice explanation, but I guess you missed out the second if part on the 5th iteration where the output would have been 1 3 3

isaacmartin
Автор

int uniquePaths(int m, int n) {
int arr[m][n];
for(int i =0;i<m;i++)
arr[i][0]=1;
for(int j=0;j<n;j++)
arr[0][j]=1;
for(int i =1;i<m;i++)
for(int j=1;j<n;j++)

int result=arr[m-1][n-1];
return result;

}

alanjohnsmathew
Автор

a=list(map(int, input().split()))
t=int(input())
for i in range(len(a)):
for j in range(i+1, len(a)):
s=a[i:j]
if sum(s)==t:
print(s, end='\n')

TalachutlaSatyavathi
Автор

@12:31 wrong, second if condition will also go arr[startIndex : i+1] (1, 3, 3) is wrong, (3, 3, 1) is correct group

mukeshmanral
Автор

Dude to be honest these questions weren't asked in Oracle interview only....the first one is recursion backtracking and the second one is a dp....wtf...

Hitman
Автор

Bro in the first 5:26 time complexity will actually be n^3 because slicing an array takes O(n) in worst case and it also creates a seperate array on each time you slice so the space complexity will not be O(1).
Correct if iam wrong

Chirag_sharma
Автор

Today 31 jan TCS TAG QUESTION

1. FIND ALL COMBINATION
GIVE N
BELLS REPRESENT B
BALLON REPRESENT A
CANDIES REPRESENT C

IF
N=
INPUT
2
1
1
0
THEN INPUT
BA
AND COMBINATION

ARE
BA AB

2 SECOND QUESTION WAS

ARRAY BASED

IN WHICH

1 2 3 4 5 6

YOU HAVE TO MAKE TWO LARGEST INTGER

LIKE MAX 6

THEN
2 4 COMBINED WE CAN MAKE 6
IN QUESTION WE CAN COMBINE MOST TWO PIPE TO

OUTPUT WILL BE

6

vinaydanidhariya
Автор

Sir I have heard the student who tried solved these problems on 26th were facing problem while taking input. There are videos for C++ and java regarding the issue but none for python language . So please upload a video regarding that.

anuragnagvanshi
Автор

Please make vedio on taking how to take diff inputs like list, matrix sperated by spaces and even dictionary or anything else in python for these automatic test case many got eof error and invalid literal for int()

acceleratedofficial
Автор

Where can I find the codes which u explained in this video?

SobithaRani
Автор

Hi Sir i hope yoy are fine i want to ask is it mandatory to do Aptitude as i am proficient in coding but i lack in aptitude if i will solve both questions without aptitude, will i qualify

prashantpundir
Автор

sir you need to use the white color marker

KaranRathod-jinu
Автор

bhaiya 26th ka daal diya please ab 29th aur 30th ka bhi daal dena

thriveforsuccess
Автор

i wrote the same code in java but tcs compiler didn't print the answer

basichackshindi
Автор

I can't find the link for 2.5 hr video

Vishaaaaaaaaaal
Автор

I am mechanical, how can i crack this part of xam or how should i learn & what?? Please help😢🙏🏻

rksreepansh
join shbcf.ru