adplus-dvertising

Welcome to the Arrays and Functions in PHP MCQs Page

Dive deep into the fascinating world of Arrays and Functions in PHP with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Arrays and Functions in PHP, a crucial aspect of PHP. In this section, you will encounter a diverse range of MCQs that cover various aspects of Arrays and Functions in PHP, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within PHP.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Arrays and Functions in PHP. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of PHP.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Arrays and Functions in PHP. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Arrays and Functions in PHP MCQs | Page 14 of 15

Q131.
What will be the output of the following PHP code?
<?php
    $number = array ("4", "hello", 2);
    echo (array_sum ($number));
    ?>
Discuss
Answer: (d).6
Q132.
What will be the output of the following PHP code?
<?php
    $array1 = array ("KA", "LA", "CA", "MA", "TA");
    $array2 = array ("KA", "IA", "CA", "GA", "TA");
    $inter = array_intersect ($array1, $array2);
    print_r ($inter);
    ?>
Discuss
Answer: (b).Array ( [0] => KA [2] => CA [4] => TA )
Q133.
Which one of the following PHP functions can be used to build a function that accepts any number of arguments?
Discuss
Answer: (b).func_get_argc()
Q134.
Which one of the following PHP functions can be used to find files?
Discuss
Answer: (a).glob()
Q135.
Which of the following PHP functions can be used to get the current memory usage?
Discuss
Answer: (c).get_memory_usage()
Q136.
Which of the following PHP functions can be used for generating unique ids?
Discuss
Answer: (a).uniqueid()
Q137.
Which one of the following functions can be used to compress a string?
Discuss
Answer: (d).gzcompress()
Q138.
What will be the output of the following PHP code?
<?php
    echo "chr(52)";
    ?>
Discuss
Answer: (c).104
Q139.
What will be the output of the following PHP code?
<?php
    $str = "Hello World"
    echo wordwrap($str,5,"<br>\n");    
    ?>
Discuss
Answer: (b).Hello
World
Q140.
What will be the output of the following PHP code?
<?php
    echo ucwords("i love my country");
    ?>
Discuss
Answer: (d).I Love My Country

Suggested Topics

Are you eager to expand your knowledge beyond PHP? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!