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 moreCODE 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 morePRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement static/runtime polymorphism in C#. using System; namespace ATC { public class ATC { ...
Read morePRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement dynamic/runtime polymorphism in C#. using System; namespace ATC { public class Parent { ...
Read morePRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement Encapsulation in C#. using System; namespace ATC { class AreaDimension { public double ...
Read morePRINCIPLES OF PROGRAMMING LANGUAGES PRACT. Implement inheritance in C#. using System; namespace ATC { class CSE { ...
Read morePRINCIPLES 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 morePRINCIPLES OF PROGRAMING LANGUAGES PRACT. Write a program in Java to implement exception handling. public class JavaExceptionExample{ public static void main(String args[]) { ...
Read morePRINCIPLES 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 morePRINCIPLES 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 morePRINIPLES OF PROGRAMMING LANGUAGES PRACT. Implementation of pointers in C++. #include <iostream> using namespace std; int main () { int age = 20; int ...
Read more