a) hardware and software approach
b) management and users approach
c) person and systems approach
d) all of the mentioned
Answer: c
Explanation: person and systems approach
Related Posts
What will be the output of the following PHP code?
<?php
$age = array(“Harry” => “21”, “Ron” => “23”,”Malfoy” => “21”);
array_pop($age);
print_r(array_change_key_case($age, CASE_UPPER));
?>What will be the output of the following PHP code?
<?php
$a = array(“red”, “green”, “blue”);
array_pop($a);
print_r($a);
?>What will be the output of the following PHP code?
<?php
$a = array(“a”=>”red”, “b”=>”green”, “c”=>”blue”);
echo array_shift($a);
print_r ($a);
?>What will be the output of the following PHP code?
<?php
$a1 = array(“red”, “green”);
$a2 = array(“blue”, “yellow”);
print_r(array_merge($a1, $a2));
?>What will be the output of the following PHP code?
<?php
$a1 = array_fill(3, 4, “blue”);
$b1 = array_fill(0, 1, “red”);
print_r($a1);
echo “<br>”;
print_r($b1);
?>What will be the output of the following PHP code?
<?php
$a1 = array(“a”=>”red”, “b”=>”green”, “c”=>”blue”, “d”=>”yellow”);
$a2 = array(“e”=>”red”, “f”=>”green”, “g”=>”blue”);
$result = array_diff($a1, $a2);
print_r($result);
?>What will be the output of the following PHP code?
<?php
$a = array(“A”, “Cat”, “Dog”, “A”, “Dog”);
print_r(array_count_values($a));
?>
Join The Discussion