Give well illustrated flowchart and an algorithm that display minimum, maximum and average numbers given a list of numbers. Write a C++ program that asks the user to enter an integer number N and computes the factorial of N. The program should...
1) Write in pseudocode an algorithm that receives as input the root of a tree and it returns true if the tree is a proper binary tree (i.e. each internal node has 2 children) and false otherwise. Assu In C++, what is "tail rec...
Using C++, load 10 integers into an array, then prompt the user for a number from 0 to 9. Display the element at the array position the user selects. For example, it should output exactly like this: R 1) Write in pseudocode...