Тёмный

TCS JAVA Real Interview by TCS Team for fresher , TCS Interview Preparation By TCS Team 

CodiMinati
Подписаться 44 тыс.
Просмотров 1,3 млн
50% 1

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 199   
@errollaabhishek315
@errollaabhishek315 2 года назад
Interviewer Roshni has a smiling face. This makes the candidate feel comfortable and answer the questions.
@annujamre286
@annujamre286 2 года назад
Bhai dil ki bat bol diye ap
@shikazu01
@shikazu01 2 года назад
+1
@dharmikpandya
@dharmikpandya 2 года назад
both are trainer that why 😂
@33pamarthimounika60
@33pamarthimounika60 2 года назад
@@annujamre286 more of for for of of of a a good and I is
@sanikommusiva8471
@sanikommusiva8471 2 года назад
Yes 👍
@dheerajkoranga5012
@dheerajkoranga5012 3 месяца назад
What concept in Java makes it "write once, run anywhere"? The concept in Java that makes it "write once, run anywhere" is the Java Virtual Machine (JVM). Java programs are compiled into bytecode, which is platform-independent. The JVM interprets this bytecode and runs it on any device or operating system that has a compatible JVM implementation. Can we run a Java program without a main method? No, we can't run java program without a main method because the main method is the entry point of java program if main method is not present in the program then it will throw compilation error indication no main method is found Difference between JRE and JDK - **JRE (Java Runtime Environment):** It is a package of tools necessary to run Java programs. It includes the JVM, core libraries, and other components required to run applications written in Java. - **JDK (Java Development Kit):** It is a superset of the JRE, containing everything in the JRE plus tools for developing Java applications, such as the compiler (`javac`), debuggers, and other development tools. What is a wrapper class? A wrapper class in Java provides a way to use primitive data types (int, char, etc.) as objects. Each primitive data type has a corresponding wrapper class: - int -> Integer - char -> Character - boolean -> Boolean - etc. Wrapper classes are used for converting primitives to objects and vice versa, which is especially useful in situations where objects are required, such as in collections. What will happen if we do not write `static` with the main method? If the `main` method is not declared `static`, the JVM will not be able to call it at the start of the program. This is because the `main` method is the entry point of the program and is called without creating an instance of the class. Declaring `main` as `static` allows the JVM to call it directly using the class name. Can we have multiple main methods in Java? Yes, you can write multiple main methods in Java. But, only one main method with a parameter as String[] args will be executed by the JVM. The main method is the entry point of a Java program. It is the method that is called when the program is executed. The main method must be declared public static void main(String[] args). If you have multiple main methods in your program, only the one with the correct signature will be executed. The other main methods will be ignored What is method overloading? Method overloading in Java is a feature that allows a class to have more than one method with the same name, but different parameter lists (different type, number, or both). The appropriate method is selected based on the method signature at compile-time. Can we have multiple catch blocks with a single try block? Yes, you can have multiple catch blocks with a single try block in Java. Each catch block can handle a different type of exception. The first catch block with a matching exception type is executed. ```java try { // code that may throw an exception } catch (IOException e) { // handle IOException } catch (SQLException e) { // handle SQLException } catch (Exception e) { // handle any other exceptions } ``` Difference between array and ArrayList - **Array:** - Fixed size: Once created, the size cannot be changed. - Can hold primitive types and objects. - Not part of the Java Collections Framework. - **ArrayList:** - Dynamic size: Can grow and shrink as needed. - Can only hold objects (wrapper classes for primitives). - Part of the Java Collections Framework and provides more functionality, like dynamic resizing and methods for manipulation. Why is Map not considered a Collection? In Java, the `Map` interface is not a part of the `Collection` hierarchy. While `Collection` is a root interface for collections like `List`, `Set`, and `Queue`, `Map` is designed to store key-value pairs and thus does not fit into the `Collection` interface's structure, which is more suited for single elements. The `Map` interface has a different structure and methods tailored for key-value associations rather than individual elements.
@KapilSharma-qh4zi
@KapilSharma-qh4zi Месяц назад
Thanks a lot ❤
@shashankshekhar1424
@shashankshekhar1424 28 дней назад
Special place in heaven for people like you😅
@Harsit18
@Harsit18 Год назад
1.Jdk is a software where as jvm is virtual mechine which is compile the code, inside jdk software there is jvm 2. Yes we can use more than 1 main method but jvm only execute that main method which has String arg[]
@Kumbutranjaami
@Kumbutranjaami Год назад
JVM won't compile any code. It executes compiled code.
@nationfirst640
@nationfirst640 Год назад
​​​@@Kumbutranjaamiit's compiler like Javac present in jdk that compile the code
@Kumbutranjaami
@Kumbutranjaami Год назад
@@nationfirst640 Right. That's what I said too. The original comment says ".....JVM is virtual mechine which is compile the code..." and I corrected it, because that's wrong.
@nationfirst640
@nationfirst640 Год назад
@@Kumbutranjaami you're right bro,you said it right, I just said mentioned about javac , that's it.
@Kumbutranjaami
@Kumbutranjaami Год назад
@@nationfirst640 I don't want to disappoint you. "Yes. I am the best developer in this entire universe. You are all subordinates to me. You should listen whatever I said to you."
@danielpaulinomesquitaene6984
@danielpaulinomesquitaene6984 2 года назад
The Roshni is very simpatic, She make this interview more easy.
@bhaigaming786-g7m
@bhaigaming786-g7m Год назад
Nowadays they expect spring, spring boot,hibernate and microservices knowledge from a fresher. They are not even shortlisting resumes of those who only knows core java.
@iVishal_2002
@iVishal_2002 Месяц назад
True af…
@nikhilnimbalkar9403
@nikhilnimbalkar9403 2 года назад
If we have to store homogeneous objects or fixed size we can prefer array and opposite of that if we want to store heterogenous object with dynamic content we can use arraylist.
@franciscov511
@franciscov511 Год назад
you can also store heterogenous in an array and do same things like in a collection, taking about objects
@nikhilnimbalkar9403
@nikhilnimbalkar9403 2 года назад
Subclass exception type should be defined first that means in first catch block we have to define Arithmetic exception and in the next catch block we have to define superclass exception type that we can say like try{ Exception causing statements } catch(ArithmeticExc.. e) { Sopl("handled"); } catch(Exception e) { Sopl("Exception handled"); } Once the exception handled control doesn't go back to try block to check remaining statements. Statements after exception handling mechanisms will then get executed.
@ColorsByBala
@ColorsByBala Год назад
Agreed
@humtum4484
@humtum4484 Год назад
in that case Exception block will handle the exception first
@chinmaynayak8645
@chinmaynayak8645 Год назад
@@humtum4484 yes this will show a error at compile time that ArithmeticException has been caught.😊
@bunny_rabbit5753
@bunny_rabbit5753 2 года назад
Channel name itself 😍 xplains a lot
@chayanjana20
@chayanjana20 2 года назад
They can take common of the repeating name... 😀😀😀😀
@sujoymanna3071
@sujoymanna3071 2 года назад
4 questions.= answer is besically try and catch block exception handling
@shadow_man4279
@shadow_man4279 2 года назад
I felt that am only taking interview ✨ Nice interview... And it's more practical... Roshni😍maam smiling face building confidence for opposite person
@Abraham33286
@Abraham33286 Год назад
static in method means you don't have to create object to call main method. main method automatically will call, when you run the program.
@WebMaster600
@WebMaster600 Год назад
JVM only run one main method which contains argument as string array
@tsdwdemon4964
@tsdwdemon4964 2 года назад
Wrapper class converts primitive datatype into OOP
@Dark2115azazel
@Dark2115azazel Год назад
We can run java code without using main method by using static block which runs only once when class is loaded in to the meory
@shivammallik2359
@shivammallik2359 Год назад
not now in earlier version we can run without main
@sujitbhoi0206
@sujitbhoi0206 Год назад
But it was possible the previous version
@aartisharma7898
@aartisharma7898 Год назад
Array doesn't based on Some standard data structures,so predefine method support not present in case of arrays like Arraylist have .....Array is type safe and faster then Arraylist...
@sangulakshetty9857
@sangulakshetty9857 Год назад
These kinds of mock interviews will help to students.
@ashwinajmery6071
@ashwinajmery6071 2 года назад
After asking every question.. madam smiling 😀❤️
@GDPI
@GDPI 2 года назад
Smiling
@_rahulkumarofficial
@_rahulkumarofficial Год назад
Main m static isliye chahiye kyunki we can't create object of that and we need static keyword so that we can invoke main method.
@nagellikiran22
@nagellikiran22 Год назад
The interviewer always smile like she put a difficult question and let's see how he gonna answer it
@surajprajapati7027
@surajprajapati7027 2 года назад
i know each and every answer she asked with perfect example
@randomanimememes2685
@randomanimememes2685 2 года назад
you are getting the job let me hire you
@surajprajapati7027
@surajprajapati7027 2 года назад
@@randomanimememes2685 for which post ?
@mithunmoparthi906
@mithunmoparthi906 2 года назад
@@surajprajapati7027 for proxies…..😂😂😂
@ujjwalsharma772
@ujjwalsharma772 2 года назад
We can hire you .....but along with java you atleast must have 30 years of programming experience in dart, php, python, javascript, typescript with no expectations......you must have a really high knowledge in AWS, firebase Along with it you must have advance knowledge about mysql, all the nosql's available in the market, cloud databases, and relational databases You must have a deep knowledge and atleast around 400 projects with frameworks like react, flutter, django, flask, express You must know how to handle a large Team with a members of only you(as we are short on staff), when we provide you 30 projects together If you think you are capable on working under these conditions....we are happy to hire you with a monthly salary of 5000 Feel free to contact us
@azhagupandianr9071
@azhagupandianr9071 2 года назад
Number please
@syedfahim6652
@syedfahim6652 Год назад
I am just focusing on java interview questions for selenium interview to crack
@aryanmaheshwari1006
@aryanmaheshwari1006 2 года назад
After listening this...i can feel like clear this round . 😂😂.. easy questions
@darklord9500
@darklord9500 2 года назад
Yes bro, I also feel like that
@Artified00
@Artified00 2 года назад
I feel like its scripted means he dosnt look fresher 😅
@darklord9500
@darklord9500 2 года назад
@@Artified00 😂
@technicalgamingandroid3208
@technicalgamingandroid3208 Год назад
@@Artified00 it's not like that, he was confident, if he didn't knew the answer also he seemed confident
@yuvraj_jadhav_.
@yuvraj_jadhav_. Год назад
@@Artified00 it is a mock interview. He is a senior at tcs already
@VIJAY-ZARKAR
@VIJAY-ZARKAR Год назад
If any relation between exception then child class exception should write in upper and parent class should write lower otherwise it will give COMPILE ERROR...
@sheshanksidheshwar9846
@sheshanksidheshwar9846 Год назад
actually its arraylist not error list as captions heard it wrong
@path_of_peace
@path_of_peace 2 года назад
Problem with me is that .. if you give me a question i could solve it easily .. but can't explain it in English ...
@uniqueniccu2435
@uniqueniccu2435 Год назад
Me too 🙂
@harshthakur1159
@harshthakur1159 Год назад
Roshni smile makes also feel free
@AshishKumar-lj4jv
@AshishKumar-lj4jv 2 года назад
If you share his resume here , it will be helpful.
@sridharlanka2721
@sridharlanka2721 2 года назад
10:00 case1 - --------- If the Superclass is mentioned in the 1st catch block and ArithmeticException is defined in the 2nd catch block Result - CE : exception ArithmeticException has already been caught catch(ArithmeticException ae) ============================================== case2 - ----------- If the Superclass is mentioned in the 2nd catch block and ArithmeticException is defined in the 1st catch block Result: No CE Error Just the statements mentioned in the ArithmeticException of the 1st catch block will be matched and executed
@basuchouri324
@basuchouri324 Год назад
This concept comes in advance java? Please tell me.
@sridharlanka2721
@sridharlanka2721 Год назад
@@basuchouri324 not sure , but I learned as part of J2SE (core Java)
@rutx7ck.11
@rutx7ck.11 Год назад
wrapper class wraps around data data type and give it an form of object, the preemptive data type cant be wrap because they do not belong to any class
@unwanted0078
@unwanted0078 2 года назад
Most of the interviews are nowhere as easy as this one is, don't be fooled.
@rani_meow
@rani_meow 2 года назад
Yes... How come it is so easy 😂
@hardtrailrider
@hardtrailrider Год назад
most of the answers are like this dumb..
@Neerajkushwaha-uz8wo
@Neerajkushwaha-uz8wo Год назад
Actually she has made her mind to reject him. Thats why she thought why to waste more time 😅
@Momentumunboun
@Momentumunboun Год назад
One interview I did, by the end I had literally created an app for the company. I didn't get the job but I found out that they took the app and made millions of dollars from it. 😄
@victoriavincent3811
@victoriavincent3811 Год назад
​@@Neerajkushwaha-uz8wobut how did you came with conclusion that she wanted to reject him
@kirano07
@kirano07 2 года назад
Thank you for making such kind of video,this is not real but it's good
@jayantpawar8141
@jayantpawar8141 2 года назад
I think this ia real i searched her on LinkedIn and she really work in tata elxsi as a senior manager.
@saiharinath2582
@saiharinath2582 2 года назад
looks like he is not a fresher ....!!!his age is far than fresher ..i think soo...
@Ashutoshmishra47699
@Ashutoshmishra47699 Год назад
40 ka lagta hei
@nigambisen3194
@nigambisen3194 Год назад
Can we overload main method? Yes We can overload main method by changing its formal arguments.
@sumitp9158
@sumitp9158 Год назад
yes we can overload main method but jvm calls main method with (string args[]) only
@ppriyansh2327
@ppriyansh2327 Год назад
Yes
@LIN30Sec
@LIN30Sec Год назад
What if we use static block over main method it will execute it
@beesetti.d.ssubhash5075
@beesetti.d.ssubhash5075 2 года назад
This interview was an expectation but reality is different😂
@rowdy9046
@rowdy9046 2 года назад
Yup bro 🤣
@kingkohlidevote8075
@kingkohlidevote8075 2 года назад
Is the real one is tough than this?....
@parameshiyer6065
@parameshiyer6065 2 года назад
Haha 😂 obviously!! This is the way these RU-vidrs make money
@chiragdusad2015
@chiragdusad2015 2 года назад
@@parameshiyer6065 this is tcs not a product based company who asks u regarding DSA so yeah it is the almost same interview expected by tcs
@mohammedmujaheed8501
@mohammedmujaheed8501 Год назад
could you elaborate and tell me which type of question we can expect as a fresher in an interview?
@DinemoGamingl
@DinemoGamingl Год назад
Thanks for your help 🙂👍👍👍👍👍
@Basha__15
@Basha__15 Год назад
He looks experienced guy but questions are very basic level.
@RajeshKumar-ck8zf
@RajeshKumar-ck8zf Год назад
We can run Java program without main method before Java 7.
@White-Devil516
@White-Devil516 2 года назад
I selected in wipro on phase 2... And i had completed my graduation this year 2022.. And i have 6.29cgpa...now am i eligible for wipro🥺🥺🥺
@abhilashkghebbar1673
@abhilashkghebbar1673 Год назад
yes you are but they don't onboarding freshers cause of recession it may take upto 4 months to onboard freshers if you are selected to wipro elite. all the best
@prachigedam2909
@prachigedam2909 Год назад
Hey ....how u did it can u help me..
@tsunium2662
@tsunium2662 Год назад
don't join wipro
@1andonly_amit
@1andonly_amit Год назад
cse or btech or bca ?
@Spectrum012
@Spectrum012 Год назад
@@tsunium2662 why.?
@ashokreddy2982
@ashokreddy2982 Год назад
His eye contact is not that great...i used to be like him...but later i improved my eye contact...but his communication skills and knowledge is good 👌🏻
@ronitbhandari2928
@ronitbhandari2928 2 года назад
Being a mechanical engineer I can answer all this questions
@SameerSubhanVlog
@SameerSubhanVlog 2 года назад
It easy say bro
@reverseswing8649
@reverseswing8649 Год назад
It seems that I have gone through your resume 😂 Typical Indian Software Engineer English 😂
@codex7065
@codex7065 2 года назад
I can give answer for all this question but still I could not able to crack any interview for java development. Very sad
@shreyasrd2034
@shreyasrd2034 Год назад
Why bro what happened
@iVishal_2002
@iVishal_2002 Месяц назад
Kahi hua ki nhi tera??
@siri1791
@siri1791 2 года назад
Tq u this is helpfull for all
@shubhambhamare7551
@shubhambhamare7551 2 года назад
can somebody comment the y=10/0 question as how it would have been presented/written if it was a code.
@purplewolf3769
@purplewolf3769 2 года назад
we must pass a try and catch exception in our code. For example, a = 10; b = 5; c = 5; result = a/(b-c); The result is not possible since nothing can be divided by zero. So we need to write a catch statement calling the ArithmeticException so it can just skip the result when the denominator gets 0.
@rexkrish3852
@rexkrish3852 2 года назад
@@purplewolf3769 it should be a/(b-c)
@purplewolf3769
@purplewolf3769 2 года назад
@@rexkrish3852 oops.. TYPO
@SoloSoul69
@SoloSoul69 Год назад
Runtime error is the keyword
@cocadoodledoo6346
@cocadoodledoo6346 Год назад
​@@purplewolf3769then fix it blud. 😅
@ranikumari9883
@ranikumari9883 2 года назад
kash har interviewer mam jaise ho
@ayushisharma8088
@ayushisharma8088 2 года назад
Could we get videos of tcs digital interviews???
@shantanughumatkar3505
@shantanughumatkar3505 2 года назад
Why is he unable to give a simple answer? It was a basic level answer
@3227sonu
@3227sonu 3 месяца назад
Jsp and servlet is no more used in the industry almost dead, its time of AI,jdk.11,spring boot, kafka,Angular and microservices etc. lockdown questions are very basic and even ppl got seleted
@visionforhumansociety8990
@visionforhumansociety8990 2 года назад
Very nice interview with smily faces😂
@VinaySharma-xq6nw
@VinaySharma-xq6nw Год назад
No need of any more interview anyways we have chatgpt now
@kausiksantra4493
@kausiksantra4493 Год назад
His answer is perfect
@tlnvenkat
@tlnvenkat Год назад
Interviewer roshni mam face was very likely and very interested to say answers by seeing mam
@krish1670
@krish1670 2 года назад
Is this ninja or digital ?
@techgana1663
@techgana1663 2 года назад
Jvm Jdk java vartual machine/ java development kit ♥️
@korlakuntanagendrababu2432
@korlakuntanagendrababu2432 2 года назад
Nice discussion
@smile-bi8ng
@smile-bi8ng Год назад
Exception da
@reshmasalian2394
@reshmasalian2394 Год назад
Can I give the interview
@ASIVASAIATCHYUT
@ASIVASAIATCHYUT 2 года назад
is it for ninja role or digital role??
@puneetvohra847
@puneetvohra847 Год назад
👍👍
@iroshanz_
@iroshanz_ 5 месяцев назад
Wrapper class
@evergame2443
@evergame2443 2 года назад
In tino me se freser kon lagra
@professorop4558
@professorop4558 2 года назад
They all of are.
@factcolony6232
@factcolony6232 2 года назад
all are recruiters
@RN-jo8zt
@RN-jo8zt 2 года назад
😃
@mrunalmestry
@mrunalmestry 2 года назад
lol
@pratikpatrimath4887
@pratikpatrimath4887 2 года назад
That mam
@sayanchakraborty307
@sayanchakraborty307 2 года назад
is this ninja or digital interview?
@SaleemKhan-fr7pr
@SaleemKhan-fr7pr 2 года назад
Itna aasan interview kon leta h bhai....Sab jhut hai..Sab moh maya hai
@14yogeshkumar99
@14yogeshkumar99 2 года назад
is that off campus interview?
@SumanRoy.official
@SumanRoy.official 2 года назад
Doesn't matter, follow up with the questions it will help
@14yogeshkumar99
@14yogeshkumar99 2 года назад
@@SumanRoy.official asking bcoz we dont have campus placements , also companies like TCS dont come in our collage.
@tusharpal3731
@tusharpal3731 2 года назад
Ya it’s an off campus
@sandeeprn6959
@sandeeprn6959 2 года назад
Script broi
@14yogeshkumar99
@14yogeshkumar99 2 года назад
@@sandeeprn6959 yeh its sounds like ..
@harinis6234
@harinis6234 2 года назад
If statement
@harinis6234
@harinis6234 2 года назад
Void
@vaishnavisridhar3627
@vaishnavisridhar3627 2 года назад
Is he fresher?
@pawantembhurne6828
@pawantembhurne6828 2 года назад
Yes... But at looking him anybody can say he completed his graduations 10 years before...
@yashmistry934
@yashmistry934 2 года назад
@@pawantembhurne6828 this is not a real interview it's just a demo of how it is
@SharmaAchal
@SharmaAchal Год назад
System.out.print("Thank you");
@sirigidivasu3567
@sirigidivasu3567 7 месяцев назад
In stand alone applications main method is required, but in web or enterprise application which is not required because the whole execution will depend on web server we use
@pallavibhor2732
@pallavibhor2732 Месяц назад
Such a pleasant smile on the interviewers face:)
@anirbanmanna2897
@anirbanmanna2897 2 года назад
Scripted
@nidhin3375
@nidhin3375 2 года назад
I dont think so
@mayanksom4776
@mayanksom4776 2 года назад
Vishal Barad is the head of TCS Xplore 😂 that's enough to tell you
@biswajitbeheraCrAzYLoVeR
@biswajitbeheraCrAzYLoVeR 2 года назад
correct...it's just for educational purposes....i have seen a similar SQL interview where Vishal was the interviewer and the candidate was someone else
@MrBasant1986
@MrBasant1986 2 года назад
Is that joke
@shraddhashrivastav8301
@shraddhashrivastav8301 2 года назад
looks like
@mayurkhare9805
@mayurkhare9805 2 года назад
🤣🤣
@mintukumar-ri4sc
@mintukumar-ri4sc 2 года назад
😂😂
@harinis6234
@harinis6234 2 года назад
One or two methods same object,but different values
Далее
Kenji's Sushi Shop Showdown - Brawl Stars Animation
01:55