@@sahiljagtap1958 I now work at my dream company...I can't believe it! I watched some videos from @RD Automation Learning and practiced writing automation tests.
@@rdautomationlearning609 Can you please schedule one mock interview for me sir.... because I m also tried to get job because your mock is very helpful for facing the interview
Time Stamp : 14:10 //Find a number is Palindrome or not || Java Solution class Solution { // Method to check if the given integer is a palindrome public boolean isPalindrome(int x) { // Convert the integer to a string for easier manipulation String c = Integer.toString(x); // Convert the string to a character array char[] cArr = c.toCharArray(); // Get the length of the character array int len = cArr.length; // Initialize the 'end' pointer to the last index of the character array int end = len-1; // Iterate over the first half of the character array for(int i=0; i
About pointers we do have object refrence variable whihc stores adressof location where the object is stored in heap and about pointer it gives the memory location then whats the diffrence between pointer and object refrence variable
Access Specifiers: Default: within the package Public: can be access by any class or method Private: within the class Protected: can be accessed by class of same package and subclass extends the child class
Aggregation It is a special form of Association where: It represents Has-A’s relationship. It is a unidirectional association i.e. a one-way relationship. For example, a department can have students but vice versa is not possible and thus unidirectional in nature. In Aggregation, both the entries can survive individually which means ending one entity will not affect the other entity. Composition is a restricted form of Aggregation in which two entities are highly dependent on each other. It represents part-of relationship. In composition, both entities are dependent on each other. When there is a composition between two entities, the composed object cannot exist without the other entity.
Aggregation is weak relationship while composition is string relationship like car and indicator' s relationship is example of aggregation but car and engine's relationship is composition ... Without aggregation the system is dtill complete but without composition its not
Actually there is no difference between access specifier and access modifier in Java they both mean the same and Access modifier is the new and official term used instead of access specifier
Can you please provide a video on parallel tests execution without using cypress cloud on GitHub actions. Tests should be run on GitHub actions without cypress cloud.
Sir can you make pdf for java interview questions with answers for cracking interview sir pleaase i am from mechanical background i m trying for software field
Hi bro I am working in TCS as contact employee from 1.3 years now TCS is offered me for permanent position, total 2.6 years of experience current CTC is 3.5. should i accept TCS permanent offed and what CTC need to ask
I have completed my graduation in BCA in 2018 .There is 4 yrs gap . So, what I'll say in interview. In these 4yrs I was trying to crack gvrnt exam but I can't...also suffering from some medical issue...
....for palindrome, wouldn't it be easier to just convert the number to string and reverse it then compare both? Or just reverse half of the string, then compare left and right part?
@@bartallen7023 after gaining more experience from problem solving: my answer would be, use two pointers, one at start, one at end, move them towards the middle, check if chars are same or not, if not return false, otherwise after while loop ends(both at mid) return true
public class Don { public static void main(String[] args) { int number=15; if(number > 0) { System.out.println(number+" is a positive number"); } else if(number < 0) { System.out.println(number+" is a negative number"); } else { System.out.println(number+" is neither positive nor negative"); } } } OUTPUT =15 POSITIVE
@@ruch830 this terminology is only for C++ If you want proof then do one thing declare top level class as Private and see the error saying private modifier is not allowed on top level classes. Compiler also considers private as modifier but not specifier..As private,public, protected, default are access specifiers in C++ but they all are considered as modifiers in java
If you write public void static main, you are altering the signature by switching the order of the keywords void and static. This change will cause a compilation error, and the program will not run successfully.
ruclips.net/video/w_0VJHgiAr4/видео.html
Have a look at above Playlist
Naku English radhu nenu software job ki suitable avuthana I completed msc computer science
@@guhansaitej suitable
Sir i want to give mock test
Sir I will give to mock exam please help what is process for this that
Brilliant Interview!!! Thanks for the Upload.
Thanks for watching
The way of explaining by the interviewer is awesome..
Good set of questions sir thank u so much
Thank you, All the Best for career ahead!!
From khandesh... 👍👍
Thank you so much sir for giving your valuable time to mock interview
Thank you, All the Best for career ahead!!
@@rdautomationlearning609 I got placed in reputed mnc with good package. Thank you sir for your guidance
@@harichandra1131 Congratulations!!
Please share your success story with us
Aswm video needed more of this type 🙌💯🙌🙌🙌
Thank you for response & watching videos and for your support!!!!
Thank You for Uploading this Mock Interview in Java Selenium (Software Testing) Training Interview❤️
It's my pleasure
I have my interview tomorrow. Got this video at a perfect time!
We have to fresher most helpful and hope that select easy attend the interview thank you so much sir ❤️
Thank you for watching!!
Now I'm doing core java &it is very useful fore me
Extraordinary performance of both. The interviewer is too good in attitude. As same reflection candidate is too good.
Thanks for watching!!
tq for uploading these kind of vedios sir it will give more knowledge,more confidence.
J spider and q spider students attendance plz ...
Yes sir,
Hello
Hello 😹😹mereko malum hai kyu bola aisa 😹mock seasons chalree vashi wale me
Which branch
@@LaughAdda BE electronic & I have done full stack java developer course at qspider
Perfect timing for my interview next week, thank you!
Thank you, All the Best for career ahead!!
How did the interview go? Can you please share your experience?
Thank you for watching!!
@@sahiljagtap1958 I now work at my dream company...I can't believe it! I watched some videos from @RD Automation Learning and practiced writing automation tests.
@@Jumbiiiee That's really great! Congrats! btw in which company?
Thank you sir useful and different questions
Thank you for response & watching videos and for your support!!!!
Best one .... Thank you....
A very good interview
Thank you so much for valuable information
Thank you for response & watching videos and for your support!!!!
Sir tell your own words sir that vl b beneficial for us
Thank you for uploading this kind of great video ,this is very helpful those peoples are ready to crack the mock interviews 🥰👌🏿
Thank you for watching!!
@@rdautomationlearning609
Can you please schedule one mock interview for me sir.... because I m also tried to get job because your mock is very helpful for facing the interview
Excellent interview 😊
Thank you for response & watching videos and for your support!!!!
It was the Perfect Interview for the freshers Thanks to Both of You and if anyone knows if that guy get the job let me know...
Yes he got the Job
Hey I want job I am doing java full stack devloper cource.
@@rdautomationlearning609 which company?
Best video ever
Thank you for response & watching videos and for your support!!!!
Good
Thanks
Nice vid.
Thank you Karthick for watching!!
Sir plz one video in core java,web server, sql interview questions
nice sir!!!!
Thanks for watching.
Nice
Thanks for watching!
@@rdautomationlearning609 hmmm
Time Stamp : 14:10
//Find a number is Palindrome or not || Java Solution
class Solution {
// Method to check if the given integer is a palindrome
public boolean isPalindrome(int x) {
// Convert the integer to a string for easier manipulation
String c = Integer.toString(x);
// Convert the string to a character array
char[] cArr = c.toCharArray();
// Get the length of the character array
int len = cArr.length;
// Initialize the 'end' pointer to the last index of the character array
int end = len-1;
// Iterate over the first half of the character array
for(int i=0; i
good bhava ,,i am also from pachora...
About pointers
we do have object refrence variable whihc stores adressof location where the object is stored in heap
and about pointer it gives the memory location then whats the diffrence between pointer and object refrence variable
Sir, can you please take my mock interview also?? It will be very helpful for me!! Thank you. :)
i wish my interview will be as easy as this one
The hiring person so cool man.
Thank you
Bro, ask questions on agile methodology pls cover everything..
Okay sure
Grt
Thank you for response & watching videos and for your support!!!!
Access Specifiers:
Default: within the package
Public: can be access by any class or method
Private: within the class
Protected: can be accessed by class of same package and subclass extends the child class
Constructor can not be static as they are use to initialise the object, if someone intentionally do so, they will get compile time error
Object is super class of all the classes
Using Inheritance we acquire member instance and member function of parent classs into the child class using extend keyword.
Different Types of Inheritance
Single inheritance.
Multi-level inheritance.
Multiple inheritance.
Hierarchical Inheritance.
Hybrid Inheritance.
Aggregation
It is a special form of Association where:
It represents Has-A’s relationship.
It is a unidirectional association i.e. a one-way relationship. For example, a department can have students but vice versa is not possible and thus unidirectional in nature.
In Aggregation, both the entries can survive individually which means ending one entity will not affect the other entity.
Composition is a restricted form of Aggregation in which two entities are highly dependent on each other.
It represents part-of relationship.
In composition, both entities are dependent on each other.
When there is a composition between two entities, the composed object cannot exist without the other entity.
I am exactly in the same level as this guy
Sir please upload sql manual testing interview 🙏 sir
In this video all questions asked from opps concept..
No aisa nhi h
As much I know there is no specifier in java these are modifiers
It is called specifier as well as modifier
@@hanmanttryambakhudekar9181 no concept of specifier in java this is modifier
Specifier and modifier is same
Both are same , either we call it as a modifier or specifier ..so it is not a problem....
Sir v want a video on hibernate jpa spring boot
Difference between Aggregation and composition ? Plz
Aggregation is weak relationship while composition is string relationship like car and indicator' s relationship is example of aggregation but car and engine's relationship is composition ... Without aggregation the system is dtill complete but without composition its not
@@javeriaislam2259 thank you for your wonderful explanation with real time example 😊♥️ if you dont mind, will you please give example for technical
There is no Access specifier in Java. They are called as Access modifiers....
Both are same
Actually there is no difference between access specifier and access modifier in Java they both mean the same and Access modifier is the new and official term used instead of access specifier
Those are same
Both are same bro
Can you please provide a video on parallel tests execution without using cypress cloud on GitHub actions. Tests should be run on GitHub actions without cypress cloud.
How to join your mocks for core java sir? Where to register?
Sir I have done Engineering in EC in 2018 and having knowledge of Manual Testing.So Can I get Job?
yes why not
Sir can you make pdf for java interview questions with answers for cracking interview sir pleaase i am from mechanical background i m trying for software field
Iam completed my graduation in 2018 can i eligible for taking course on testing.what is the popular course on testing and best for the future.
Hi bro
I am working in TCS as contact employee from 1.3 years now TCS is offered me for permanent position, total 2.6 years of experience current CTC is 3.5. should i accept TCS permanent offed and what CTC need to ask
5-6 LPA
Kya profile hai bhai
I have completed my graduation in BCA in 2018 .There is 4 yrs gap . So, what I'll say in interview. In these 4yrs I was trying to crack gvrnt exam but I can't...also suffering from some medical issue...
Did you get the job
please conduct mock interview on core java ...how i get it please explain
Need opportunity 😕
Jva developer interview questions again sir
Can you take my mock on Core java and DSA?
Sure please share your CV at rdautomationlearning@gmail.com
Ever answer said ..only long form any .not satisfied every answer..only interview er is perfect n basically concept answer
....for palindrome, wouldn't it be easier to just convert the number to string and reverse it then compare both? Or just reverse half of the string, then compare left and right part?
stringbuffer* or simply store it as array of numbers and compare indices
Thank you for response & watching videos and for your support!!!!
@@bartallen7023 Thank you for response & watching videos and for your support!!!!
@@bartallen7023 after gaining more experience from problem solving: my answer would be, use two pointers, one at start, one at end, move them towards the middle, check if chars are same or not, if not return false, otherwise after while loop ends(both at mid) return true
Sometimes companies are taking 2nd Manager Round n Client Rounds as well
So please request you to make more Mock on the same
THANKS 😊..
Please shedule my enterwiew
why aren't my interviews this easy :(
😂😂😂Same here bro,,
Sir how to apply for your mock interview?? Plz ans my query @RD Automation learning
Hi I have to check the number is positive then that time I use
If(n>0)
{
S.o.println (num is positive);
}
Else
{S.o.println("num is negative");
}
public class Don
{
public static void main(String[] args)
{
int number=15;
if(number > 0)
{
System.out.println(number+" is a positive number");
}
else if(number < 0)
{
System.out.println(number+" is a negative number");
}
else
{
System.out.println(number+" is neither positive nor negative");
}
}
}
OUTPUT =15 POSITIVE
Any vacancy in ur company sir🙁
Sir please ask me about core java this help me get place in a company
Is this real interview or practice interview
Practice
@@ashutoshrai2717 Thank you for response & watching videos and for your support!!!!
Practice
Did he get the job ?
Ha mil gayi
@@yashumate3404 don't get it language at all
@@gokulnath589 yep he got my "N"
Its a mock interview
How to give mock interview
As per my knowledge there is nothing called specifiers in java they are modifiers ... correct me if I'm wrong
they also called as access specifiers or access modifiers or access providers or visibility labels
@@ruch830 this terminology is only for C++ If you want proof then do one thing declare top level class as Private and see the error saying private modifier is not allowed on top level classes.
Compiler also considers private as modifier but not specifier..As private,public, protected, default are access specifiers in C++ but they all are considered as modifiers in java
They also called specifiers
0
good evening sir, sir could take my interview sir
Please share your CV at rdautomationlearning@gmail.com
Hello sir, could you please take my interview
Please share your CV at rdautomationlearning@gmail.com
Hello Sir, Could you please take my interview?
Please share your CV at rdautomationlearning@gmail.com
If you write public void static main, you are altering the signature by switching the order of the keywords void and static. This change will cause a compilation error, and the program will not run successfully.
Too many ads
can I give interview in hindi?
No
Sir, How can i join core java mock interview
Sir how to contact you
System.out.print("Brilliant"); ♥️
print("Brilliant");🤗
Thank you for response & watching videos and for your support!!!!