11、生产综合b(线路、变电)搜题找答案用什么软件-2024欧洲杯竞猜官方平台

知到问答 4053

which of the following is not the standard of c language?

when compile a c program, the comments will .

a file written by c language .

which of the following languages can be recognized by cpu directly?

many programming languages borrow heavily form c language, including c , java, c# and perl.

by writing c compilers for other computers, c program can be run in different platforms.

one of c’s advantages is efficiency. because c was intended for applications where assembly language had traditionally been used, it was crucial that c programs could run quickly and in limited amounts of memory.

c’s weaknesses arise from the same source as many of its strengths: c’s closeness to the machine.

which of the following is a legal c identifier?

which of the following is not keyword in c language?

which of the following program is right?

which of the following statement is wrong?

the extended ascii character set uses one byte to represent character, therefore the number of characters that the extended ascii character can represent is .

which of the following is not a constant in c language?

which of the following is not a float constant in c language?

the three identifiers, weight, weight and weight, are equal in c language.

in c language, which of the following operator requires its operands must be of type int?

of which operation the precedence is higher than others’?

suppose int k=7, x=12; of which expression the value is 3?

the value of the expression 3.6-5/2 1.2 5%2 is ____.

given a statement f = (3.0, 4.0, 5.0), (2.0, 1.0, 0.0); , which of the following conclusion is right?

suppose all variables in the following expressions have been declared and initialized, which of the following is not a legal expression in c language?

if an expression is the sum of four data of different types, including int, long, double and char, the expression’s type is ____.

the expressions i and i are exactly the same as (i = 1).

if c is a variable of type char, which one of the following statements is illegal?

suppose that we call scanf as follows: scanf(“%d%f%d”, &i, &x, &j); if the user enters: 10.8 9 3↙ what will be the values of i, x, and j after the call? (assume that i and j are int variables and x is a float variable. ↙ is used to represent enter key)

suppose that we call scanf as follows: scanf(“%f%d%f”, &x, &i, &y); if the user enters: 12.3 45.6 789 what will be the values of x, i, and y after the call? (assume that x and y are float variables and i is an int variable. ↙ is used to represent enter key)

which one of the following is correct?

assuming the following statements: char c1='1',c2='2'; c1=getchar(); c2=getchar(); putchar(c1); putchar(c2); if input a└┘↙ when run the code, ↙ is used to represent enter key, └┘ is used to represent space, which one of the following statements is correct?

given the following declarations and scanf function call statements, to make the value of a1, a2, c1, c2 to be 10, 20, a and b respectively. which one of the following inputs is correct? ↙ is used to represent enter key and └┘ is used to represent space. ( d ) int a1,a2; char c1,c2; scanf("%d%d",&a1,&a2); scanf("%c%c",&c1,&c2);

assuming the statement scanf("a=%d,b=%d,c=%d",&a,&b,&c); to make the values of a, b, and c to be 1, 3, 2 respectively, which of the following input is correct? ↙ is used to represent enter key and └┘ is used to represent space.

if the variable x is of type double, which one of the following statements is right?

what is the output of the following code? └┘ is used to represent space. float x=-1023.012; printf("%8.3f,",x); printf(".3f",x);

what is the output of the following code? int x=13,y=5; printf("%d",x%=(y/=2));

if we declared int a=1234;, what is the result when executing the statement printf("-",a);?

what is the output of the following code? int a; char c=10; float f=100.0; double x; a=f/=c*=(x=6.5); printf("%d %d %3.1f %3.1f",a,c,f,x);

execute the following statements, if input 12345678↙,what is the output? int a , b ; scanf("-%*2d=",&a,&b); printf("%d",a b);

c compilers are required to check that the number of conversion specifications in a format string matches the number of output items.

if the format string is “%d\n”, scanf will skip white space, read an integer, and then skip to the next non-white-space character. so a format string like this can cause an interactive program to “hang” until the user enters a nonblank character.

after the execution of the following statements: int a=1, b=2, c=3, d=4, m=2, n=2, cond; cond = (m=a>b) && (n=c>d); , which one of the following value is equal to the value of n ?

suppose i is a variable of type int, and its value is 10, which of the following is the value of expression 30-i<=i<=9 ?

after the execution of the following statements: int a=0,b=0,m=0,n=0; (m=a==b)||(n=b==a);,the values of m and n are and respectively?

which of the following is equal to the expression !x ?

suppose int x=3,y=4,z=5; , which of the following is the value of the expression !(x y) z-1 && y z/2 ?

which of the following is not a legal expression in c language?

the expression in if(expression) can be .

when execute the following program: #include int main() { int x,y; scanf("%d%d",&x,&y); if (x>y) x=y;y=x; else x ;y ; printf("%d,%d",x,y); return 0; } which one of the following is correct?

in c language, the rule on embedded if statement is that else is always paired with .

which one is correct when execute the following code? int x=0,y=0,z=0; if (x=y z) printf("***"); else printf("###");

if a=1, b=3, c=5, d=4,the value of x is when execute the following program. if (a
which one of the following is equal to the statement y=(x>0 ? 1: x<0 ? -1:0); .

what is the output of the following program? #include int main() { int x=1,y=0,a=0,b=0; switch(x) { case 1: switch (y) { case 0 : a ; break ; case 1 : b ; break ; } case 2: a ; b ; break ; case 3: a ; b ; } printf("a=%d,b=%d",a,b); return 0; }

if int i=10; the value of i will be after executing the following code. switch (i) { case 9: i =1 ; case 10: i =1 ; case 11: i =1 ; default: i =1 ; }

given the declaration: float w; int a, b; , which one of the following is a legal switch statement?

if int i=1; the value of i will be after executing the following code. switch (i) { case '1': i =1 ; case '2': i =1 ; case '3': i =1 ; default : i =1 ; }

after the execution of the following statements: int i=5, j=4, k=6 ; float f; f = (i
after the execution of the following statements: int m1=5,m2=3; m1>m2 ? (m1=1):(m2=-1);, the values of m1 and m2 are respectively?

switch statements can be totally replaced by if statements at any time.

the expression in a case label of a switch statement must be constant expression.

the statement if and switch can be embedded.

the conditional expression and if statement can be totally replaced by each other.

duplicate case labels aren’t allowed in switch statement.

in switch statement, several case can execute the same program segment.

the controlling expression in switch statement can be an expression of any type.

the case branch in switch statement can be a compound statement or multiply statement sequence.

without break (or some other jump statement) at the end of a case, control will flow into the next case.

what is the output of the following program? #include int main() { int x=0,y=5,z=3; while(z-->0&& x<5) y=y-1; printf("%d, %d, %d",x,y,z); return 0; }

which one of the following contains an infinite loop?

the following code . x=-1; do{ x=x*x; }while (!x);

which one of the following statements is correct?

assume the following code: int n=0,p; do { scanf("%d",&p); n ; } while (p!=12345 && n<3);when , the loop will terminate.

given the following for statement: int i,k; for (i=0,k=-1; k=1 ; i ,k ) printf("***"); which one of the following conclusions is correct?

the loop times of the following for statement are . for (i=2; i==0;) printf("%d",i--);

what is the output of the following program? #include int main() { int i,sum; for(i=1;i<6;i ) sum =i; printf("%d",sum); return 0; }

assume s, a, b, c are declared as integers, and a, c have been assigned values (c>0), s=a; for(b=1; b<=c; b ) s=s 1;which one of the following is equal to the above code?

what is the output of the following program? #include int main() { int i=0,s=0; for (;;) { if(i==3||i==5) continue; if (i==6) break; i ; s =i; }; printf("%d",s); return 0; }

if the variables i and p have been declared and initialized correctly, which one of the following cannot calculate 5! ?

in the following programs, which one has the different output with the others’?

what is the output of the following program? #include int main() { int k=0,m=0,i,j; for (i=0; i<2; i ) { for (j=0; j<3; j ) k ; k-=j ; } m = i j ; printf("k=%d,m=%d",k,m); return 0; }

which one of the following is not correct?

assume the following program fragment: int k=2; while (k=0) { printf("%d",k) ; k-- ; }which one of the following is correct?

while in do statement can be omitted sometimes.

any of the 3 expressions in for loop can be omitted, and so is while and do statement’s controlling expression.

the most powerful iteration statement is for statement.

the loop body in the for statement will be executed at least once.

break can be used in switch statements and loops (while, do, and for), whereas continue is limited to loops.

which one of the following statements is wrong?

which one of the following statements about macro substitute is wrong ?

assuming we have #define l(x) 2*3.14*x,thus l(x) is .

assuming we have #define p(x) x/x, what is the output after executing printf("%d",p(4 6)); ?

assuming the macro definition #define mod(x,y) x%y, what is the result of the following code? int z,a=15; float b=100; z=mod(b,a); printf("%d",z );

which one of the following macro for square calculation will not cause ambiguity in any case?

given a macro definition as follows: #define n 3 #define y(n) ((n 1)*n), which one of the following is the value of the expression 2*(n y(5 1))?

given a macro definition #define p(x,y,z) x=y*z; the substitution p(a,x 5,y-3.1) will be .

in the file including preprocessing directives, when the file name is enclosed by double quotes after #include, the file will be searched in .

in the file including preprocessing directives, when the file name is enclosed by angle bracket after #include, the file will be searched .

macro substitution does not have type problem, and its arguments are of no type either.

in c language standard library header files, many system function prototype are declared. therefore, as long as these functions are used in the program, these header files should be included, for checking the function calling by compiling system.

the header files included by #include must have the suffix .h.

when index the array element, which one of the following statements is wrong?

which one of the following declarations can define a one dimensional array a correctly in c89?

assume a declaration int a[10]; , which one of the following can reference the element in a correctly?

which one of the following statements is wrong?

assume the declaration int a[3][4]; which one of the following can index the element in a correctly?

assume the declaration int a[3][4]=; which one of the following statements is correct?

if a 2-d array a has m columns, the formula to index the element a[i][j] is .

what is the output of the following code? int k,a[3][3]={1,2,3,4,5,6,7,8,9}; for (k=0;k<3;k ) printf("%d",a[k][2-k]);

which one of the following initialization is correct for the 2-d array a?

assume the declaration int b[]={1,2,[8]=3,4,5,[15]=1,6,7}; the length of array b is .

which one of the following statements about function is right?

which one of the following statements is right?

which one of the following function definitions is right?

if call a function int f(), which does not contain any return statement, which one of the following conclusions is right?

which one of the following determines the return type of a function in c language?

which one of the following statements about function return type is wrong?

which one of the following statements is wrong?

which one of the following is right?

given a function definition as follows: void f(char ch, float x ) { ...... } which one of the following function call statements is right?

assume a program defines a function as follows: double f(double a,double b) { return (a b); } but the definition is written after calling f. therefore, f should be declared before the calling. which one of the following prototypes is wrong?

which one of the following statements about function declaration is wrong?

if an array name is used for an actual parameter in a function calling, which one of the following will be delivered to the corresponding formal parameter?

given the following code in the main function, which one of the following is an incorrect declaration of the formal argument in function f? int a[3][4]; f(a);

read the following program: int fun1(double a) { return a*=a;} int fun2(double x,double y) { double a=0,b=0; a=fun1(x); b=fun1(y); return (int)(a b); } if w is a variable of type double, what is the value of w, after executing the statement w=fun2(1.1,2.0);?

both function definition and function call can be nested.

a function must have a return value, otherwise it cannot be defined as a function.

specifying that the return type is void indicates that the function doesn’t return a value.

the pointer of a variable indicates the of the variable.

given int k=2; int*ptr1,*ptr2; and both ptr1 and ptr2 point to the variable k, which one of the following assignments is not correct?

given int*p,m=5,n; which one of the following statements is right?

given int*p,a=4; and p=&a; in which one of the following, all items indicate addresses?

if a pointer p points to a variable x, which one of the following is equal to *&x ?

if the pointer p points to an integer variable x, which one of the following is equal to (*p) ?

for two pointer variables of the same base type, which one of the following operations cannot be done?

given the following function and the variable declaration int a=25; which one of the following is the result of the statement print_value(&a); ? void print_value(int *x) { printf("%d", *x); }

given char s[10]; which one of the following is not the address of s[1]?

given int a[5],*p=a; which one of the following is a correct reference to an element in array a ?

given int a[5],*p=a; which one of the following is a correct reference to the address of an element in array a ?

given int x[]={1, 2, 3, 4, 5, 6, 7, 8, 9, 0},*p=x,k; and k is larger than or equal to 0 and less than 10, which one of the following is a wrong reference to the array element x[k]?

given int x[6]={2,4,6,8,5,7},*p=x,i; which one of the following code cannot output the 6 elements in array x in order?

given int a[2][3]; which one of the following is a correct reference to the address of the element in i-th row and j-th column of array a?

given int a=3,b,*p=&a;which one of the following statements doesn’t assign the value 3 to b?

given int a[4][5]; which one of the following references is incorrect?

given int a[2][3],(*p)[3]; p=a; which one of the following references to an element in the array a is correct?

given int (*p)[4]; which one of the following statements is right?

the return value of the function char* fun(char *p){ return p; } is .

assuming char x[]="12345",y[]={'1','2','3','4','5',''}; which one of the following statements is correct?

which one of the following initializations of the character array s is wrong?

which one of the following character arrays cannot be used as a string?

which is the output of the following code? char c[5]={'a','b','','c',''}; printf("%s",c);

given two arrays of character, a and b, which one of the following statements is correct?

which is the output of the following code? char a[7]="abcdef"; char b[4]="abc"; strcpy(a,b); printf("%c",a[5]);

which is the output of the following code? char c[]="\t\b\\\0will\n"; printf("%d",strlen(c));

which one of the following can be used to test whether the string a is greater than b?

the value of the expression strcmp("3.14","3.278") is .

given the following code: #include #include int main() { char p[]={'a','b','c'}, q[10]={'a','b','c'}; printf("%d %d", strlen(p), strlen(q)); return 0; } which one of the following statements is true?

which is the output of the following code? char w[][10]={"abcd","efgh","ijkl","mnop"} , k; for(k=1;k<3;k ) printf("%s",w[k]);

if the function fun is defined as: void fun(char ch[], float x) { …… }, which one of the following function call statements is correct for function fun?

which one of the following statements about character array is wrong?

which one of the following is correct?

which one of the following statement(s) is a correct for the string s?

given char s[]="china"; char *p ; p=s ; which one of the following is correct?

given char a[]="itiine", *p="itiine"; which one of the following is incorrect?

given char *cc[2]={"1234","5678"}; which one of the following is correct?

assume s1 and s2 are declared correctly, if we want to execute the statement s when string s1 is greater than s2, which one of the following statements is correct?

given char s1[]="string1",s2[8],*s3,*s4="string2"; which one of the following is incorrect for library function strcpy?

which one of the following is correct about data file and c language?

the system standard input file is .

the system standard output file is .

which one of the following is a correct file name argument for the function fopen?

given char fname[]="infile.dat"; , which one of the following is a correct way to open the text file infile.dat for reading?

which one of the following is a correct way to create a file for both reading and writing using the function fopen ?

if errors occur while executing the function fopen, what is its return value?

if open an existing file using the argument "a ", which one of the following is correct?

in the file open modes, the string "rb" indicates .

when opening the text file "a:\\aa.dat" in the mode "w", if the file already exists, .

in c program, which one of the following can write an integer data into a file in binary form?

which one is the prototype of the function fputc that write a character to the disk files?

which one of the following operations can be done using the function fseek?

the function calling fseek(fp,-20l,seek_end) complete the operation .

which one of the following codes is nearly equal to fseek(fp,0l,seek_set)?

the function rewind can .

the function ftell(fp) can .

given a structure definition as follows: struct stu { int a; float b; } stutype; , which one of the following statements is wrong?

for which one of the following definitions, the compiler will not allocate memory locations.

which one of the following definitions of the structure variable td1 is wrong?

when declare a structure variable, the size of space allocated by system is .

given the declaration of a structure tag named student as follows: struct student { int no ; char name[20]; char sex; struct { int year; int month ; int day ; } birth; } s; if the member birth of the structure variable s is october 1, 2016. which one of the following assignments is right?

given the following code, which one of the following statements can output the letter m. struct person { char name[9]; int age; }; struct person class[10]={"johu",17,"paul",19,"mary",18,"adam",16};

which one of the following reference to a member of structure is not right? struct pupil { char name[20]; int age; int sex; } pup[5], *p=pup;

which one of the following reference is not right? struct s { int i1; struct s *i2,*i0; }; static struct s a[3]={2,&a[1],0,4,&a[2],&a[0],6,0,&a[1]}, *ptr=a;

given the following declaration: struct sk { int a; float b; } data; int *p; which one of the following assignments is right, to make p point to a in data?

given the declaration: struct{int a; char b;} q,*p=&q; which one of the following expression is wrong?

given the following code: struct st { int x; int *y; } *pt; int a[]={1,2},b[]={3,4}; struct st c[2]={10,a,20,b}; pt=c; which one of the following expressions has the value of 11?

which one of the following statements about union is right?

when declare a union variable, the size of space allocated by the compiler is .

given the following program: union { char a[10]; short b[4][5]; long c[5]; } u; the value of sizeof(u) is .

given the following program: union data { char ch; int x; } a; which one of the following is not right?

given the following declaration: enum color {red,yellow=2,blue,white,black} r=white; what is the output after executing the statement printf("%d",r); ?

given the following declaration: enum week {sun, mon, tue, wed, thu, fri, sat} day; which one of the following assignments is right?

which one of the following statements is wrong?

given the following statement: typedef struct {int n;char ch[8];} per; which one of the following statements is right?

which of the following is a legal c identifier?

in c language, which of the following operator requires its operands must be of type int?

suppose that we call scanf as follows: scanf(“%f%d%f”, &x, &i, &y); if the user enters: 12.3 45.6 789 what will be the values of x, i, and y after the call? (assume that x and y are float variables and i is an int variable.)

suppose int x=3,y=4,z=5; , which of the following is the value of the expression !(x y) z-1 && y z/2 ?

the following code . x=-1; do{ x=x*x; }while (!x);

the three identifiers, weight, weight and weight, are equal in c language.

the expression in a case label of a switch statement must be constant expression.

in switch statement, several case can execute the same program segment.

without break (or some other jump statement) at the end of a case, control will flow into the next case.

the loop body in the for statement will be executed at least once.

双向筒式减振器()。

前进和倒车时制动效能相同的制动器有()。

轿车上通常要安装的喇叭形式是()。

自动变速器的换档执行元件包括()、()和单向离合器。

主减速器的作用是()

简单非平衡式制动器在汽车前进或后退制动时,其制动力()。

对离合器的主要要求是:()

桑塔纳轿车前轮所采用的制动器为()

下列哪个齿轮传动比表示超速档?()

桑塔纳轿车前悬架采用()

自增力式车轮制动器的两制动蹄摩擦片的长度是()

驱动桥主减速器是用来改变传动方向,降低转速和()。

循环球式汽车转向器一般由()套传动副组成。

离合器安装在()上。

气压制动的制动踏板自由行程,所对应的是()。

离合器的主动部分包括:()。

离合器的从动盘主要由()构成。

采用齿轮、齿条式转向器时,不需要(),所以结构简单

安装()可使悬架的刚度成为可变的

变速器的操纵机构由()等构成。

()具有保证车轮自动回正的作用

自动变速器中两个核心传感器是()

电控悬架系统可以实现的功能是()

造成离合器分离不彻底的原因可能有()

电控悬架系统不可以实现的功能是()

车桥分为()

以下参数从轮胎上的标注不可以了解到的是()

在动力转向系中,不是转向所需的能源来源的是()

以下属于自动变速器工作特点的是()。

非采用齿轮、齿条式转向器时,因需要(),而使结构复杂

传动系各总成在传递动力时,离合器除了有传递和切断动力等功能外,还有防止系统过载的功能。()

主减速器的功用主要是降速增扭,并可以改变动力传递方向。()

双曲面齿轮主减速器必须采用专门级别的齿轮油润滑,决不允许用普通齿轮油或其他类型的润滑油代替。()

汽车车轮是高速旋转件,左右车轮上固定螺栓和螺母的螺纹旋向相同,但是必须按照规定力矩拧紧。()

液力变矩器中锁止离合器的作用是为了提高传动效率。()

车轮轮胎花纹方向的设置,不会影响车轮的行驶噪声。()

液力变矩器在一定扭矩和速度范围内,具有离合器和无级变速器的功能。()

自动变速器都是自动无级变速的。()

循环球式转向器有两对传动啮合副。()

1.和都存在的经济关系是()。

“对客观事物的反映即是真理”,这是()。

“革命是解放生产力,改革也是解放生产力”。这一论断表明社会改革与社会革命()。

马克思主义认为,主客体之间的价值关系是指()。

社会发展生产力的根本目的是()。

下列不属于经济全球化发展趋势的选项是()。

社会意识相对独立性的最突出表现是它()。

资本主义造就的埋葬自身的社会力量是()。

革命可以在一国或数国首先胜利理论的提出者是()。

第二次世界大战后,发达资本主义的发展进入垄断资本主义的新阶段,这意味着()。

当代资本主义在经济关系方面的一系列新变化表明()。

理解人类社会发展的钥匙是()。

“人的感官是人认识外界事物的不可逾越的天然界限”,这种观点是()。

无产阶级夺取政权的最终目的是()。

设想脱离物质的运动会导致()。

构成生产力的基本要素是()。

下列各项包含矛盾双方相互依存相互转化的辩证法思想的是()。

马克思主义诞生于()。

对哲学基本问题第一方面的不同回答是划分下面哪两项的标准()。

人类全部社会关系中最基础的关系是()。

社会各种矛盾中最基本的是()。

最鲜明体现资本主义实质的职能是()。

在现代,各国一般是由政领导政权的,放弃执政在中的领导地位,性质就要改变,这是因为()。

“人有多大胆,地有多大产;不怕办不到,就怕想不到;只要想得到,啥也能办到。”这是()。

正确评价历史人物的方法是()。

经济文化相对落后的建设之所以是长期的和艰巨的,因为()。

生产力对社会的决定作用表现在()。

生产商品的劳动二重性是指()。

垄断与竞争并存的原因是()。

实践在认识中的决定作用表现在()。

下列各项属于意识能动作用的有()。

民主专政实际上就是无产阶级专政,原因是它们的()。

资本主义在全世界范围被代替是一个很长的历史过程,在这个过程中两种社会制度的()。

作为马克思主义产生的阶级基础的19世纪三大工人起义是()。

马克思说“无论哪一种社会形态,在它所能容纳的全部生产力发挥出来以前,是决不会灭亡的;而新的更高的生产关系,在它存在的物质条件在旧社会的胞胎里成熟以前,是决不会出现的。”这段话说明()。

无条件的绝对运动和有条件的相对静止构成了事物的矛盾运动()。

垄断价格是垄断资本家凭借垄断地位制定的,因而否定了价值规律()。

实现物质财富极大丰富、精神境界极大提高、每个人自由而全面发展的社会,是马克思主义最崇高的社会理想()。

唯物史观和唯心史观在人类历史发展问题上的根本对立在于是否承认群众是推动历史发展的决定力量()。

辩证思维方法与现代科学思维方法在方上差异较大,是两种不同的方法()。

垄断资本主义的出现从根本上改变了垄断资本主义的性质()。

“公说公有理,婆说婆有理”表明价值评价具有主观随意性()。

垄断集团争取自身利益的斗争是推动资本主义变化的重要力量()。

生产关系的实质是人们的精神活动关系()。

辩证法和形而上学分歧的根本焦点是是否承认运动()。

垄断可以消除同行竞争()。

价值不是商品所特有的社会属性,人也有价值()。

社会实现了“各尽所能,按劳分配”的原则,第一次以人的劳动而不是特权或资本作为分配的标准,是一个巨大的历史进步,但它仍有其历史的局限性()。

人类发展的历史归根到底是思想发展的历史()。

辩证唯物主义认为,只有认识事物的度才能准确地认识事物的质,才有条件做好工作()。

客观唯心主义和主观唯心主义是唯心主义的两种历史形态()。

马克思主义政的产生需要科学理论的指导和革命领袖的领导这两个基本条件()。

实现人的自由而全面的发展,是马克思主义追求的根本价值目标,也是社会的根本特征()。

垄断价格的产生背离了价值规律()。

会计的基本职能是( )。

按照权责发生制,下列处理正确的是( )

企业发行普通股100 000股,每股发行价1.5元,每股面值1元,股款收到存入银行。

从某企业购入材料,取得增值税专用发票,材料进价40 000元,增值税6 800,货款以商业汇票结算。

以现金支付购入上述材料的运费500元。

( )是客房部的主体。它的职能是负责客房区域的清洁保养和对客服务工作。

( )是客房部的信息中心,其基本职能是统一调度对客服务工作,正确显示客房状况,保管宾客的遗留物品以及与其它部门进行联络协调等。

客人在饭店逗留时间最长的部门是( )。

饭店客房是否( ),已成为客人选择饭店住宿的首要条件。

标准客房内摆放( )。

“总统套间”的英文表达是( )。

在规模较小的饭店里,客房部组织机构的层次少,分支机构及工种也较少,一般只有一至二个层次。

客房楼层是客房部的主体成份。

客房部自身组织结构的设计、职责权限的划分、任务的分配及规章制度的建立等都是客房部预先控制的内容。

double room指的是在房内放两张单人床,称为标准间。

西式铺床是用床单加( )在床垫上包边包角,再加盖床罩的一种铺床方式。

客房中,床垫使用前可以按标准作好标号,正面左下角标号为( )。

西式铺床在回折第二条床单时,需将第二条床单的两侧及床头上端露出的约( )厘米床单回折,紧包毛毯。

一般单人床的规格是( )。

中式铺床需要毛毯。

西式铺床方便操作,可以提高服务员的工作效率,节约饭店的人力。

床罩具有装饰的作用,应根据房间的等级配备不同面料的床罩。

需要用到两条床单的铺床方法是西式铺床。

中式铺床需将被头翻折约( )厘米。

中式铺床所需物品如下:床单1条、被套1条、被芯1个、枕套和枕芯各( )个。

准备工作车的物品时,( )应放在工作车的最下层。

清洁员在清扫走客房时,房间如有异味,应( )。

饭店工作人员在进入客房前必须敲门,为的是满足客人( )的需要。

客房服务员在进客房时,敲门等候客人反应的时间大概是( ),同时站在门前适当的位置眼望门镜。

客房服务员在整理客房时,若客人回来,不正确的做法是( )。

工作期间,工作钥匙( )。

服务员在工作期间,发现有住客将钥匙留在房门钥匙孔上,若客人在房间,必须( )。

洗涤客衣是楼层服务员的工作内容之一。

客房清扫员的职责就是清扫客房。

客房杯具的消毒也是客房服务员的职责之一。

客房服务过程中,( )是第一个环节,又是其它工作顺利进行的基础环节。

服务员带初次入店的客人进房后,介绍客房设备、服务项目、住客须知等要热情、大方、自然,一般时间掌握在( )左右为宜。

迎客房内洗衣袋、洗衣单及刷衣工具配备要齐全,一般放置在( )。

如果客人预计到店时间较晚(20点以后)晚间客房整理可( )。

下列不属于楼层洗衣服务程序内容的是( )。

服务员在引领客人进房时,应与客人并排行走。

服务员引领客人进房后,应客人要求可留在房内与客人交谈。

对于“请勿打扰”房,服务人员在任何情况下都不能打扰。

晚间进房整理卫生间时,应将地巾平铺于卫生间门口。

在不了解客人喜好的情况下,开夜床服务一般开靠窗户的床。

常用于电话消毒的是( )。

控制蚊子的方法是保持室内外环境清洁,消灭蚊子孳生的死角,废旧容器、臭水河、(  )、定期喷洒杀虫剂、在室内外合适地点安置灭蚊灯,诱杀成蚊。

不同质地的布草有不同的洗涤寿命,全棉床单的耐洗次数约为(  )次。

一般规定,ph值小于6的为碱性清洁剂,ph值大于8的为酸性清洁剂。

多功能清洁剂呈酸性,因而可用于多种物体表面的清洁。

布件是否耐洗、耐磨主要取决于纤维的长度和纱支数。

毛巾的毛圈多而长,则柔软性好、吸水强,所以毛圈越多越长,其质量越好。

吸尘是清洁保养地毯最基本、最方便的方法。

布草储藏的温度要在20度以上。

肥皂水对清洁物性较小,可适用于清洁大理石地面。

检查客房时,应从( )开始循序进行,从上到下、从里到外,以防止遗漏。

楼层主管是( )的直接下级。

对客房卫生的检查应遵循( ),部门经理巡视检查的制度,做到分工明确、责任清楚。

在处理客人投诉的过程中,最关键的环节是( )。

对于饭店的决策者来说,( )是饭店管理中最重要的职能。

清洁员接到走客房清扫的通知后,应用最快的速度、最好的质量把房间整理好,然后报告( )。

通常领班要对所负责的客房进行个别抽查。

为了保证员工在各自的工作岗位上时刻保持认真的工作态度,在对其进行管理时,除了颁布一定的行政命令外,还必须制定一套有效的检查督促制度。

领班检查员工的工作,一般采取不定期抽查形式。

领班应根据任务情况,安排自己的查房数。

为方便残疾人进出客房,房间门及卫生间门的宽度不宜小于( )。

服务员的内在美通过言谈、举止、服饰、态度和作风等形成自然的( )范畴的一种形式。

下列哪项是住客房的英文缩写。( )。

大堂的地面清洁,打蜡工作一般在下列哪个时间内合适( )。

标准间的英文表示为( )。

( )的房态表示住客会因会客或其他原因需要服务员立即打扫。

下列不是开门打扫卫生的意义的是( )。

电话机常用的消毒方法是( )。

客人本人称病或认为客人生病时,下面哪一做法是禁止的:( )。

开夜床服务,一般在晚上几点前结束( )。

客房功能布局主要有睡眠区域、工作区域、起居区域、储存区域和( )。

客人对客房服务的心理需求主要是求安全,求清洁卫生、求舒适方便和( )。

西式铺床是用床单加( )在床垫上包边包角,再加盖床罩的一种铺床方式。

如有访客探访住店客人而客人不在,服务员应有礼貌劝其到( )等候。

以下各处不属于公共区域的是( )。

下列哪些属于夜床服务的基本程序。

所谓三方便准则,是指在制定有关标准和程序时,必须依照( )的准则进行。

属于机器清洁设备的有( )。

服务员在铺床时,可以把床上的床罩、毛毯、枕头放在( )。

清洁剂使用不当、管理不当,会出现以下几个方面的问题( )。

客人投诉的意义有:( )。

服务清洁客房时,正确的是:( )。

下列哪项符合客房清洁的原则。

为了防止逃账等意外情况,应将( )客房状况及时通知总台。

客房常用的碱性清洁剂有( )。

照看婴儿是饭店楼层的一项服务。

一般饭店都有保育员且多是女员工。

托婴服务中,要确保婴儿的安全,不要随便给小孩食物吃。

客房送餐服务主要由餐饮部提供。

接到加床通知,应尽快将加床搬到房间并铺好给客人使用。

叫醒服务由总机提供,楼层服务员不用参与。

客房门前的“请勿打扰”牌是客房清扫员决定清扫次序的依据之一。

迎客到房间门口时,核对过房卡后,可用工作钥匙为客人开门。

楼层服务员要记录各自负责清扫的每个客房的房态变化。

为了把好质量关,宾客满意了,我们的饭店才有社会效益。

将布草分类存放主要是为了整齐、好看。

走客房清扫时,通常先清扫卫生间后清扫卧室。

短期计划卫生是指循环周期为1个月以内的卫生。

只要做好客房的日常清洁工作,计划卫生可做可不做。

不同的客房状态清洁整理要求也有所不同,走客房只需一般清扫即可。

清扫住客房时,女性用的化妆品,稍加收拾,但不要随便挪动位置,即使化妆品用完了,也不得将空瓶或纸盒扔掉。

查看客房小酒吧时,如发现客人饮用酒水,应催请客人付帐。

测验:设计并绘制五种不同类型的服饰面料。

测验:计算机辅助服装设计使用的软件有哪些?

测验:图层、通道、滤镜、蒙板有什么区别?举例说明。

测验:设计并绘制一幅服饰图案。

测验:设计并绘制一款女青年头像。

测验:设计并绘制一款时尚女包。

测验:设计并绘制一款时尚女装效果图。

原型纸样设计:包含衣身原型和裙原型

女西装纸样设计

大衣、连衣裙纸样设计

完成排料图生成

测验:设计并绘制一幅创意服饰图案。

完成西裤排料
最新
1171
2442
2040
2232
1468
889
1054
2368
2310
1578
精选
1884
220
1826
1382
2148
965
1828
1593
1793
1335
随机推荐
382
1516
2501
1822
1171
1459
2394
2004
262
221
网站地图