Time Left - 08:00 mins

RRB JE (IT): Information System+ System Programming Quiz 4

Attempt now to get your rank among 123 students!

Question 1

An intentionally disruptive program that spread from disk to disk is known as a –

Question 2

Which of the following are advantages of CD – ROM as a storage Media?

Question 3

Effectiveness of communication can be traced from which of the following?
(a) Attitude surveys
(b) Performance records
(c) Students attendance
(d) Selection of communication channel
Select the correct answer from the codes given below:

Question 4

In communication, the language is:

Question 5

Which of the following is not a principle of effective communication?

Question 6

The term ‘grapevine’ is also known as:

Question 7

Consider the following grammar CFG
SÃ A
AÃ BC|DBC
BÃ Bb|
CÃ c|
DÃ a|d
The grammar G is

Question 8

Consider the following grammar.
S→aSa |aAa
A→aA| a .
The grammar is

Question 9

Identify the “call tree” for the following program.
Procedure main();
Procedure P1(a: integer)
begin
if(a<>0) then
begin
P1(a-1);
P2(a);
end
end;
Procedure P2(b: integer)
begin
if(b<>0) then
P2(b-1);
end
end;
begin
P1(1);
P2(1);
end;

Question 10

The structure or format of data is called :
  • 123 attempts
  • 0 upvotes
  • 2 comments
Apr 10GATE & PSU CS