php数据类型_PHP数据类型能力问题和解答

php数据类型

This section contains Aptitude Questions and Answers on PHP Data Types.

本节包含有关PHP数据类型的 Aptitude问题和解答。

1) There are the following statements that are given below, which of them are correct about data types in PHP?
  1. In PHP, variables can store different type of data that is allowed according to PHP data-types.

  2. In PHP, there is no need to use special keywords to specify the data type of variable.

  3. In PHP, we use the 'int' keyword to declare an integer type variable.

  4. We use predefined classes to specify data-types in PHP.

Options:

  1. Only A

  2. Only B

  3. A and B

  4. C and D

Answer & Explanation

Correct answer: 3
A and B

Statements A and B are correct about data-types in PHP.

1)下面给出了以下语句,其中哪些对于PHP中的数据类型是正确的?
  1. 在PHP中,变量可以存储根据PHP数据类型允许的不同类型的数据。

  2. 在PHP中,无需使用特殊关键字来指定变量的数据类型。

  3. 在PHP中,我们使用'int'关键字声明一个整数类型变量。

  4. 我们使用预定义的类来指定PHP中的数据类型。

选项:

  1. 只有一个

  2. 只有B

  3. A和B

  4. C和D

答案与解释

正确答案:3
A和B

语句A和B关于PHP中的数据类型是正确的。

2) There are the following data types that are given below, which of them are supported by PHP?
  1. String

  2. Array

  3. Object

  4. Resource

Options:

  1. A and B

  2. C and D

  3. A, B, and C

  4. A, B, C, and D

Answer & Explanation

Correct answer: 4
A, B, C, and D

All given data-types are supported by PHP.

2)下面提供了以下数据类型,PHP支持哪些数据类型?
  1. 数组

  2. 目的

  3. 资源资源

选项:

  1. A和B

  2. C和D

  3. A,B和C

  4. A,B,C和D

答案与解释

正确答案:4
A,B,C和D

PHP支持所有给定的数据类型。

3) Which of the following is the correct range of integer variable in PHP?
  1. -32768 to 32767

  2. -2,147,483,648 to 2,147,483,647

  3. -128 to 127

  4. None of the above

Answer & Explanation

Correct answer: 2
-2,147,483,648 to 2,147,483,647

In PHP we used 4-bytes integer then its range is from -2,147,483,648 to 2,147,483,647.

3)以下哪个是PHP中整数变量的正确范围?
  1. -32768至32767

  2. -2,147,483,648至2,147,483,647

  3. -128至127

  4. 以上都不是

答案与解释

正确答案:2
-2,147,483,648至2,147,483,647

在PHP中,我们使用4字节整数,则其范围是-2,147,483,648至2,147,483,647。

4) Which of following function is used to return data type of a variable and its value?
  1. get_type()

  2. var_type()

  3. var_dump()

  4. getType()

Answer & Explanation

Correct answer: 3
var_dump()

The var_dump() function returns data-type of a variable and its value.

4)以下哪个函数用于返回变量的数据类型及其值?
  1. get_type()

  2. var_type()

  3. var_dump()

  4. getType()

答案与解释

正确答案:3
var_dump()

var_dump()函数返回变量的数据类型及其值。

5) What is correct output of given code snippets in PHP?
<?php  
$num = 256;
var_dump(num);
?>

  1. int(256)

  2. integer(256)

  3. string(3) "num"

  4. None of the above

Answer & Explanation

Correct answer: 3
string(3) "num"

The above code will print a string(3) "num" on the webpage because we did not use the $ symbol with variable name in var_dump() function.

5)PHP中给定代码段的正确输出是什么?
  1. 整数(256)

  2. 整数(256)

  3. string(3)“ num”

  4. 以上都不是

答案与解释

正确答案:3
string(3)“ num”

上面的代码将在网页上打印一个string(3)“ num” ,因为在var_dump()函数中我们没有在变量名中使用$符号。

6) What is correct output of given code snippets in PHP?
<?php  
$num = 256;
var_dump($num);
?>

  1. int(256)

  2. integer(256)

  3. string(3) "num"

  4. None of the above

Answer & Explanation

Correct answer: 1
int(256)

The above code will print "int(256)" on the web page.

6)PHP中给定代码段的正确输出是什么?
  1. 整数(256)

  2. 整数(256)

  3. string(3)“ num”

  4. 以上都不是

答案与解释

正确答案:1
整数(256)

上面的代码将在网页上打印“ int(256)”

7) What is correct output of given code snippets in PHP?
<?php  
$num = 256;
$num1 = var_dump($num);
echo "num1 is ".$num1;
?>

  1. int(256) num1 is int(256)

  2. int(256) num1 is

  3. Syntax error

  4. None of the above

Answer & Explanation

Correct answer: 2
int(256) num1 is

The above code will print "int(256) num1 is" on the webpage.

7)PHP中给定代码段的正确输出是什么?
  1. int(256)num1是int(256)

  2. int(256)num1是

  3. 语法错误

  4. 以上都不是

答案与解释

正确答案:2
int(256)num1是

上面的代码将在网页上打印“ int(256)num1 is”

8) What is correct output of given code snippets in PHP?
<?php  
$num = "Hello";
var_dump($num);
?>

  1. string(hello)

  2. string("hello")

  3. string(5) "hello"

  4. None of the above

Answer & Explanation

Correct answer: 3
string(5) "hello"

The above code will print [string(5) "hello"] on the web page.

8)PHP中给定代码段的正确输出是什么?
  1. 字符串(你好)

  2. 字符串(“ hello”)

  3. string(5)“你好”

  4. 以上都不是

答案与解释

正确答案:3
string(5)“你好”

上面的代码将在网页上打印[string(5)“ hello”]。

9) What is correct output of given code snippets in PHP?
<?php  
$num = 256;
var_dump($num);
$num = "Hello";
var_dump($num);
?>

  1. int(256)

  2. int(256) string(5) "Hello"

  3. int(256) string(3)

  4. syntax error

Answer & Explanation

Correct answer: 2
int(256) string(5) "Hello"

The above code will print [int(256) string(5) "Hello"] on the web page.

9)PHP中给定代码段的正确输出是什么?
  1. 整数(256)

  2. int(256)字符串(5)“你好”

  3. int(256)字符串(3)

  4. 语法错误

答案与解释

正确答案:2
int(256)字符串(5)“你好”

上面的代码将在网页上打印[int(256)string(5)“ Hello”]。

10) What is correct output of given code snippets in PHP?
<?php  
$num = true;
var_dump($num);
?>

  1. bool(true)

  2. boolean(true)

  3. bool(4) "true"

  4. boolean(4) "true"

Answer & Explanation

Correct answer: 1
bool(true)

The above code will print "bool(true)" on the web page.

10)PHP中给定代码段的正确输出是什么?
  1. 布尔值(true)

  2. 布尔值(true)

  3. bool(4)“真”

  4. boolean(4)“ true”

答案与解释

正确答案:1
布尔值(true)

上面的代码将在网页上打印“ bool(true)”。

11) What is correct output of given code snippets in PHP?
<?php  
$usrArray = array("ABC","PQR","XYZ");
var_dump($usrArray);
?>  

  1. array(3) string

  2. array(3) { [0]=> string(3) "ABC" [1]=> string(3) "PQR" [2]=> string(3) "XYZ" }

  3. Syntax error

  4. None of the above

Answer & Explanation

Correct answer: 2
array(3) { [0]=> string(3) "ABC" [1]=> string(3) "PQR" [2]=> string(3) "XYZ" }

11)PHP中给定代码段的正确输出是什么?
  1. array(3)字符串

  2. array(3){[0] =>字符串(3)“ ABC” [1] =>字符串(3)“ PQR” [2] =>字符串(3)“ XYZ”}

  3. 语法错误

  4. 以上都不是

答案与解释

正确答案:2
array(3){[0] =>字符串(3)“ ABC” [1] =>字符串(3)“ PQR” [2] =>字符串(3)“ XYZ”}

12) What is correct output of given code snippets in PHP?
<?php  
$usrArray = array("ABC",786,"XYZ");
var_dump($usrArray);
?>  

  1. array(3) { [0]=> string(3) "ABC" [1]=> string(3) 786 [2]=> string(3) "XYZ" }

  2. array(3) { [0]=> string(3) "ABC" [1]=> int(786) [2]=> string(3) "XYZ" }

  3. Syntax error

  4. None of the above

Answer & Explanation

Correct answer: 2
array(3) { [0]=> string(3) "ABC" [1]=> int(786) [2]=> string(3) "XYZ" }

12)PHP中给定代码段的正确输出是什么?
  1. array(3){[0] =>字符串(3)“ ABC” [1] =>字符串(3)786 [2] =>字符串(3)“ XYZ”}

  2. array(3){[0] =>字符串(3)“ ABC” [1] => int(786)[2] =>字符串(3)“ XYZ”}

  3. 语法错误

  4. 以上都不是

答案与解释

正确答案:2
array(3){[0] =>字符串(3)“ ABC” [1] => int(786)[2] =>字符串(3)“ XYZ”}

13) In PHP, NULL is a data type?
  1. Yes

  2. No

Answer & Explanation

Correct answer: 1
Yes

In PHP, NULL is also data-type which can have only one value null.

13)在PHP中,NULL是数据类型吗?
  1. 没有

答案与解释

正确答案:1

在PHP中,NULL也是数据类型,只能有一个值null。

14) What is correct output of given code snippets in PHP?
<?php
$x = null;
var_dump($x);
?>

  1. NULL

  2. NULL(4)

  3. NULL(null)

  4. None of the above

Answer & Explanation

Correct answer: 1
NULL

The above code will print NULL on the webpage.

14)PHP中给定代码段的正确输出是什么?
  1. 空值

  2. 空(4)

  3. NULL(空)

  4. 以上都不是

答案与解释

正确答案:1
空值

上面的代码将在网页上显示NULL。

15) Can we create a user-defined class in the PHP script?
  1. Yes

  2. No

Answer & Explanation

Correct answer: 1
Yes

Yes, we can create a user-defined class in the PHP script.

15)我们可以在PHP脚本中创建用户定义的类吗?
  1. 没有

答案与解释

正确答案:1

是的,我们可以在PHP脚本中创建一个用户定义的类。

16) There are the following statements that are given below, which of them are correct about resource type in PHP?
  1. The resource type is used to contain the reference to the function.

  2. The resource type is used to store the reference of external resources.

  3. The resource type is used for the database call.

  4. None of the above

Options:

  1. A and B

  2. B and C

  3. A, B, and C

  4. D

Answer & Explanation

Correct answer: 3
A, B, and C

Statements A, B, and C are correct about resource type in PHP.

16)下面给出了以下语句,其中哪些对PHP中的资源类型是正确的?
  1. 资源类型用于包含对该函数的引用。

  2. 资源类型用于存储外部资源的引用。

  3. 资源类型用于数据库调用。

  4. 以上都不是

选项:

  1. A和B

  2. B和C

  3. A,B和C

  4. d

答案与解释

正确答案:3
A,B和C

关于PHP中的资源类型,语句A,B和C是正确的。

17) What is the correct output of given code snippets in PHP?
<?php
class Sample 
{
function Sample() 
{
$Var1 = "India";
}
}
// create an object of Sample class
$obj = new Sample();
echo $obj->$Var1;
?>

  1. India

  2. Error

Answer & Explanation

Correct answer: 2
Error

The above code will generate an error because $Var1 is not a member of the Sample class.

17)PHP中给定代码段的正确输出是什么?
  1. 印度

  2. 错误

答案与解释

正确答案:2
错误

上面的代码将产生错误,因为$ Var1不是Sample类的成员。

18) What is the correct output of given code snippets in PHP?
<?php
class Sample 
{
function Sample() 
{
$this->$Var1 = "India";
}
}
// create an object of Sample class
$obj = new Sample();
echo $obj->$Var1;
?>

  1. India

  2. Error

Answer & Explanation

Correct answer: 1
India

The above code will generate print "India" on the web page.

18)PHP中给定代码段的正确输出是什么?
  1. 印度

  2. 错误

答案与解释

正确答案:1
印度

上面的代码将在网页上生成打印“印度”。

19) What is the correct output of given code snippets in PHP?
<?php
class Sample 
{
function Sample() 
{
$this->$Var2 = "Australia";
$this->$Var1 = "India";
}
}
// create an object of Sample class
$obj = new Sample();
var_dump($obj);
?>

  1. object(Sample)#1 (1) { [""]=> string(5) "India" }

  2. object(Sample)#1 (2) { [""]=> string(5) "Australia" }

  3. Error

  4. None of the above

Answer & Explanation

Correct answer: 1
object(Sample)#1 (1) { [""]=> string(5) "India" }

19)PHP中给定代码段的正确输出是什么?
  1. object(Sample)#1(1){[“”] => string(5)“ India”}

  2. object(Sample)#1(2){[“”] => string(5)“ Australia”}

  3. 错误

  4. 以上都不是

答案与解释

正确答案:1
object(Sample)#1(1){[“”] => string(5)“ India”}

翻译自: https://www.includehelp.com/php/data-types-aptitude-questions-and-answers.aspx

php数据类型

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544627.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

WPF 使用NotifyIcon控件

转载自&#xff1a;https://www.cnblogs.com/celery94/archive/2010/10/26/1861371.html 1.在什么地方找到NotifyIcon 普通的WPF控件基本上都是在该命名空间下&#xff1a;System.Windows.Controls&#xff0c;该命名空间在C:\Program Files\Reference Assemblies\Microsoft\…

SpringBoot 中 4 大核心组件,你了解多少?

Spring Boot 中的 4 大组件分别是&#xff1a;Spring Boot Starter、Spring Boot Autoconfigure、Spring Boot CLI 以及 Spring Boot actuator&#xff0c;接下来&#xff0c;我们分别来看他们的使用和作用。1.Spring Boot Starter1.1 Starter的应用示例<dependency><…

cache命令小结

鉴于健忘症&#xff0c;将常用的cache操作记录下来&#xff0c;便于查询&#xff1a;1、ttcurl -X PUT http://192.168.1.102:14010/dlytest -d "dlytest"curl -X DELETE http://192.168.1.105:15002/2156F298FDD458C321A30B7D26F98E6D 2、memcacheset 命令用于向缓存…

Python operator.truth()函数与示例

operator.truth()函数 (operator.truth() Function) operator.truth() function is a library function of operator module, it is used to check whether the given value is a true/truthy value or not, it returns True if the given value is a true/truthy value, False…

WPF 代码设置NotifyIcon图标

以前做Winform窗口的时候&#xff0c;设置图标非常简便&#xff0c;用WPF还是有区别的。 notifyIcon1.Icon new Icon(System.Windows.Application.GetResourceStream(new Uri("Images/Icon/Moana.ico", UriKind.Relative)).Stream);

双重检查锁,原来是这样演变来的,你了解吗

最近在看Nacos的源代码时&#xff0c;发现多处都使用了“双重检查锁”的机制&#xff0c;算是非常好的实践案例。这篇文章就着案例来分析一下双重检查锁的使用以及优势所在&#xff0c;目的就是让你的代码格调更加高一个层次。同时&#xff0c;基于单例模式&#xff0c;讲解一下…

Linux学习之FTP服务

环境&#xff1a;red hat6.5安装包&#xff1a;vsftp、ftp服务器主配置文件&#xff1a;/etc/vsftpd/vsftpd.conf主配置参数&#xff1a;anonymous_enableYES //&#xff08;默认&#xff09;允许匿名登录anon_upload_enableYES //允许匿名上传文件anon_mkdir_write_enableYES …

WakaTime 记录你的时间(Moana 自动同步信息客户端)

X、写在前面 代码界有一神器&#xff0c;可以记录敲代码的时间&#xff0c;项目名称&#xff0c;编译器等信息&#xff0c;可以极大的满足程序员的虚荣心&#xff0c;它就是 WakaTime 网站链接 WakaTime 可以记录敲代码时间&#xff0c;和具体编辑的文件等信息&#xff0c;并…

图解:为什么非公平锁的性能更高?

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;在 Java 中 synchronized 和 ReentrantLock 默认使用的都是非公平锁&#xff0c;而它们采用非公平锁的原因都是一致的&#…

java timezone_Java TimeZone setDefault()方法与示例

java timezoneTimeZone类的setDefault()方法 (TimeZone Class setDefault() method) setDefault() method is available in java.util package. setDefault()方法在java.util包中可用。 setDefault() method is used to assign the default time zone which is retrieved by us…

5.2 测试计划和估算

5.2 测试计划和估算 2015-06-23 5.2.2. 测试计划活动&#xff08;K3&#xff09; 对整个系统或部分系统可能的测试计划活动包括&#xff1a; 确定测试的范围和风险&#xff0c;明确测试的目标&#xff1b;定义测试的整体方法&#xff08;测试策略&#xff09;&#xff0c;包括测…

Android 模拟器调试的缺点

1.模拟器调试速度太慢&#xff0c;不能清晰真实反映开发中的问题。 2.安卓定制化现象严重&#xff0c;模拟器达不到真机的真实水平&#xff0c;如控件样式、分辨率。 3.模拟器不能模拟所有的API&#xff0c;如Email、电话、短信、横竖屏、GPS、蓝牙、多点触控、震动、服务等基…

java timezone_Java TimeZone getDefault()方法与示例

java timezoneTimeZone类的getDefault()方法 (TimeZone Class getDefault() method) getDefault() method is available in java.util package. getDefault()方法在java.util包中可用。 getDefault() method is used to return the default time zone for this host. getDefaul…

死锁的 4 种排查工具 !

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone死锁&#xff08;Dead Lock&#xff09;指的是两个或两个以上的运算单元&#xff08;进程、线程或协程&#xff09;&#xff0c;都在等待…

搜索百度百科官方创建入口,怎么创建更新公司的百度百科词条呢?

在百度搜索百度百科找到百度百科官方创建入口&#xff0c;可以上传并创建公司类的百度百科词条&#xff0c;创建词条后还可以再修改更新百科词条&#xff0c;最终完善好的百度百科词条将会在百度上获得大量曝光。那么百度百科可以怎么创建&#xff0c;下面洛希爱做百科网把十多…

【HM】第2课:JavaScript基础

<pre>day02第一天的内容&#xff1a;*html标签里面的表单标签*html标签里面的表格标签思维导图1、JavaScript的简介* 什么是JavaScript&#xff1a;js是一个基于对象和事件驱动的语言&#xff0c;应用客户端。**基于对象&#xff1a;在java里面如果使用对象需要创建&…

Nginx For Windows 关于 worker_connections 不生效问题

○、结论 Nginx For Windows 建议使用 http://nginx-win.ecsds.eu/ 下载 nginx 1.17.0.1 Crow 一、起因 项目中有一个 API 服务&#xff0c;对客户端通信进行支持&#xff0c;大概 1w 客户端&#xff0c;每分钟都会进行通信。 高峰期的时候服务负载较高&#xff0c;为了防…

你没有见过的 7 种 for 循环优化,超好用!

来源&#xff1a;blog.csdn.net/csdn_aiyang/article/details/75162134我们都经常使用一些循环耗时计算的操作&#xff0c;特别是for循环&#xff0c;它是一种重复计算的操作&#xff0c;如果处理不好&#xff0c;耗时就比较大&#xff0c;如果处理书写得当将大大提高效率&…

java valueof_Java Short类valueOf()方法及示例

java valueofSyntax: 句法&#xff1a; public static Short valueOf (short value);public static Short valueOf (String value);public static Short valueOf (String value, int radixs);简短的类valueOf()方法 (Short class valueOf() method) valueOf() method is avail…

死锁终结者:顺序锁和轮询锁!

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone死锁&#xff08;Dead Lock&#xff09;指的是两个或两个以上的运算单元&#xff08;进程、线程或协程&#xff09;&#xff0c;都在等待…