Differentiate between Peer-to-peer and Client-server Network Architecture. 

Differences between peer-to-peer and client-server network architecture are follows. Peer-to-peer Client-server network It is the simple connection of similar type of computers. This type of network contains two types of computer called a client and a server. It doesn’t contain any dedicated server and client. Each computer an work as both client and server in … Read moreDifferentiate between Peer-to-peer and Client-server Network Architecture. 

C Programming Questions For Practice

  What is programming language? Describe the various types of programming language with their merits and demerits [2+5] (2076, Set B Q.No. 4/ 2076 Set C Q.No. 3) What is programming language? Explain compiler, interpreter and assembler. [2+8] Explain different types of programming language. [10] (2074 Supp Q.No. 4) What are the differences between syntax … Read moreC Programming Questions For Practice

C programming Solution (Basic I/O & Decision Control Structure Questions)

Write a program to enter two number and find product. #include<stdio.h> #include<conio.h> void main() { int a,b,c; printf(“Enter first number:”); scanf(“%d”,&a); printf(“Enter second number:”); scanf(“%d”,&b); c=a*b; printf(“The Product is: %d”, c); getch(); }   2) Write a program to calculate area of triangle. #include<stdio.h> #include<conio.h> void main() { int b,h; float a; printf(“Enter breadth of … Read moreC programming Solution (Basic I/O & Decision Control Structure Questions)

C Programming Question Collection. Question Related to I/O Functions, Library Function, Sequential Control Structure, Decision Control Structure, and Unconditional Structure in C Program

CLICK HERE TO DOWNLOAD IN PDF FORMAT### –> SOLUTION TO THE QUESTIONS <– Question Related To I/O Functions 1. Write a program to enter two numbers and find product. 2) Write a program to calculate area of triangle. 3) Write a program to enter two numbers and perform all arithmetic numbers. 4. Write a program … Read moreC Programming Question Collection. Question Related to I/O Functions, Library Function, Sequential Control Structure, Decision Control Structure, and Unconditional Structure in C Program

Strings in C Programming , Notes On C string Functions with important questions (NEB Exams)

The string can be defined as one dimenensional array of characters terminated by null [‘\0’]. The characters arry or string is useed to manipulate text sucha as word or sentences. Eacha character in the array occupies one byte of memory and last character must alwaye be 0. The termination character (‘\0’) is important in a … Read moreStrings in C Programming , Notes On C string Functions with important questions (NEB Exams)

Array In C programming and One-Dimensional NEB Question Collection

Array: Array is a collection of similar data items stored at contiguous memory locations and elements can be accessed randomly using indices of an array. They can be used to store collection of primitive data types such as int, float, double, char etc. Declaration of Array: There are different ways to declare Arrays in C … Read moreArray In C programming and One-Dimensional NEB Question Collection