Search your topic

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Subject Names

Featured

Latest Feed

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

Memory Implementation of 3D Array.

#include <iostream> using namespace std; int main() {     int arr[2][3][2];     cout << “Enter 12 values: n”;     for(int i = ...

Read more