Choose a topic to test your knowledge and improve your System programming skills
An example of intermediate language is ?
An assembly language is a
Which of the following are language processors?
A grammar for a programming language is a formal description of
Which of the following is most general phase structured grammar?
Context free language can be recognized by
Which is not true about syntax and semantic parts of a computer language
The term environment in programming language semantics is said as
Which of the following grammars are not phase structured
A grammar will be meaningless
Any syntactic construct that can be described by a regular expression can also be described by a
Context-free grammar (CFG) can be recognized by
Indicate which of the following is not true about 4GL?
The field that contains a segment index or an internal index is called
What will be output of the following code? #include int main(){ printf(“%d ”,sizeof(6.5)); printf(“%d ”,sizeof(90000)); printf(“%d”,sizeof(‘A’)); return 0; }
What will be output of the following c code? ( according to GCC compiler) #include int main(){ signed x; unsigned y; x = 10 +- 10u + 10u +- 10; y = x; if(x==y) printf(“%d %d”,x,y); else if(x!=y) printf(“%u %u”,x,y); return 0; }
What will be output of the following c code? #include int main(){ const int *p; int a=10; p=&a; printf(“%d”,*p); return 0; }
What will be output of the following c code? #include int main(){ int a= sizeof(signed) +sizeof(unsigned); int b=sizeof(const)+sizeof(volatile); printf(“%d”,a+++b); return 0; }
Which of the following is integral data type?
What will be output of the following c code? #include int main(){ volatile int a=11; printf(“%d”,a); return 0; }
What will be output of the following c code? #include const enum Alpha{ X, Y=5, Z }p=10; int main(){ enum Alpha a,b; a= X; b= Z; printf(“%d”,a+b-p); return 0; }
A compiler can check
In analyzing the compilation of PL/I program ,the term “lexical analysis” is associated with
24. In analyzing the compilation of PL/I program,the description creation of more optimal matrix is associated with
Which of the following is not a source error ?
A main procedural program contains modules. These modules are also called____________.
Programming languages are the tools that allow communicating between__________.
The actual text used to write the instructions for a computer program is called a_______________.
Language which have many types, but the type of every name and expression must be calculated at compile time are
In some programming languages, an identifier is permitted to be a letter followed by any number of letters or digits. If L and D denotes the sets of letters and digits respectively, which of the following expressions define an identifier ?
In COMAL language programs, parameters after name of procedure must be put in
Programming language COBOL works best if used for
In line "110 DIM num(10)" in BASIC language, 'Line 110' declares
Statement "130 num(subs) = 2*subs-1" is an example of
In high-level language COMAL, area is calculated as
Data types are differed on basis of
Function which is used in stepwise refinement of program is classified
When divisions of decimals are involved in program, these numbers are stored in
Programming languages such as COMAL and Pascal allow subroutine which is classified as
Items of data help making its structure is classified as
A special value placed at end of items data list is called
A special quantity named in a program and its value can be changed is called
In line "550 INPUT NUM: PRINT 6.9*NUM*NUM+27" of a BASIC program, 'PRINT and INPUT' is
Whole numbers from '0' and all negative numbers are classified as
In high-level language Pascal, area is calculated as
In line "100 INPUT NUM" of a BASIC program, NUM is if chosen by programmer is classified as
Type of statement written in sequence and are repeated until conditions met is classified as
Size of an array is declared by
In repeat-until loop 'UNTIL Option>0 and Option<8 AND INT(Option) = Option' , INT function is classified as
Sequence of instructions that are carried out for a particular task is classified as