Articles by Team EasyExamNotes

Call by value in C++

PRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Write a program in C++ to implement call by  value parameter passing Methods. #include <iostream> using namespace std; void show(int x) … Read more

Generic Subprograms

GENERIC SUBPROGRAMS A generic subprograms is a subprogram which have parametric polymorphism. A generic subprogram can accept different types of values of same single memory … Read more

PPL: Java Threads

JAVA THREADS   Viva Voce on Java Threads Q1. What is the thread? A thread is a lightweight sub process. Q2. What is multithreading? Multithreading … Read more