Consider the following statements about syntax or semantic errors in Python programming language :
A – A program with syntax errors will not run to the end of the program.
B – A program with only semantic errors will not run to its end.
C – Syntax errors in programs are also called logical errors.
D – Programs with semantic errors may not produce correct outputs for some inputs.
Which of the following statements is correct ?

 

Consider the following statements about Software Agents :
A – A software agent is capable of autonomous actions in order to meet its design objectives.
B – A software agent is capable of user-directed actions in order to meet users’ objectives.
C – A multi- agent system is composed of set of interacting agents.
Which of the above statements is /are true ?

 

Consider the following systems :
A – Human blood circulatory system.
B – Human digestive system.
C – Human nervous system.
The system(s) that can be considered as open system(s) is/are

 

Consider the following statements regarding the requirements of a Bank ATM :
A – A customer shall be able to inquire his/her bank balance.
B – A customer should be able to deposit money through ATM.
C – Maximum withdrawal amount per day is Rs. 20,000.
Which of the above requirements is/are functional requirements(s) of the ATM ?

 

Consider the following statements about an automated systems :
A – Human intervention is not required or minimally required
B – All the operations of the machine are controlled by the micro chip installed in the machine.
C – A system that processes daily banking transactions can be considered as an automated system.
Which of the above statement(s) is/are correct ?

 

Which of the following systems should always be based on Artificial Intelligence ?
A – Expert Systems
B – Enterprise Resource Planning (ERP) Systems
C – Multi- Agent Systems
D – Geographical Information Systems

 

Consider the following HTML style rules :
A – body {color : red : }
B – h1 {color : red :}
C – p {color : red :}
h1 { color :red:}
D – p, h1 {color : red : }

Which of the above rules will display h1 elements and all the paragraphs of the following document in red ?

<body>
<h1>Trees</h1>
<p> Coconut tree</p>
<p>Rubber tree</p>
<h1>Flowers</h1>
<h2>Rose<h2>
</body>

 

 

Consider the following statements on Static Random Access Memory (SRAM) :
A – SRAM needs periodic refreshing B – It is used for Cache memory
C – Registers are made of SRAMs

Which of the above statement(s) is/are correct ?

 

Which of the following Python expressions shows the correct evaluation order of the Python expression 10–4 *3/2–5 ?

 

What is the value of variable z after executing the Python statement z = 1 == 2 ?