$str = "My name is Jack, and what is your name?";echo substr_count ($str,“name”);程序的输出结果为()。
第1题:
A、What's your last name?
B、What's your family name?
C、What's your name?
D、What's your first name?
第2题:
若有以下说明,则能打印出“Yu”的语句是______。 struct samp { char name[10]; int number; }kk[3]={{"WarBin",1},{"LiYu",2},{"LuHui",3}}; struct samp*str[3]; str[0]=&kk[0];str[1]=&kk[1];str[2]=&kk[2];
A.printf("%s\n",str[1].name[2]);
B.printf("%s\n",str[1]->name+2);
C.printf("%s\n",str[2].name[2]);
D.printf("%s\n",str[2]->name+2);
第3题:
有以下程序: #include 〈iostream〉 #include 〈string〉 using namespace std; class visited { private: int number; char *name; public: static int glob; void set mes(char *a); }; void visited::set mes(char *a) { name=new char[strlen(A) +1]; strcpy(name,A) ; number=++glob; } int visited::glob-O; int main() { visited person[10]; int i; char str[8]; for(i=0;i<5;i++) { cin>>str; person[i] .set mes(str); } cout<
A.5
B.4
C.3
D.2
第4题:
A.1
B.2
C.3
D.4
第5题:
下列程序通过实现Runnable接口创建一个线程,选择正确的语句填入程序的横线处。 class MyRun implements Runnable { String str; MyRun(String s) { str = s; } public void run() System.out.println(str); } } public class ex40 { public static void main(String[] args) { String name = "实现阶段Runnable 接口"; MyRun my = new MyRun(name); Thread th = th. start ( ); } }
A.new MyRun(my)
B.new Thread()
C.new Thread(my)
D.Thread(my)
第6题:
A:What’s your( )(名字),please?B:My name is Li Dawei.
第7题:
查询语句“SELECT name,sex,birthday FROM human”返回()列。
第8题:
第9题:
char*str,name[10]; str=Hello World;
char*str,name[10]; name=Hello World;
char str1[10]=prog.c, str2[10]; str2=str1;
char head_line[]; head_line=== == == == == == =;
第10题:
NAME0
NAMEE
NAME
NAME\0
第11题:
1
2
3
4
第12题:
APPLE
brspj
jpsrb
apple
第13题:
有如下程序:
#include<iostream>
using flamespace std;
class Name{
char name[20];
public:
Name(){
strcpy(name,“”); cout<<‘?’;
}
Name(char*fname){
strcpy(name,fname); cout<<‘?’;
}
};
int main(){
Name names[3]={Name(”张三”),Name(”李四”)};
return 0;
}
运行此程序输出符号?的个数是
A.0
B.1
C.2
D.3
第14题:
以下选项中,合法的是( )。
A.char str3[]={d,e,b,u,g,\0};
B.char str4;str4="hello world";
C.char name[10];name="china";
D.char strl[5]="pass",str2[6];str2=strl;
第15题:
有如下程序: #include<iostream> using namespace std; class Name{ char name[20]; public: Name( ){strepy(name," ");tout<<'?';} Name(char*fname){strcpy(name,fname);cout<<'?';} }; int main( ){ Name name[3]={Name("张三"),Name("李四")}; return 0; } 运行此程序输出符号“?”的个数是
A.0
B.1
C.2
D.3
第16题:
Personal Information
1. What is your name? Your name, please? Please give me your name. May I have your name?
第17题:
如果要把一个用户名jack保存在session对象里,则下列语句正确的是()。
第18题:
May I know your name,please?()
第19题:
session.setAttribute( name, jack );
session.setAttribute(“ name” , “jack”);
session.setAttribute( “jack”, “ name” );
session.setAttribute(“jack”, name );
第20题:
10,6,4,6
11,6,11,6
11,6,1,6
10,7,1,7
第21题:
ST#
STR#
STR#0
STR0
第22题:
char str3[]={'d', 'e', 'b', 'u', 'g', '\0'}
char str4; str4=hello world;
char name[10]; name=china;
char str1[5]=pass, str2[6]; str2=str1;
第23题:
STRENG
STRIEG
STREN
STREN0