更多“细笔描法有高古游丝、琴弦描、铁线描、行云流水描、 、曹衣描等 Fine line techniques include archaic gossamer line, zither string line, iron wire line, , tremulous line and clinging clothing line, etc.”相关问题
  • 第1题:

    Given:Which code, inserted at line 16, correctly retrieves a local instance of a Point object?()

    A.Point p = Line.getPoint();

    B.Line.Point p = Line.getPoint();

    C.Point p = (new Line()).getPoint();

    D.Line.Point p = (new Line()).getPoint();


    参考答案:D

  • 第2题:

    顾恺之的《洛神赋图》使用的线描手法属于()。

    A.钉头鼠尾描
    B.铁线描
    C.高古游丝描
    D.减笔描

    答案:C
    解析:
    《洛神赋图》使用的线描手法属于高古游丝描,亦称春蚕吐丝描。

  • 第3题:

    以下哪种笔描方式是古代画家张叔厚使用的?()

    • A、琴弦描
    • B、高古游丝描
    • C、铁线描
    • D、行云流水描

    正确答案:C

  • 第4题:

    曹衣描


    正确答案: 即为曹衣出水描的简称。来自于西域的画家曹仲达,其画佛像衣纹下垂、繁密,贴身如出水状,故称“曹衣出水”。受印度健陀罗艺术的影响,用笔细而下垂,成圆弧状,讲求线之间的疏密排列变化。

  • 第5题:

    顾恺之的《洛神赋图》使用的线条属于()。

    • A、钉头鼠尾描
    • B、铁线描
    • C、高古游丝描
    • D、减笔描

    正确答案:C

  • 第6题:

    当用户端cisco路由器上用showinterface命令时line和lineprotocal可能出现的几种组合?()。

    • A、line down;line protocol down
    • B、line down;line protocol
    • C、line up;line protocol down
    • D、line up;line protocol up

    正确答案:A,C,D

  • 第7题:

    Which is the earliest line in the following code after which the object created on the line marked (0) will be a candidate for being garbage collected, assuming no compiler optimizations are done? ()  public class Q76a9 {   static String f() {   String a = "hello";   String b = "bye"; // (0)   String c = b + "!"; // (1)   String d = b;  b = a; // (2)   d = a; // (3)   return c; // (4)  }   public static void main(String args[]) {   String msg = f();   System.out.println(msg); // (5)   }   }  

    • A、The line marked (1).
    • B、The line marked (2).
    • C、The line marked (3).
    • D、The line marked (4).
    • E、The line marked (5).

    正确答案:C

  • 第8题:

    名词解释题
    高古游丝描

    正确答案: 最古老的工笔线描之一,常见于顾恺之的画作。线条提按变化不大,细而均匀,多为圆转曲线。顿笔为小圆头状。
    解析: 暂无解析

  • 第9题:

    判断题
    高古游丝描在2400多年前就存在了,从长沙出图的战国时期的帛画就是用了高古游丝描。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第10题:

    单选题
    顾恺之的《洛神赋图》使用的线条属于()
    A

    钉头鼠尾描

    B

    铁线描

    C

    高古游丝描

    D

    减笔描


    正确答案: A
    解析: 暂无解析

  • 第11题:

    单选题
    Given the following code:     1) class Parent {     2) private String name;     3) public Parent(){}     4) }  5) public class Child extends Parent {     6) private String department;  7) public Child() {}  8) public String getValue(){ return name; }     9) public static void main(String arg[]) {     10) Parent p = new Parent();     11) }  12) }  Which line will cause error?()
    A

     line 3

    B

     line 6

    C

     line 7

    D

     line 8

    E

     line 10


    正确答案: E
    解析: 第8行的getValue()试图访问父类的私有变量,错误。

  • 第12题:

    单选题
    A spring line is a().
    A

    mooring line made of spring lay wire rope

    B

    mooring line running diagonally to the keel

    C

    mooring line parallel to the keel

    D

    wire rope used for securing an anchor buoy


    正确答案: B
    解析: 暂无解析

  • 第13题:

    当用户端cisco路由器上用showinterface命令时line和lineprotocal可能出现的几种组合?()。

    A.line down;line protocol down

    B.line down;line protocol

    C.line up;line protocol down

    D.line up;line protocol up


    参考答案:A, C, D

  • 第14题:

    高古游丝描


    正确答案: 最古老的工笔线描之一,常见于顾恺之的画作。线条提按变化不大,细而均匀,多为圆转曲线。顿笔为小圆头状。

  • 第15题:

    高古游丝描在2400多年前就存在了,从长沙出图的战国时期的帛画就是用了高古游丝描。


    正确答案:正确

  • 第16题:

    梁楷的作品《李白行吟图》运用了以下哪种笔描方式?()

    • A、减笔描
    • B、枣核描
    • C、铁线描
    • D、柳叶描

    正确答案:A

  • 第17题:

    顾恺之在《女史箴图》中所画的那细劲、圆润如“行云流水”般的线条,称为()描。顾恺之在《洛神赋图》中运用的线描属于“高古游丝描”。


    正确答案:高古游丝

  • 第18题:

    Given the following code:     1) class Parent {     2) private String name;     3) public Parent(){}     4) }  5) public class Child extends Parent {     6) private String department;  7) public Child() {}  8) public String getValue(){ return name; }     9) public static void main(String arg[]) {     10) Parent p = new Parent();     11) }  12) }  Which line will cause error?()   

    • A、 line 3
    • B、 line 6
    • C、 line 7
    • D、 line 8
    • E、 line 10

    正确答案:D

  • 第19题:

    单选题
    A short splice in a line().
    A

    decreases the size of the line

    B

    should be used if the line is going through a block

    C

    should only be used in wire rope

    D

    doubles the size of the line


    正确答案: C
    解析: 暂无解析

  • 第20题:

    单选题
    梁楷的作品《李白行吟图》运用了以下哪种笔描方式?()
    A

    减笔描

    B

    枣核描

    C

    铁线描

    D

    柳叶描


    正确答案: D
    解析: 暂无解析

  • 第21题:

    填空题
    顾恺之在《女史箴图》中所画的那细劲、圆润如“行云流水”般的线条,称为()描。顾恺之在《洛神赋图》中运用的线描属于“高古游丝描”。

    正确答案: 高古游丝
    解析: 暂无解析

  • 第22题:

    单选题
    Which is the earliest line in the following code after which the object created on the line marked (0) will be a candidate for being garbage collected, assuming no compiler optimizations are done? ()  public class Q76a9 {   static String f() {   String a = "hello";   String b = "bye"; // (0)   String c = b + "!"; // (1)   String d = b;  b = a; // (2)   d = a; // (3)   return c; // (4)  }   public static void main(String args[]) {   String msg = f();   System.out.println(msg); // (5)   }   }
    A

    The line marked (1).

    B

    The line marked (2).

    C

    The line marked (3).

    D

    The line marked (4).

    E

    The line marked (5).


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    A “spring line” is().
    A

    any wire rope used for mooring

    B

    a fire-warp

    C

    a mooring line running diagonally to the keel

    D

    a mooring line perpendicular to the keel


    正确答案: B
    解析: 暂无解析

  • 第24题:

    单选题
    以下哪种笔描方式是古代画家张叔厚使用的?()
    A

    琴弦描

    B

    高古游丝描

    C

    铁线描

    D

    行云流水描


    正确答案: B
    解析: 暂无解析