以下关于OpenOffice.org Draw的描述中错误的是()。 A、主要用来进行文字处理B、不具有图形化用户界面C、主要用来进行图形绘制处理D、主要用来进行公式计算
以下关于OpenOffice.org Draw的描述中错误的是()。
- A、主要用来进行文字处理
- B、不具有图形化用户界面
- C、主要用来进行图形绘制处理
- D、主要用来进行公式计算
相关考题:
( 32 )下面是类 Shape 的定义:class Shape{public:virtual void Draw()=0;};下列关于 Shape 类的描述中,正确的是A )类 Shape 是虚基类B )类 Shape 是抽象类C )类 Shape 中的 Draw 函数声明有误D )语句 “ Shape s; ” 能够建立 Shape 的一个对象 s
下面是类Shape的定义: class Shape{ public: virtual void Draw()=0; } 下列关于Shape类的描述中,正确的是( )。A.类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.语句“Shape s;”能够建立Shape的一个对象s
The term-loan agreement specifies a draw-down period of, say, up to two years, during which the funds must be used by the borrower; otherwise the borrower is not allowed to draw down any unused credit.A.RightB.WrongC.Doesn't say
以下属于鼠标触发的事件()。 A.draw_event()B.button_press_event()C.button_release_event()D.figure_enter_event()
publicabstractclassShape{intx;inty;publicabstractvoiddraw();publicvoidsetAnchor(intx,inty){this.x=x;this.y=y;}}andaclassCirclethatextendsandfullyimplementstheShapeclass.Whichiscorrect?() A.Shapes=newShape();s.setAnchor(10,10);s.draw();B.Circlec=newShape();c.setAnchor(10,10);c.draw();C.Shapes=newCircle();s.setAnchor(10,10);s.draw();D.Shapes=newCircle();s-setAnchor(10,10);s-draw();E.Circlec=newCircle();c.Shape.setAnchor(10,10);c.Shape.draw();
若有如下类定义:class Shape {public:virtual void Draw()=0;};则下列关于Shape类的叙述中,正确的是( )。 A. 类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.“Shape s;”能建立Shape的对象s
下面是类Shape的定义: classShape{ public: virtualvoidDraw( )=0; } 下列关于Shape类的描述中,正确的是( )。A.类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.语句“ShapeS;”能够建立Shape的一个对象S
下列方法与Applet显示无关的是( )。A.paint( )B.update( )C.draw( )SXB 下列方法与Applet显示无关的是( )。A.paint( )B.update( )C.draw( )D.repaint( )
The proper way to correct a mistake in the logbook is to ______.A.erase the entry and rewriteB.draw several lines through the entry,rewrite,and initial the correctionC.completely black out the entry,rewrite,and initial the correctionD.draw one line through the entry,rewrite,and initial the correction
根据下面资料,回答题T:同学们,我们来唱首歌:Let’s sing and dance. S: OK. .... T: (point to a picture) What′ s this S: It′ s a picture. T: Good. Look at the picture, what′ s the boy doing He is drawing. Read after me, draw, draw. T: Well done. Now let′ s play a game. I do, you say. (教师做画画动作,学生说"draw") T: Now let′s listen and do. (教师说"draw",学生做动作) 找出老师值得借鉴的地方并说明理由。(5分)
以下关于OpenOffice.org的描述中正确的是()。 A、OpenOffice.org是微软公司的最新版本的办公软件。B、OpenOffice.org可以在多种操作系统环境下运行。C、OpenOffice.org是源代码开放的自由软件。D、OpenOffice.org中包括多个应用程序。
关于chartwrappe类的onload方法下面说法错误的是()A、图标加载之后触发该事件B、调用draw方法会触发该事件C、控件调用draw方法后不用再用onload方法D、控件调用draw方法后需要再用onload方法
多选题以下关于OpenOffice.org的描述中正确的是()。AOpenOffice.org是微软公司的最新版本的办公软件。BOpenOffice.org可以在多种操作系统环境下运行。COpenOffice.org是源代码开放的自由软件。DOpenOffice.org中包括多个应用程序。
多选题public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?()Apublic class Circle implements Shape { private int radius; }Bpublic abstract class Circle extends Shape { private int radius; }Cpublic class Circle extends Shape { private int radius; public void draw(); }Dpublic abstract class Circle implements Shape { private int radius; public void draw(); }Epublic class Circle extends Shape { private int radius;public void draw() {/* code here */} }Fpublic abstract class Circle implements Shape { private int radius;public void draw() { / code here */ } }
单选题public abstract class Shape { int x; int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } and a class Circle that extends and fully implements the Shape class. Which is correct?()A Shape s = new Shape(); s.setAnchor(10,10); s.draw();B Circle c = new Shape(); c.setAnchor(10,10); c.draw();C Shape s = new Circle(); s.setAnchor(10,10); s.draw();D Shape s = new Circle(); s-setAnchor(10,10); s-draw();E Circle c = new Circle(); c.Shape.setAnchor(10,10); c.Shape.draw();
单选题关于chartwrappe类的onload方法下面说法错误的是()A图标加载之后触发该事件B调用draw方法会触发该事件C控件调用draw方法后不用再用onload方法D控件调用draw方法后需要再用onload方法