皮皮学,免费搜题
登录
搜题
【简答题】
【材料一】唐代法律明文规定:“食,不得与下人争利;工商杂类,不得预于士伍。” ——《旧唐书》卷48 【材料二】唐人志向“,每卖药,即市阅书,遂通。玄宗开元十年,召入翰林。”宋代“长安百姓常,以镌字为业。”宋代增城人,试有司连黜,放弃科举,曰:“不为宰相,则为良医。”宋代“乡贡第一,试礼部不第,即弃去,有田一廛,与其弟躬耕,闲则读书”。 ——资料来自《》等 【材料三】黄梅戏《天仙配》中有这样一段唱词:“你耕田来我织布,你挑水来我浇园。寒窑虽破能避风雨,夫妻恩爱苦也甜。” 根据以上材料并结合所学知识,谈谈你对中国古代社会经济生活的认识。
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】电流互感器是将高压系统中的电流或者低压系统中的大电流改变为 ( ) 标准的小电流。
A.
低压系统
B.
中压系统
C.
高压系统
D.
超高压系统
【简答题】class StaticTest { static int x=1; int y; StaticTest(){y++;} public static void main(String args[ ]){ StaticTest st=new StaticTest(); System.out.println("x=" + x); System.out.println("st.y=" + st.y); ...
【单选题】以下代码执行结果是 class StaticTest{ static{ System.out.print("a "); } { System.out.print("b "); } public static void main(String[] args) { StaticTest st2 = new ChildTest(); //main 1 Sys tem.out.print(“ # ”); ...
A.
a c b # a b
B.
a b c # a b c
C.
a c b # b
D.
a b c # a b
【单选题】[A2010XL6321156]电流互感器是将高压系统中的电流或低压系统中的大电流改为( )标准的小电流。
A.
低压系统
B.
中压系统
C.
高压系统
D.
0
【简答题】程序分析: public class StaticTest { static String name; static { System.out.println(name+"静态代码块"); } { System.out.println(name+"非静态代码块"); } public StaticTest(String a) { name=a; System.out.println(name+"构...
【单选题】如下代码运行之后结果为: public class StaticTest { static int i; public void showI() { System.out.println(++i); } public static void staticShowI() { System.out.println(++i); } public static void main(String[] s) ...
A.
2
B.
0
C.
1
D.
无法编译
【单选题】以下代码执行结果是 class StaticTest{ static{ System.out.print("a "); } static{ System.out.print("b "); } public static void main(String[] args) { StaticTest st1 = new ChildTest(); } } class ChildTest extends S...
A.
c a b
B.
a b c
C.
c
D.
a b
【单选题】电流互感器是将高压系统中的电流或低压系统中的()改变为低压的标准的小电流。
A.
小电流
B.
大电流
C.
直流电流
【单选题】电流互感器是将高压系统中的电流或低压系统中的大电流改变为( )标准的小电流。
A.
低压系统
B.
中压系统
C.
高压系统
【单选题】When is the text “Hi there”displayed?( ) public class StaticTest { static { System.out.println(“Hi there”); } public void print() { System.out.println(“Hello”); } public static void main(String args...
A.
Never.
B.
Each time a new object of type StaticTest is created.
C.
Once when the class is loaded into the Java virtual machine.
D.
Only when the main() method is executed.
相关题目: