No video

TCS Ninja Coding Questions | Previous Year Questions (2023 Batch) TCS Ninja Preparation!

  Рет қаралды 41,073

TalentBattle.in

TalentBattle.in

Күн бұрын

Join the Placement Preparation Whatsapp Group, Telegram Channel and Instagram Page here: bit.ly/3qKUG5M
Free TCS Ninja Preparation Guide: forms.gle/XTDg...
Join TCS NQT LIVE Masterclass(Includes TCS Digital Training): talentbattle.i...
***************************************
Join the Complete Placement Preparatory LIVE Masterclass here: talentbattle.i...
***************************************
Aptitude Cracker Course: bit.ly/2Vad4Gn
***************************************
10 hours of live training to start with your aptitude preparation!
START YOUR APTITUDE PREPARATION TODAY!- bit.ly/35JZ8Z1
#tcsninja #tcsninjaquestions #tcsnqt2023 #2023batch #tcsninja2023

Пікірлер: 58
@abbas.muzammil23
@abbas.muzammil23 2 жыл бұрын
For (Q1), in java, we can store the numbers in an array and sort them (Ascending Order) and then simply print the last second number, which is our required answer... Time Complexity: O(n log n) Hope it helps...
@adityabanerjee3105
@adityabanerjee3105 3 жыл бұрын
Thank you for this type of videos. Want more of prev year question of TCS Ninja exam.
@PreparewithTalentBattle
@PreparewithTalentBattle 3 жыл бұрын
Will upload soon
@narasimhareddy5124
@narasimhareddy5124 3 жыл бұрын
#circle question radius=int(input("Enter the radius")) circumference=2*3.14*radius print("%.2f"%circumference)
@ganeshreddy7073
@ganeshreddy7073 10 ай бұрын
n1=int(input()) n2=int(input()) n3=int(input()) list=[n1,n2,n3] list.sort() print(list[1])
@ganeshreddy7073
@ganeshreddy7073 10 ай бұрын
from math import pi r=float(input()) ans=2*pi*r v=round(ans,2) print(v)
@siddharthyankanchi6907
@siddharthyankanchi6907 3 жыл бұрын
A=[2,8,5] A.sort() Print(a[1]) Just 3 lines but it will have a time complexity of i guess O(n)
@rishabraj7735
@rishabraj7735 3 жыл бұрын
O(nlogn)
@siddharthyankanchi6907
@siddharthyankanchi6907 3 жыл бұрын
Ya sry....sort function has a time complexity of O(n logn)
@vivekakundi
@vivekakundi 3 жыл бұрын
This don't work i think because you didn't take the numbers on console
@koushiksai490
@koushiksai490 3 жыл бұрын
@@vivekakundi then we can use int(input()) ...
@adityabanerjee3105
@adityabanerjee3105 3 жыл бұрын
This is a perfect application of Python, but in exam can we use this predefined functions like sort(),max(),min() etc?
@abbas.muzammil23
@abbas.muzammil23 2 жыл бұрын
For (Q2) For Folks doing in java, While printing the output in 2 precision, simply write , System.out.printf("%.2f",circumference)
@jagritisrivastava1995
@jagritisrivastava1995 3 жыл бұрын
Thank you sir Please upload more videos
@manognabijjam2744
@manognabijjam2744 3 жыл бұрын
Are these pyqs😳?
@adityabanerjee3105
@adityabanerjee3105 3 жыл бұрын
Sir, can you pls tell me can I use pre defined functions(e.g. Max, Min, Factorial) of Python in the exam ?
@varunprasath6244
@varunprasath6244 3 жыл бұрын
U can use but its not recemmonded
@vchandu604
@vchandu604 3 жыл бұрын
Is python available???
@rehankarol7453
@rehankarol7453 3 жыл бұрын
Can we use priority queue in this?
@nallarajesh1915
@nallarajesh1915 3 жыл бұрын
If any two inputs are equal. then the code is not possible
@dhananjaybiraris7819
@dhananjaybiraris7819 3 жыл бұрын
can we use only python lang for coding in TCS ninja
@ashutoshvyas5331
@ashutoshvyas5331 3 жыл бұрын
is this coding of Q1 holds good for 132
@yashwantsalunke1420
@yashwantsalunke1420 3 жыл бұрын
Sir what is salary package does tcs Ninja provide?
@kumardeepak6984
@kumardeepak6984 3 жыл бұрын
Else if (n2 >n3) k jagah pr (n1>n3) hoga,
@amj7090
@amj7090 3 жыл бұрын
That statement already mentioned in above condition!
@hemanthreddyporeddy6299
@hemanthreddyporeddy6299 3 жыл бұрын
Can we write the same in python sir???
@karansinghbhadoriya7286
@karansinghbhadoriya7286 3 жыл бұрын
According to TCS webscite you can.
@hemanthreddyporeddy6299
@hemanthreddyporeddy6299 3 жыл бұрын
@@karansinghbhadoriya7286 thank you 😊
@narasimhareddy5124
@narasimhareddy5124 3 жыл бұрын
@@hemanthreddyporeddy6299 yes n=int(input("Enter the size of array")) a=[] for i in range(1,n+1): ele=int(input()) a.append(ele) print(a) arr=sorted(a) print(arr) print("Second greatest number is",arr[1])
@rutiktupe3889
@rutiktupe3889 3 жыл бұрын
numbers = list(map(int, input().split())) sort_num = sorted(numbers, reverse = True) for i in range(1, len(sort_num)): if sort_num[i] == sort_num[i - 1]: pass else: print(sort_num[i]) break
@itzmanny8905
@itzmanny8905 3 жыл бұрын
What about java
@jaanujaanu2375
@jaanujaanu2375 3 жыл бұрын
Sir can you say in c++
@surbhi4733
@surbhi4733 3 жыл бұрын
Sir can I write program in python in tcs ninja bcz all r saying python compiler sucks
@PreparewithTalentBattle
@PreparewithTalentBattle 3 жыл бұрын
Python has issues we recommend c c++ java to students only for tcs
@ramyabharathyr6664
@ramyabharathyr6664 3 жыл бұрын
Will they ask such easy programs ? they will only ask tougher programs know?
@PreparewithTalentBattle
@PreparewithTalentBattle 3 жыл бұрын
easy and medium level only for ninja exam
@PreparewithTalentBattle
@PreparewithTalentBattle 3 жыл бұрын
@Soumik Das 8043 Check out the digital questions video we have already uploaded
@amj7090
@amj7090 3 жыл бұрын
Same question sir is they ask such easy questions I don't think so Sir please solve problems on array and strings
@ashutoshambule1233
@ashutoshambule1233 3 жыл бұрын
Please guys No need to take Radius as a float It gives error or wrong ans !!!!!!!
@nayatrendz4886
@nayatrendz4886 3 жыл бұрын
i think its not working
@jagritisrivastava1995
@jagritisrivastava1995 3 жыл бұрын
It is working
@nallarajesh1915
@nallarajesh1915 3 жыл бұрын
If Two inputs are equal then it is not works.it is also one test case
@ammankhan3370
@ammankhan3370 3 жыл бұрын
But this is very easy
@DailyKiZindagiVlog
@DailyKiZindagiVlog 3 жыл бұрын
Itna easy ayega ?
@PreparewithTalentBattle
@PreparewithTalentBattle 3 жыл бұрын
easy and medium level only for ninja exam
Big news !TCS Ninja Hiring 2022 Batch Exam Launched! Free NQT!
28:32
TalentBattle.in
Рет қаралды 39 М.
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН
The Joker kisses Harley Quinn underwater!#Harley Quinn #joker
00:49
Harley Quinn with the Joker
Рет қаралды 9 МЛН
小丑把天使丢游泳池里#short #angel #clown
00:15
Super Beauty team
Рет қаралды 46 МЛН
TCS Digital Coding Questions and Answers Most Asked 2023
43:13
Prep Insta
Рет қаралды 73 М.
microsoft doubles down on recording your screen
10:00
Low Level Learning
Рет қаралды 60 М.
TCS Ninja Coding Questions 2022
43:50
Prep Insta
Рет қаралды 138 М.
🔴TCS Actual Coding Question | CODING HARD CHALLENGE
55:18
Campusmonk
Рет қаралды 7 М.
The Giant sleep in the town 👹🛏️🏡
00:24
Construction Site
Рет қаралды 20 МЛН