Answer:
Option A is the correct answer for the above question.
Explanation:
"executive info system" means the Executive Information system. It is also called an Executive information system that is used for the management decision system. It's basic use for the purpose of decision making. It is very important for business purposes because it gives the decision for the business support system.
The question states that what is responsible for the decision making at the management level in any organization and option 'a' states about the 'EIS', which is right but the other is not because--
- Option b states OLTP which is an analysis concept.
- Option c states about TSS which is responsible for Transaction.
- Option d states about DSS which has to take the decision but the question asks about the part of DSS.
Answer:
TRUE
Explanation:
The Flow of Control refers to the order in which the statements are executed.
One can understand the code if he knows the flow of control.
Answer: Anchoring
Explanation: Anchoring is the property that helps in the controlling of resizing , position and maintaining the distance control. Anchor control will get activated when the screen of the system starts to change the resolution or the size of the screen.
The anchor control gets into action for the controlling the position in the vertical or horizontal direction or bottom of the form, distance managing according to the edges etc.
Answer:
1 <?php
2 if (isset($_GET["submit"])) {
3 echo "Welcome " . $_GET["name"];
4 }
5 ?>
6
7
8 <form method="get">
9 <input name="name" type="text" placeholder="Enter your name"/>
10 <button name="submit" type="submit">Submit</button>
11 </form>
12
13 <?php
14 ?>
<h2>
Explanation:</h2>
Lines 1 - 5 check if the user has clicked on the submit button.
If the button has been clicked the a welcome message is
shown.
Lines 8 - 11 create a form to hold the text box and the submit button
Give the form a <em>method</em> attribute of value <em>get [Line 8]</em>
<em> </em>Give the input field a <em>name</em> attribute of value <em>name </em>and a
placeholder attribute of value <em>Enter your name [Line 9]</em>
<em> </em>Give the button a <em>name </em>attribute of value <em>submit</em> and a <em>type</em>
attribute of value <em>submit</em> <em>[Line 10]</em>
<em />
<em />
<em />
<em />
PS: Save the file as a .php file and run it on your server. Be sure to remove the line numbers before saving. A sample web page is attached to this response.