TCS JAVA Real Interview by TCS | Java Interview Questions and Answers

  Рет қаралды 1,294,578

CodiMinati

CodiMinati

Күн бұрын

Пікірлер: 193
@errollaabhishek315
@errollaabhishek315 2 жыл бұрын
Interviewer Roshni has a smiling face. This makes the candidate feel comfortable and answer the questions.
@a_jamre
@a_jamre 2 жыл бұрын
Bhai dil ki bat bol diye ap
@shikazu01
@shikazu01 2 жыл бұрын
+1
@dharmikpandya
@dharmikpandya 2 жыл бұрын
both are trainer that why 😂
@33pamarthimounika60
@33pamarthimounika60 2 жыл бұрын
@@a_jamre more of for for of of of a a good and I is
@sanikommusiva
@sanikommusiva 2 жыл бұрын
Yes 👍
@dheerajkoranga5012
@dheerajkoranga5012 7 ай бұрын
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 5 ай бұрын
Thanks a lot ❤
@shashankshekhar1424
@shashankshekhar1424 4 ай бұрын
Special place in heaven for people like you😅
@veereshwarayr498
@veereshwarayr498 3 ай бұрын
This is why i look for comments : )
@danielpaulinomesquitaene6984
@danielpaulinomesquitaene6984 2 жыл бұрын
The Roshni is very simpatic, She make this interview more easy.
@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."
@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 4 ай бұрын
True af…
@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 2 жыл бұрын
Agreed
@humtum4484
@humtum4484 2 жыл бұрын
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.😊
@sangulakshetty9857
@sangulakshetty9857 2 жыл бұрын
These kinds of mock interviews will help to students.
@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
@bunny_rabbit5753
@bunny_rabbit5753 2 жыл бұрын
Channel name itself 😍 xplains a lot
@chayanjana20
@chayanjana20 2 жыл бұрын
They can take common of the repeating name... 😀😀😀😀
@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 2 жыл бұрын
This concept comes in advance java? Please tell me.
@sridharlanka2721
@sridharlanka2721 2 жыл бұрын
@@basuchouri324 not sure , but I learned as part of J2SE (core Java)
@sujoymanna3071
@sujoymanna3071 2 жыл бұрын
4 questions.= answer is besically try and catch block exception handling
@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.
@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
@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
@WebMaster600
@WebMaster600 Жыл бұрын
JVM only run one main method which contains argument as string array
@nagellikiran22
@nagellikiran22 2 жыл бұрын
The interviewer always smile like she put a difficult question and let's see how he gonna answer it
@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 2 жыл бұрын
most of the answers are like this dumb..
@Neerajkushwaha-uz8wo
@Neerajkushwaha-uz8wo 2 жыл бұрын
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
@tsdwdemon4964
@tsdwdemon4964 2 жыл бұрын
Wrapper class converts primitive datatype into OOP
@aartisharma7898
@aartisharma7898 2 жыл бұрын
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...
@pallavibhor2732
@pallavibhor2732 5 ай бұрын
Such a pleasant smile on the interviewers face:)
@DinemoGamingl
@DinemoGamingl 2 жыл бұрын
Thanks for your help 🙂👍👍👍👍👍
@ashwinajmery6071
@ashwinajmery6071 2 жыл бұрын
After asking every question.. madam smiling 😀❤️
@GDPI
@GDPI 2 жыл бұрын
Smiling
@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
@Gfg-feels
@Gfg-feels 2 жыл бұрын
I feel like its scripted means he dosnt look fresher 😅
@darklord9500
@darklord9500 2 жыл бұрын
@@Gfg-feels 😂
@technicalgamingandroid3208
@technicalgamingandroid3208 2 жыл бұрын
@@Gfg-feels it's not like that, he was confident, if he didn't knew the answer also he seemed confident
@yuvraj_jadhav_.
@yuvraj_jadhav_. Жыл бұрын
@@Gfg-feels it is a mock interview. He is a senior at tcs already
@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.
@syedfahim6652
@syedfahim6652 2 жыл бұрын
I am just focusing on java interview questions for selenium interview to crack
@AshishKumar-lj4jv
@AshishKumar-lj4jv 2 жыл бұрын
If you share his resume here , it will be helpful.
@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
@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
@_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.
@nigambisen3194
@nigambisen3194 2 жыл бұрын
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
@harshthakur1159
@harshthakur1159 2 жыл бұрын
Roshni smile makes also feel free
@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 🙂
@siri1791
@siri1791 2 жыл бұрын
Tq u this is helpfull for all
@sirigidivasu3567
@sirigidivasu3567 11 ай бұрын
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
@Basha__15
@Basha__15 2 жыл бұрын
He looks experienced guy but questions are very basic level.
@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 👌🏻
@reverseswing8649
@reverseswing8649 2 жыл бұрын
It seems that I have gone through your resume 😂 Typical Indian Software Engineer English 😂
@RajeshKumar-ck8zf
@RajeshKumar-ck8zf 2 жыл бұрын
We can run Java program without main method before Java 7.
@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
@LIN30Sec
@LIN30Sec Жыл бұрын
What if we use static block over main method it will execute it
@aswineditz007
@aswineditz007 3 ай бұрын
in java version before 7 it will work but after java 7 it will not work it willl show run time error
@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 2 жыл бұрын
Why bro what happened
@iVishal_2002
@iVishal_2002 4 ай бұрын
Kahi hua ki nhi tera??
@visionforeverything
@visionforeverything 2 жыл бұрын
Very nice interview with smily faces😂
@saiharinath2582
@saiharinath2582 2 жыл бұрын
looks like he is not a fresher ....!!!his age is far than fresher ..i think soo...
@Ashutoshmishra47699
@Ashutoshmishra47699 2 жыл бұрын
40 ka lagta hei
@korlakuntanagendrababu2432
@korlakuntanagendrababu2432 2 жыл бұрын
Nice discussion
@ayushisharma8088
@ayushisharma8088 2 жыл бұрын
Could we get videos of tcs digital interviews???
@smile-bi8ng
@smile-bi8ng Жыл бұрын
Exception da
@ronitbhandari2928
@ronitbhandari2928 2 жыл бұрын
Being a mechanical engineer I can answer all this questions
@SameerSubhanVlog
@SameerSubhanVlog 2 жыл бұрын
It easy say bro
@ranikumari9883
@ranikumari9883 2 жыл бұрын
kash har interviewer mam jaise ho
@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 KZbinrs 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?
@puneetvohra847
@puneetvohra847 Жыл бұрын
👍👍
@kausiksantra4493
@kausiksantra4493 Жыл бұрын
His answer is perfect
@krish1670
@krish1670 2 жыл бұрын
Is this ninja or digital ?
@tlnvenkat
@tlnvenkat 2 жыл бұрын
Interviewer roshni mam face was very likely and very interested to say answers by seeing mam
@ASIVASAIATCHYUT
@ASIVASAIATCHYUT 2 жыл бұрын
is it for ninja role or digital role??
@3227sonu
@3227sonu 7 ай бұрын
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
@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 2 жыл бұрын
Runtime error is the keyword
@cocadoodledoo6346
@cocadoodledoo6346 Жыл бұрын
​@@purplewolf3769then fix it blud. 😅
@shantanughumatkar3505
@shantanughumatkar3505 2 жыл бұрын
Why is he unable to give a simple answer? It was a basic level answer
@VinaySharma-xq6nw
@VinaySharma-xq6nw Жыл бұрын
No need of any more interview anyways we have chatgpt now
@techgana1663
@techgana1663 2 жыл бұрын
Jvm Jdk java vartual machine/ java development kit ♥️
@harinis6234
@harinis6234 2 жыл бұрын
One or two methods same object,but different values
@sayanchakraborty307
@sayanchakraborty307 2 жыл бұрын
is this ninja or digital interview?
@reshmasalian2394
@reshmasalian2394 2 жыл бұрын
Can I give the interview
@iroshanz_
@iroshanz_ 9 ай бұрын
Wrapper class
@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 ..
@SaleemKhan-fr7pr
@SaleemKhan-fr7pr 2 жыл бұрын
Itna aasan interview kon leta h bhai....Sab jhut hai..Sab moh maya hai
@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
@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 жыл бұрын
If statement
@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
@harinis6234
@harinis6234 2 жыл бұрын
Void
@SharmaAchal
@SharmaAchal 2 жыл бұрын
System.out.print("Thank you");
Sigma girl VS Sigma Error girl 2  #shorts #sigma
0:27
Jin and Hattie
Рет қаралды 124 МЛН
My Productivity System for Working Less (built in Notion)
6:33
Productive Setups
Рет қаралды 3 М.
Java Interview Questions | Java Program Solving | Core & Advance Java | Part 1
39:46
The Kiran Academy - Java By Kiran
Рет қаралды 256 М.
TCS Campus Interview I Campus Placements I Gauri Shrimali I Arvind Singh Pemawat
18:09
Dr. Arvind Singh Pemawat
Рет қаралды 7 МЛН
Testing Mock Interview| Java Mock Interview For Freshers
29:17
RD Automation Learning
Рет қаралды 411 М.
Java Mock Interview | Fresher CODING Round | OOP Concept | Core Java Interview
22:44
The Kiran Academy - Java By Kiran
Рет қаралды 613 М.