单项选择题

儿童在刚认识小狗之后,会把小羊也叫做小狗,皮亚杰把该现象称为()。

A.平衡
B.图式
C.同化
D.顺应
点击查看答案

你可能感兴趣的试题


单项选择题

总体国家安全观强调,以()安全为基础。

A.人民
B.政治
C.经济
D.军事

单项选择题

要从“file.dat”文件中读出第10个字节到变量c中,下列哪个方法适合? ( )

A.FileInputStream in=new FileInputStream("file.dat");
int c=in.read();
B.RandomAccessFile in=new RandomAccessFile("file.dat");
in.skip(9);
int c=in.readByte();
C.FileInputStream in=new FileInputStream("file.dat");
in.skip(9);
int c=in.read();
D.FileInputStream in=new FileInputStream("file.dat");
in.skip(10);
int c=in.read();