Skip to main content

Class 11 (22-01-2021) only for Computer Science Students

  ☺Note: All Questions are note it in your copy.

Question No-1: Evaluate the following C++ expressions where a, b, c are integers and d, f are floating point numbers. The Value of a = 6, b = 2, d = 1.5 
a) f = a + b/a
b) c = ( a++) * d + b
c) c = a – ( b++ ) * (–a)

Question No:2 Explain Unary,Binary and Ternary Operators? Give Example of each type.

Answer:-

          Unary Operators: Operators that operates or works with a single operand are unary operators.
Example: (++, –)


Binary Operators: Operators that operates or works with two operands are binary operators.
Example: +, –, *, /.
Example: +, –, *, /.  


    Ternary Operator: These operator requires 3 expressions or operands to function.
Example: Conditional operator- Expression1 ? Expression2 : Expression3 .
Here, Expression1 is the condition to be evaluated. If the condition(Expression1) is True then we will execute and return the result of Expression2 else return the result of Expression3.


Example: Conditional operator- Expression1 ? Expression2 : Expression3 .
Here, Expression1 is the condition to be evaluated. If the condition(Expression1) is True then we will execute and return the result of Expression2 else return the result of Expression3.


Question: Write difference between keyword and identifier. 

Keywords:



1) Keywords are pre-defined or reserved words in a programming language
2) Each keyword is meant to perform a specific function in a program. Since keywords are referred names for a compiler, they can’t be used as variable names.
3) C language supports 32 keywords while in C++ there are 31 additional keywords other than C Keywords.



Identifiers:
1) Identifiers are used as the general terminology for naming of variables, functions and arrays.
2) These are user defined names consisting of arbitrarily long sequence of letters and digits with either a letter or the underscore(_) as a first character. Identifier names must differ in spelling and case from any keywords.
3) There are certain rules that should be followed while naming c identifiers:
They must begin with a letter or underscore(_).
They must consist of only letters, digits, or underscore. No other special character is allowed.
It should not be a keyword.
It must not contain white space.
It should be up to 31 characters long as only first 31 characters are significant.


Question 4:- Write a function in C++ having 2 parameters x


 and n of integer type with result type float to find the sum


 of following series :-

1 + x/2! + x2/3! +…………………..+xn/(n+1)! 3

 


Comments

Popular posts from this blog

Input Devices

Input Devices(इनपुट डिवाइस ) Input device enables the user to send data, information or control signals to computer. Central processing unit of computer receives the input and processes it to produce output. Some of the popular input devices are: Keyboard Mouse Scanner Joystick Light Pen Track ball Digitizer Microphone Magnetic Ink Character Recognition (MICR) Optical Character Reader (OCR) Keyboard (कीबोर्ड ) It is a basic input device that is used to enter data by pressing keys. It has different sets of keys for letters, numbers, characters and functions. QWERTY keyboard is the commonly used keyboard to enter data. Mouse (माउस) It is a hand held input device. It is used to move cursor or pointer across the screen. It generally has left and right button and a scroll wheel between them. Laptop computers come with a touch pad that works as a mouse. It lets you control the movement of cursor or pointer by moving your finger over the touchpad. Scanner (...

Memory Hierarchy

Memory Hierarchy A memory unit is an essential component in any digital computer since it is needed for storing programs and data. Typically, a memory unit can be classified into two categories: The memory unit that establishes direct communication with the CPU is called  Main Memory . The main memory is often referred to as RAM (Random Access Memory). The memory units that provide backup storage are called  Auxiliary Memory . For instance, magnetic disks and magnetic tapes are the most commonly used auxiliary memories. Apart from the basic classifications of a memory unit, the memory hierarchy consists all of the storage devices available in a computer system ranging from the slow but high-capacity auxiliary memory to relatively faster main memory. The following image illustrates the components in a typical memory hierarchy. Auxiliary Memory Auxiliary memory is known as the lowest-cost, highest-capacity and slowest-access storage in a computer system....

MAIN MEMORY

Main Memory The main memory acts as the central storage unit in a computer system. It is a relatively large and fast memory which is used to store programs and data during the run time operations. The primary technology used for the main memory is based on semiconductor integrated circuits. The integrated circuits for the main memory are classified into two major units. RAM (Random Access Memory) integrated circuit chips ROM (Read Only Memory) integrated circuit chips RAM integrated circuit chips The RAM integrated circuit chips are further classified into two possible operating modes,  static  and  dynamic . The primary compositions of a static RAM are flip-flops that store the binary information. The nature of the stored information is volatile, i.e. it remains valid as long as power is applied to the system. The static RAM is easy to use and takes less time performing read and write operations as compared to dynamic RAM. The dynamic RAM exhibits...