Online Electronics and Communication Engineering Test - Microprocessors Test
- This is a FREE online test. Beware of scammers who ask for money to attend this test.
- Total number of questions: 20.
- Time allotted: 30 minutes.
- Each question carries 1 mark; there are no negative marks.
- DO NOT refresh the page.
- All the best!
Marks : 2/20
Test Review : View answers and explanation for this test.
SUM = 2 + 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 = 90.
pop is not a keyword in C.
REAL F , C
READ * , F
C = (5. / 9.) * (F - 32.)
(95 - 32) and decimal must be added.
- An array has a fixed predetermined number of components.
- Any component of an array can be accessed using an index.
- An array variable name refers to a group of quantities by a single name.
- When array variables are used an appropriate declaration is required.
All are true.
int a, b, c,
a = 40;
b = a++ ;
c = ++a ;
Now the values of a, b, c are
The steps are : a is given the value 40, b is given the value of a before it is incremented (i.e., 40) and a is incremented to 41, a is incremented to 42 and c is given this value. Thus the result is 42, 40, 42.
Assertion (A): In C arithmetic operations are pemiissible on ints, floats and chars.
Reason (R): In C every arithmetic operator must be written explicitly.
ACC and CY
in 8085 are - CY = 1
- ACC = 10000001
After instruction RAL
is executed once the contents of CY and ACC
respectively will beAssertion (A): In microprocessor 8085 instruction LXIB, 90 FF H means register B and C are loaded with upper and lower bytes to get B = 90 H and C = FFH.
Reason (R): In 8085 the stack pointer indicates which memory location is to accessed.
- Multi-processing operation permits highly efficient parallel processing at several levels.
- Multi processing involves use of several processing units jointly on a common program and severally on different programs.
- In multi-processing the assignment of facilities to tasks, loading of programs and monitoring of I/O activity is taken care of by operating system.
Assertion (A): Structures are useful in DBMS.
Reason (R): Structures are very large numbers of applications besides DBMS.