Interviewer Roshni has a smiling face. This makes the candidate feel comfortable and answer the questions.
@a_jamre2 жыл бұрын
Bhai dil ki bat bol diye ap
@shikazu012 жыл бұрын
+1
@dharmikpandya2 жыл бұрын
both are trainer that why 😂
@33pamarthimounika602 жыл бұрын
@@a_jamre more of for for of of of a a good and I is
@sanikommusiva2 жыл бұрын
Yes 👍
@dheerajkoranga50127 ай бұрын
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-qh4zi5 ай бұрын
Thanks a lot ❤
@shashankshekhar14244 ай бұрын
Special place in heaven for people like you😅
@veereshwarayr4983 ай бұрын
This is why i look for comments : )
@danielpaulinomesquitaene69842 жыл бұрын
The Roshni is very simpatic, She make this interview more easy.
@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 Жыл бұрын
JVM won't compile any code. It executes compiled code.
@nationfirst640 Жыл бұрын
@@Kumbutranjaamiit's compiler like Javac present in jdk that compile the code
@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 Жыл бұрын
@@Kumbutranjaami you're right bro,you said it right, I just said mentioned about javac , that's it.
@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 Жыл бұрын
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_20024 ай бұрын
True af…
@nikhilnimbalkar94032 жыл бұрын
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.
@ColorsByBala2 жыл бұрын
Agreed
@humtum44842 жыл бұрын
in that case Exception block will handle the exception first
@chinmaynayak8645 Жыл бұрын
@@humtum4484 yes this will show a error at compile time that ArithmeticException has been caught.😊
@sangulakshetty98572 жыл бұрын
These kinds of mock interviews will help to students.
@nikhilnimbalkar94032 жыл бұрын
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 Жыл бұрын
you can also store heterogenous in an array and do same things like in a collection, taking about objects
@bunny_rabbit57532 жыл бұрын
Channel name itself 😍 xplains a lot
@chayanjana202 жыл бұрын
They can take common of the repeating name... 😀😀😀😀
@sridharlanka27212 жыл бұрын
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
@basuchouri3242 жыл бұрын
This concept comes in advance java? Please tell me.
@sridharlanka27212 жыл бұрын
@@basuchouri324 not sure , but I learned as part of J2SE (core Java)
@sujoymanna30712 жыл бұрын
4 questions.= answer is besically try and catch block exception handling
@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_man42792 жыл бұрын
I felt that am only taking interview ✨ Nice interview... And it's more practical... Roshni😍maam smiling face building confidence for opposite person
@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 Жыл бұрын
not now in earlier version we can run without main
@sujitbhoi0206 Жыл бұрын
But it was possible the previous version
@WebMaster600 Жыл бұрын
JVM only run one main method which contains argument as string array
@nagellikiran222 жыл бұрын
The interviewer always smile like she put a difficult question and let's see how he gonna answer it
@unwanted00782 жыл бұрын
Most of the interviews are nowhere as easy as this one is, don't be fooled.
@rani_meow2 жыл бұрын
Yes... How come it is so easy 😂
@hardtrailrider2 жыл бұрын
most of the answers are like this dumb..
@Neerajkushwaha-uz8wo2 жыл бұрын
Actually she has made her mind to reject him. Thats why she thought why to waste more time 😅
@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 Жыл бұрын
@@Neerajkushwaha-uz8wobut how did you came with conclusion that she wanted to reject him
@tsdwdemon49642 жыл бұрын
Wrapper class converts primitive datatype into OOP
@aartisharma78982 жыл бұрын
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...
@pallavibhor27325 ай бұрын
Such a pleasant smile on the interviewers face:)
@DinemoGamingl2 жыл бұрын
Thanks for your help 🙂👍👍👍👍👍
@ashwinajmery60712 жыл бұрын
After asking every question.. madam smiling 😀❤️
@GDPI2 жыл бұрын
Smiling
@aryanmaheshwari10062 жыл бұрын
After listening this...i can feel like clear this round . 😂😂.. easy questions
@darklord95002 жыл бұрын
Yes bro, I also feel like that
@Gfg-feels2 жыл бұрын
I feel like its scripted means he dosnt look fresher 😅
@darklord95002 жыл бұрын
@@Gfg-feels 😂
@technicalgamingandroid32082 жыл бұрын
@@Gfg-feels it's not like that, he was confident, if he didn't knew the answer also he seemed confident
@yuvraj_jadhav_. Жыл бұрын
@@Gfg-feels it is a mock interview. He is a senior at tcs already
@kirano072 жыл бұрын
Thank you for making such kind of video,this is not real but it's good
@jayantpawar81412 жыл бұрын
I think this ia real i searched her on LinkedIn and she really work in tata elxsi as a senior manager.
@syedfahim66522 жыл бұрын
I am just focusing on java interview questions for selenium interview to crack
@AshishKumar-lj4jv2 жыл бұрын
If you share his resume here , it will be helpful.
@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 Жыл бұрын
actually its arraylist not error list as captions heard it wrong
@surajprajapati70272 жыл бұрын
i know each and every answer she asked with perfect example
@randomanimememes26852 жыл бұрын
you are getting the job let me hire you
@surajprajapati70272 жыл бұрын
@@randomanimememes2685 for which post ?
@mithunmoparthi9062 жыл бұрын
@@surajprajapati7027 for proxies…..😂😂😂
@ujjwalsharma7722 жыл бұрын
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
@azhagupandianr90712 жыл бұрын
Number please
@_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.
@nigambisen31942 жыл бұрын
Can we overload main method? Yes We can overload main method by changing its formal arguments.
@sumitp9158 Жыл бұрын
yes we can overload main method but jvm calls main method with (string args[]) only
@ppriyansh2327 Жыл бұрын
Yes
@harshthakur11592 жыл бұрын
Roshni smile makes also feel free
@path_of_peace2 жыл бұрын
Problem with me is that .. if you give me a question i could solve it easily .. but can't explain it in English ...
@uniqueniccu2435 Жыл бұрын
Me too 🙂
@siri17912 жыл бұрын
Tq u this is helpfull for all
@sirigidivasu356711 ай бұрын
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__152 жыл бұрын
He looks experienced guy but questions are very basic level.
@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 👌🏻
@reverseswing86492 жыл бұрын
It seems that I have gone through your resume 😂 Typical Indian Software Engineer English 😂
@RajeshKumar-ck8zf2 жыл бұрын
We can run Java program without main method before Java 7.
@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 Жыл бұрын
What if we use static block over main method it will execute it
@aswineditz0073 ай бұрын
in java version before 7 it will work but after java 7 it will not work it willl show run time error
@codex70652 жыл бұрын
I can give answer for all this question but still I could not able to crack any interview for java development. Very sad
@shreyasrd20342 жыл бұрын
Why bro what happened
@iVishal_20024 ай бұрын
Kahi hua ki nhi tera??
@visionforeverything2 жыл бұрын
Very nice interview with smily faces😂
@saiharinath25822 жыл бұрын
looks like he is not a fresher ....!!!his age is far than fresher ..i think soo...
@Ashutoshmishra476992 жыл бұрын
40 ka lagta hei
@korlakuntanagendrababu24322 жыл бұрын
Nice discussion
@ayushisharma80882 жыл бұрын
Could we get videos of tcs digital interviews???
@smile-bi8ng Жыл бұрын
Exception da
@ronitbhandari29282 жыл бұрын
Being a mechanical engineer I can answer all this questions
@SameerSubhanVlog2 жыл бұрын
It easy say bro
@ranikumari98832 жыл бұрын
kash har interviewer mam jaise ho
@beesetti.d.ssubhash50752 жыл бұрын
This interview was an expectation but reality is different😂
@rowdy90462 жыл бұрын
Yup bro 🤣
@kingkohlidevote80752 жыл бұрын
Is the real one is tough than this?....
@parameshiyer60652 жыл бұрын
Haha 😂 obviously!! This is the way these KZbinrs make money
@chiragdusad20152 жыл бұрын
@@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 Жыл бұрын
could you elaborate and tell me which type of question we can expect as a fresher in an interview?
@puneetvohra847 Жыл бұрын
👍👍
@kausiksantra4493 Жыл бұрын
His answer is perfect
@krish16702 жыл бұрын
Is this ninja or digital ?
@tlnvenkat2 жыл бұрын
Interviewer roshni mam face was very likely and very interested to say answers by seeing mam
@ASIVASAIATCHYUT2 жыл бұрын
is it for ninja role or digital role??
@3227sonu7 ай бұрын
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
@shubhambhamare75512 жыл бұрын
can somebody comment the y=10/0 question as how it would have been presented/written if it was a code.
@purplewolf37692 жыл бұрын
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.
@rexkrish38522 жыл бұрын
@@purplewolf3769 it should be a/(b-c)
@purplewolf37692 жыл бұрын
@@rexkrish3852 oops.. TYPO
@SoloSoul692 жыл бұрын
Runtime error is the keyword
@cocadoodledoo6346 Жыл бұрын
@@purplewolf3769then fix it blud. 😅
@shantanughumatkar35052 жыл бұрын
Why is he unable to give a simple answer? It was a basic level answer
@VinaySharma-xq6nw Жыл бұрын
No need of any more interview anyways we have chatgpt now
@techgana16632 жыл бұрын
Jvm Jdk java vartual machine/ java development kit ♥️
@harinis62342 жыл бұрын
One or two methods same object,but different values
@sayanchakraborty3072 жыл бұрын
is this ninja or digital interview?
@reshmasalian23942 жыл бұрын
Can I give the interview
@iroshanz_9 ай бұрын
Wrapper class
@14yogeshkumar992 жыл бұрын
is that off campus interview?
@SumanRoy.official2 жыл бұрын
Doesn't matter, follow up with the questions it will help
@14yogeshkumar992 жыл бұрын
@@SumanRoy.official asking bcoz we dont have campus placements , also companies like TCS dont come in our collage.
@tusharpal37312 жыл бұрын
Ya it’s an off campus
@sandeeprn69592 жыл бұрын
Script broi
@14yogeshkumar992 жыл бұрын
@@sandeeprn6959 yeh its sounds like ..
@SaleemKhan-fr7pr2 жыл бұрын
Itna aasan interview kon leta h bhai....Sab jhut hai..Sab moh maya hai
@evergame24432 жыл бұрын
In tino me se freser kon lagra
@professorop45582 жыл бұрын
They all of are.
@factcolony62322 жыл бұрын
all are recruiters
@RN-jo8zt2 жыл бұрын
😃
@mrunalmestry2 жыл бұрын
lol
@pratikpatrimath48872 жыл бұрын
That mam
@anirbanmanna28972 жыл бұрын
Scripted
@nidhin33752 жыл бұрын
I dont think so
@mayanksom47762 жыл бұрын
Vishal Barad is the head of TCS Xplore 😂 that's enough to tell you
@biswajitbeheraCrAzYLoVeR2 жыл бұрын
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
@MrBasant19862 жыл бұрын
Is that joke
@shraddhashrivastav83012 жыл бұрын
looks like
@mayurkhare98052 жыл бұрын
🤣🤣
@mintukumar-ri4sc2 жыл бұрын
😂😂
@harinis62342 жыл бұрын
If statement
@vaishnavisridhar36272 жыл бұрын
Is he fresher?
@pawantembhurne68282 жыл бұрын
Yes... But at looking him anybody can say he completed his graduations 10 years before...
@yashmistry9342 жыл бұрын
@@pawantembhurne6828 this is not a real interview it's just a demo of how it is