1.  >>  国家开放大学 / 市场营销策划(本)
 国家开放大学 / 市场营销策划(本)
正确率:100%

包装策划主要( )要素
外形要素   

构图要素  

材料要素 

层次要素
 参考答案:
 佳题速递:
  • He unwillingly ___________to their demands,but he managed to keep a record of their crimes. A、 yielded B、 subject C、 give way D、 give in英语4
  • 13、PowerPoint 2010“文件”选项卡中,可以进行___________。 A.保存或另存为幻灯片文件的操作 B.播放幻灯片文件的操作 C.删除幻灯片的操作 D.幻灯片预览操作计算机统考
  • 14[分析题] #include “iostream.h”  class A{    public:      A(  )       {  cout<<”A begins” ; }      ~A(  ) { cout<<”A  ends”; }       void print( ) { cout<<”I am A”; }       virtual void show() { cout<<”A is great”; }       }    }; class B :public A{   public:      B(  )       { cout<<”B begins” ; }      ~B( ) { cout<<”B ends” ; }      void print ( ) { cout<<”I am B” ; } void show() { cout<<”B is great” }   }; void main( ) {  A  obj_b; A *p;  p=new B; p->show(); p=&obj_b; p->print(); }           面向对象程序设计
  • 1[简答题] 课标》在分段内容标准中,对识读乐谱3-6年级(小学答),7-9年级(初中答)的表述是视唱练耳
  • 10[填空题] 精密压力表精度等级较高,一般有()、()、()级信号与系统
  • 7[完成题]  在下面程序横线处填上适当的字句,使其输出结果为0,56,56。#include <iostream.h>class base{   public:      在下面程序横线处填上适当的字句,使其输出结果为0,56,56。#include <iostream.h>class base{   public:      _________func( ){return 0;}};class derived:public base{   public:       int a,b,c;       _________ setValue(int x,int y,int z){a=x;b=y;c=z;}       int func( ){return(a b)*c;}};void main(){  base b;  derived d;  cout<<b.func( )<<′,′;  d.setValue(3,5,7);  cout<<d.func( )<<′,′;  base& pb=d;  cout<<pb.func( )<<end1;}func( ){return 0;}};class derived:public base{   public:       int a,b,c;       _________ setValue(int x,int y,int z){a=x;b=y;c=z;}       int func( ){return(a b)*c;}};void main(){  base b;  derived d;  cout<<b.func( )<<′,′;  d.setValue(3,5,7);  cout<<d.func( )<<′,′;  base& pb=d;  cout<<pb.func( )<<end1;}C++程序设计