Java Development Mock Interview | Part 2 | Interview Questions for Java Developers

  Рет қаралды 15,251

Turing

Turing

Жыл бұрын

This fresh chapter of Turing Mock Interview takes a look at technical interview questions that often appear in a Java Development interview. Watch the video to understand the concepts you must brush up on before sitting for a Java test and interview. Let us know in the comments below which tech stack you'd like us to cover next.
Watch the first part of the Java Development Mock Interview here: bit.ly/3Wlm1dY
Become a Turing software developer today.
Take the Turing test now: turing.com/s/Qhro34
Find remote US software jobs: turing.com/s/ezIxN2
Hire software developers of Silicon Valley caliber: turing.com/s/hchmho
Watch more Turing.com reviews: turing.com/MVWqQr
To stay informed about the latest updates at Turing, follow us on:
Instagram: / turingcom
Facebook: / turingcom
Twitter: / turingcom
LinkedIn: / mycompany
...
#JavaInterview #JavaDevelopers #JavaDeveloperJobs #TuringJobs #RemoteJobs #TuringDeveloper
About Turing.com:
Turing connects exceptionally talented software developers to remote engineering jobs at Silicon Valley and US-based companies. 200+ companies, including those backed by Google Ventures, Andreessen Horowitz, Founders Fund, Kleiner Perkins, and Bloomberg, have successfully hired Turing developers.
- For over 2M software developers across 150+ countries, Turing.com is the preferred platform for finding remote US software engineering jobs.
- Turing offers a wide range of long-term, full-time remote jobs for Full Stack, Front-End, Back-End, Mobile, DevOps, and AI/ML developers.
- Turing remote developers enjoy higher pay than local standards in most countries, a healthy work-life balance, a strong sense of community, and rapid career growth.
Turing is backed by well-known investors like WestBridge Capital, Foundation Capital, Facebook’s first CTO (Adam D’Angelo), executives from Google, Facebook, Amazon, Twitter, and Founders Fund (investors in Facebook, Tesla, Asana, etc.), among others. The company is led by serial AI entrepreneurs Jonathan Siddharth and Vijay Krishnan, whose previous firm leveraged remote talent and was successfully acquired.
The company was founded in 2018 and is headquartered in Palo Alto, California.

Пікірлер: 29
@tobigforyou
@tobigforyou 7 ай бұрын
I think the trick to passing these interviews is having an extremely thick accent so that no one, including the interviewer understands what you're saying.
@MA-rf6sg
@MA-rf6sg 17 күн бұрын
exactly talking nonsense
@bedeamadi9317
@bedeamadi9317 15 күн бұрын
🤣🤣🤣
@JYNx100pre
@JYNx100pre Жыл бұрын
Hi Developers, I hope this can help you with questions in this interesting interview. 1. Could you please introduce yourself and tell me a litle bit about your background experience? 0:37 2. Could you please tell me a litle bit more about some Java projects that you have been working on? 1:45 3. Is there anything like a static class? 2:36 4. What are the use case for a static class? 4:06 5. How can i syncronize two process in Java? 5:05 6. What is static initializer and the end and they are related to static class or is the total different? 6:25 7. What's the difference between fail fast and Fail safe? 7:33 8. What is the structure of Java Heap? 8:47 9. What's the trade-off between using an unordered array and using a ordered array? 10:06 10. Can you explain marshalling and unmarshalling? 12:12 11. What is the difference between serial and throughput garbage collector? 14:05 12. When we use Linked List over an ArrayList in Java? 14:38 13. Why use Array of char is preferred for password over a string? 15:30 14. Could you please provide examples when a finally block won't be excecuted in Java? 16:09 15. Why is a string length accurate? 17:15 If you want to discuss some questions, please comment to do them together. Regards
@coudiaexplore
@coudiaexplore Жыл бұрын
Java heap is the main memory space available for all programs that may be running on the system and it is where we have the String pool, the soft reference, the weak reference, and hard references.
@yaphetb5717
@yaphetb5717 Жыл бұрын
Marker interfaces are iterfaces that doesn't have any methods inside them and they are just used to tag a class for JVM for some special behavior . For example Seriazable & Cloneable intrefaces are marker interfaces.
@coudiaexplore
@coudiaexplore Жыл бұрын
fail-fast and fail-safe is related to all collections(those implementing the Iterable interface), mainly the way the iterator works for thread-safe vs non-thread-safe collection non-thread-safe collections will throw ConcunrentModifException if we try to remove an element while looping for example. of course, is more than that
@PRISOM1988
@PRISOM1988 6 ай бұрын
02:25 Peter has substantial experience in Java development and has worked on biometric authentication solutions. 04:50 In Java, there is no traditional static class, but it can be simulated by making the class final, constructor private, and all fields and methods static. 07:15 Static initializers in Java and synchronizing two Java processes 09:40 Static initializer and fail fast vs fail safe 12:05 Difference between dead objects and their impact on memory management 14:30 Marshalling and demarshalling in Java 16:55 Use linked lists for faster insertion, ArrayList for faster access 19:19 Java's string length is not accurate due to handling of characters outside the basic multilingual plane. Crafted by Merlin AI.
@coudiaexplore
@coudiaexplore Жыл бұрын
Static classes are generally used for utility functions via static methods
@coudiaexplore
@coudiaexplore Жыл бұрын
It is possible to have a static class in java, for example, an inner class can be static
@slr150
@slr150 7 ай бұрын
I think the answers have been rehearsed. It seems that the interviewee can read the interviewer's mind. Static class means different things in different languages, from the explanation given they mean a static class from C# (you need to read the interviewer's mind to figure that out).
@coudiaexplore
@coudiaexplore Жыл бұрын
In Java, process synchronization can be done via the built classes present in java. util.concurrent like Lock, Semaphore, CompletableFuture, and so on. I think this question was about multithreading.
@eugenegusev7859
@eugenegusev7859 11 ай бұрын
even more, synchronisation can be done via synchronisation blocks and wait() and notify() methods. mutexes can be easier implemented using them
@slr150
@slr150 7 ай бұрын
No the question was literally about communicating between multiple processes (not threads). There is no out of the box solution for this in Java, you can use things like lock files, DB transactions or use a distributed locking frameworks such as Hazelcast.
@coudiaexplore
@coudiaexplore Жыл бұрын
Static initializer is not related to static class, it is just a block of code that must be run before the constructor and is mainly used for data initialization or initialization of heavy process/object.
@eugenegusev7859
@eugenegusev7859 11 ай бұрын
wrong. it doesn't related to the constructor. it is triggered not only when accessing static method/field but when class loaded too - Class.forName, ie it can be triggered even while no object is being created (and therefore no constructor will be called)
@rekhabalakrishna4145
@rekhabalakrishna4145 Жыл бұрын
Marker interface is an interface with no methods declared in it
@eugenegusev7859
@eugenegusev7859 11 ай бұрын
there is an interesting question about ordered and unordered array. I wonder what data type did you keep in your mind? in the case we have 1 millions entries in array with values from 1 to 10. and let's say 900 thousands of them are 1. what is the time complexity to find out an index of 1st element with value 3 or 4 in this arrays? and why?
@elianosetekpo1103
@elianosetekpo1103 Жыл бұрын
Hi Jose, Can you also cover a C# . Thanks!
@mmmm-wm8ci
@mmmm-wm8ci 2 ай бұрын
Will this helo in cracking turing java assessment
@AshutoshMohanty07
@AshutoshMohanty07 10 ай бұрын
Marker interface are used as a indication for JVM to process certain actions. Like Serializable or Clonable. When you don't mark a class with these markers then you might get NotSerializabeException or CloneNotSupportedException kind of errors.
@davidblbulyan3077
@davidblbulyan3077 10 ай бұрын
You can create your own "marker interface" and process it using reflection api. As I know, marker interfaces were used before annotations were added
@davidblbulyan3077
@davidblbulyan3077 10 ай бұрын
So marker interface is an interface without methods
@aaqibhamdule73
@aaqibhamdule73 Жыл бұрын
Hi , I Have completed all pre-screening tests , and finalised my profile, when should I expect my intro call?
@Turingcom
@Turingcom Жыл бұрын
Hi @aaqibhamdule73, 🙂 Our matching engine is actively looking for the perfect job for you now. Your profile is being presented to multiple companies seeking your skills. This can be time consuming sometimes, but we request the developers to be patient during this process as we’re trying to find the perfect fit for your skills and seniority. 🤝 -Turing
@ernestsakala417
@ernestsakala417 7 ай бұрын
I have been waiting to get matched its been almost a year
@NiteshSingh-bv9lu
@NiteshSingh-bv9lu Жыл бұрын
Hi Jose, I am Nitesh Singh from India. I am a senior Android developer with a total of 5.6 years experience . Currently looking for new job in out of country. So please help me advice me how to crack interview. Please 🙏
@Turingcom
@Turingcom Жыл бұрын
Thanks for getting in touch Nitesh😀 We really appreciate your initiative and enthusiasm to work with Turing! We’d love to bring you on board and find a job for you. 😊 Turing’s Intelligent Talent Cloud uses AI to connect the world’s best software developers to high-quality U.S. jobs. 🚀 Work for top companies remotely, visit www.turing.com/jobs All the best! Turing
@MA-rf6sg
@MA-rf6sg 17 күн бұрын
He is just talking mumling rather than asnweer the questions lol
Slow motion boy #shorts by Tsuriki Show
00:14
Tsuriki Show
Рет қаралды 9 МЛН
World’s Largest Jello Pool
01:00
Mark Rober
Рет қаралды 82 МЛН
Red❤️+Green💚=
00:38
ISSEI / いっせい
Рет қаралды 84 МЛН
Sigma girl and soap bubbles by Secret Vlog
00:37
Secret Vlog
Рет қаралды 14 МЛН
First Round | Java Developer Interview in Accenture experience
31:19
Java is Awesome
Рет қаралды 2,5 М.
MUST KNOW junior role JAVA interview questions
42:15
Keep On Coding
Рет қаралды 106 М.
Java Interview Questions | HR Mock Interview On Core, Advance, JDBC | By Kiran Sir
26:36
The Kiran Academy - Java By Kiran
Рет қаралды 123 М.
Cognizant | real time java interview series| Interview 15 | part 1
21:33
JAVA INTERVIEW BUDDY
Рет қаралды 66 М.
Kumanda İle Bilgisayarı Yönetmek #shorts
0:29
Osman Kabadayı
Рет қаралды 2,1 МЛН
Я купил первый в своей жизни VR! 🤯
1:00
Вэйми
Рет қаралды 3,3 МЛН
Samsung laughing on iPhone #techbyakram
0:12
Tech by Akram
Рет қаралды 5 МЛН
Самые крутые школьные гаджеты
0:49
ВАЖНО! Не проверяйте на своем iPhone после установки на экран!
0:19
ГЛАЗУРЬ СТЕКЛО для iPhone и аксессуары OTU
Рет қаралды 6 МЛН