Past Guess Paper Computer Networks & Internet

Guess Paper 1 : Computer Networks & Internet Computer Networks & Internet Past Guess Paper. University Name – Confidential NOTE: Q.1 is compulsory, attempt any four questions from the remaining. All questions carry equal marks. Phones and other Electronic Gadgets are not allowed. Paper : Computer Networks & Internet Time Allowed: 3 hours Examination:   Final, … Read more

Past Guess Paper Fiber Optics Communication Networks

Paper 1 : Fiber Optics Communication Networks Fiber Optics Communication Networks Past Guess Paper. University Name – Confidential NOTE: Q.1 is compulsory, attempt any four questions from the remaining. All questions carry equal marks. Phones and other Electronic Gadgets are not allowed. Paper   : Fiber Optics Communication Networks Time Allowed: 3 hours Examination:   Final, Fall … Read more

Data Communications and Computer Networks Past Guess Paper

Paper 1 : Data Communications and Computer Networks Data Communications and Computer Networks Past Guess Paper. University Name – Confidential NOTE: Q.1 is compulsory, attempt any four questions from the remaining. All questions carry equal marks. Phones and other Electronic Gadgets are not allowed. Paper   : Data Communications and Computer Networks  Time Allowed: 3 hours … Read more

List of China Universities offering Scholarships

List of China Universities offering Scholarships. Anhui Agricultural University Anhui Medical University Anhui Normal University Anhui University Anshan Normal University Liaoning China Anshan Normal University Liaoning China Beihua University Beijing Film Academy Beijing Foreign Studies University Beijing Forestry University Beijing Institute of Technology Beijing International Studies University Beijing Jiaotong University Beijing Language and Culture University … Read more

C++ program to find the volume of a cube, cylinder, and sphere by function overloading

C++ program to find the volume of a cube, cylinder, and sphere by function overloading.

Output C++ program to find the volume of a sphere

     

C++ Program to convert a decimal number into binary by inline function

Write a program in C++ to convert a decimal number into binary without using an array and with inline function. The inline function inline T4Tutorials_Decimal_Number(int n) helps to increase the execution time of a program. The programmer can make a request to the compiler to make the inline function as inline T4Tutorials_Decimal_Number(int n). Making inline means that compiler … Read more

C++ Program to convert a decimal number into binary with friend function

Write a program in C++ to convert a decimal number into binary without using an array with a friend function. If we declare a function friend int show(T4Tutorials_Decimal_Number);  as a friend in a class T4Tutorials_Decimal_Number then this function friend int show(T4Tutorials_Decimal_Number);  can access the private and protected members of the class T4Tutorials_Decimal_Number. You must know that a global function can … Read more

C++ Program to convert a decimal number into binary with constructor and destructor

Write a program in C++ to convert a decimal number into binary without using an array and using the constructor and destructor. Constructor

Output Please enter Decimal number: 8 binary number = 1000 Destructor

Output Please enter Decimal number: 4 binary number = 100

C++ Program to convert a decimal number into binary with constructor overloading.

Write a program in C++ to convert a decimal number into binary without using an array by using the constructor overloading.

Output Enter 1 FOR Single parameter Constructor. Enter 1 FOR Single parameter Constructor. 2 You Have Selected Single Parameter Constructor. Enter First Decimal no. to convert into BINARY no: 4 Enter Second Decimal … Read more

Write a c++ program to find out the sum of an A.P. series by using the inline function.

Write a c++ program to find out the sum of an A.P. series by using the inline function. The inline function inline T4Tutorials_AP_Series::T4Tutorials_AP_Series_Function() helps to increase the execution time of a program. The programmer can make a request to the compiler to make the inline function as inline T4Tutorials_AP_Series::T4Tutorials_AP_Series_Function(). Making inline means that compiler can … Read more

Write a c++ program to find out the sum of an A.P. series using constructor and destructor.

Write a c++ program to find out the sum of an A.P. series using constructor and destructor. Constructor The constructor T4Tutorials_AP_Series() is a member function of the class T4Tutorials_AP_Series. The constructor T4Tutorials_AP_Series()has the same name as the name of its class T4Tutorials_AP_Series. When a new object T4Tutorials_AP_Series a; of the class T4Tutorials_AP_Seriesis executed, the constructor T4Tutorials_AP_Series() also … Read more

Write a c++ program to find out the sum of an A.P. series by using the constructor overloadin.

Write a c++ program to find out the sum of an A.P. series by using the constructor overloading. The concept of using more than one constructor with the same name is called constructor overloading. In this program, the constructor must obey one or both of the following rules. All constructors with the same name and … Read more

All Copyrights Reserved 2025 Reserved by T4Tutorials