How many bit combinations are there in a byte?

Answer Posted / bari

2 raise to no. of byte ie. for three byte ,8 bit combination

Is This Answer Correct ?    4 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is meant by iomanip in c++?

616


Differentiate between structure and class in c++.

608


What is flag in computer?

614


What do you mean by a template?

634


what is upcasting in C++?

731






Write a note about the virtual member function?

613


What does it mean to declare a member function as virtual?

593


If a header file is included twice by mistake in the program, will it give any error?

563


What character terminates all character array strings a) b) . c) END

684


write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

4860


What do you mean by delegate? Can a user retain delegates?

537


How does the copy constructor differ from the assignment operator (=)?

633


Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list

622


Describe the syntax of single inheritance in C++?

651


What are put and get pointers?

593