Code Inspection

CODE INSPECITONROLES: 1) AUTHOR : Person who are responsible for software development/design. And are responsible to remove bugs/error discovered by inspeciton team. 2) MODERATOR: Team ...

Read more

Static polymorphism in C#

PRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement static/runtime polymorphism in C#. using System; namespace ATC {     public class ATC     {     ...

Read more

Dynamic runtime polymorphism in C#

PRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement dynamic/runtime polymorphism in C#. using System; namespace ATC {     public class Parent     {     ...

Read more

Implement Encapsulation in C#

PRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement Encapsulation in C#. using System; namespace ATC {     class AreaDimension     {       public double ...

Read more

Implement Inheritance in C#

PRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement inheritance in C#. using System; namespace ATC {     class CSE     {         ...

Read more

program in Java to implement concurrent execution of a job using threads.

PRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Write a program in Java to implement concurrent execution of a job using threads. class Multithreading extends Thread  {  public void ...

Read more

program in Java to implement exception handling

PRINCIPLES OF PROGRAMING LANGUAGES PRACT. Write a program in Java to implement exception handling.  public class JavaExceptionExample{   public static void main(String args[])   {   ...

Read more

Call by reference in C++

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

Read more

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

Implementation of pointers in C++

PRINIPLES OF PROGRAMMING LANGUAGES PRACT. Implementation of pointers in C++. #include <iostream> using namespace std; int main () {    int  age = 20;     int  ...

Read more