Popular posts from this blog
DATA TYPES IN PYTHON
Integer and Float • Variables can hold values of different types called data types. Some of the commonly used data types in python are integer, float, bool, strings, lists, tuples, dictionary, sets, etc • The data type of a variable is dependent on the value of the variable. For example, if the value of the variable userAge is 18 i.e userAge = 18 Here the data type of the variable is an integer. • For float data type the value of the variable should be a decimal. For example, if you create a variable for the percentage of students in class studentPercentage with a value 78.5 i.e studentPercentage = 78.5 Strings • A string data type is used to store textual information into a variable. • To store the value of a string data type, we need to put the value inside double quotes 11 " or single quotes ''. For example schoolName = "Bright International" characterName = 'Eva' ...
COMPUTER LANGUGES
HELLO FRIENDS TODAY TOPIC IS COMPUTER LANGUAGES YOU KNOW ABOUT COMPUTER LANGUAGES. IF YES SO LET'S START. COMPUTER LANGUAGES ---- C++, JAVA, JAVASCPIT,PYTHON,PHP,HTML,PASCAL ETC. COBOL LANGUAGE IS USED FOR BUSINESS APPLICATION. WHAT IS COMPUTER LANUAGES? A computer languages is a formal language is used for communicate with a computer. types of coding to code (1) text based (2) blocked based. computer cannot understand natural languages. we our text any code to compiler is translate to high level languages into assembly languages. also translate to machine languages. WHAT IS BINARY LANGUAGES? two symbol binary system 0 and 1 computer understand only binary languages. the 0 and 1 to represent binary, a pattern is binary digits (bit) is used for various method of encoding data such as character string into bit string. also refer to machine languages. we can code to english computer can not understand, only understand machine language form of...

Comments