retagged by
1,432 views
0 votes
0 votes
In 8086 assembly language, which of the following is not in the category of reserved words ?
(A) directive
(B) predefined symbol
(C) operator
(D) label
retagged by

1 Answer

Best answer
3 votes
3 votes

Reserved words in 8086 are given as below

Instruction mnemonics, directives, type attributes, operators, and predefined symbols

Reserved words cannot be used as identifiers .

1-247 characters, including digits

not case sensitive

first character must be a letter, _, @, ?, or $

so ans is D 

selected by

Related questions

0 votes
0 votes
1 answer
2
Beyonder asked Mar 4, 2017
1,378 views
In x86, which of the following is not executed by itself ?(A) cld(B) rep(C) std(D) nop
0 votes
0 votes
1 answer
3
manikgupta123 asked Apr 29, 2019
970 views
Which part in 8086 microprocessor is responsible for fetching instructions into the queue?BIUEUStackRegisters
3 votes
3 votes
4 answers
4
go_editor asked Aug 9, 2016
8,652 views
What will be the output at $\text{PORT1 }$if the following program is executed?MVI B, 82H MOV A, B MOV C, A MVI D, 37H OUT PORT1 HLT$37H$$82H$$B9H$$00H$