My Real short STORY: How all freshers got job in 5 months in software field as a developer or tester. One thing that has always
Author: rsingh
Answer includes how to prevent object copy in C++ of a class with a simple example using copy constructor and assignment operator with C++ program
Answer: No, we cannot overload a destructor of a class in C++ programming. Only one empty destructor per class should be there. It must have
Answer: setDaemon(boolean value) – Set it to “true” to make thread as a daemon thread. Notes: It is mandatory to call this method before thread
Answer: Difference between blocked and waiting state of Java thread. BLOCKED state: If a thread is waiting for a lock to enter a synchronized block/method
The Fibonacci series is a sequence of numbers in which each number after the first two is the sum of the two preceding ones. It
We’ll discuss Fibonacci series using recursion and non-recursion approach with logic, and code example in java and code explanation. If you’re not familiar about the
Answer includes reason why virtual constructor in C++ is not possible. By the way there is no concept of C++ virtual constructor. Note that virtual
Hi, this post will describe why to use design patterns. In fact, what is the best reason to use a design pattern in software application
Answer: There are two algorithms, used for Java thread scheduling. Read difference between preemptive and non preemptive scheduling Java uses different scheduling algorithm on different