【岩】某饱和软黏土无侧限抗压强度试验的不排水抗剪强度cu=70kPa,如果对同一土样进行三轴不固结不排水试验,施加围压σ3=150kPa,计算试样在发生破坏时的轴向应力σ1。
查看答案
【岩】某正常固结饱和黏性土试样进行不固结不排水试验得;φu=0,cu=25kPa;对同样的土进行固结不排水试验,得到有效抗剪强度指标:c'=0,φ’=30°。求该试样在固结不排水条件下剪切破坏时的有效大主应力和有效小主应力之差。
指出下列程序运行的结果public class Example{String str=new String("good");char[] ch = {'a','b','c'};public static void main(String args[]){Example ex=new Example();ex.change(ex.str,ex.ch);System.out.print(ex.str+" and ");Sytem.out.print(ex.ch);}public void change(String str,char ch[]){str="test ok";ch[0]='g';}}
A. good and abc
B. good and gbc
C. test ok and abc
D. test ok and gbc
下面程序中类ClassDemo中定义了一个静态变量sum,分析程序段的输出结果。class ClassDemo {public static int sum=1;public ClassDemo() {sum = sum + 5;}}public class ClassDemoTest{public static void main(String args[]) {ClassDemo demo1=new ClassDemo();ClassDemo demo2=new ClassDemo();System.out.println(demo1.sum);}}
A. 0
B. 6
C. 11
D. 2
在下列A类的类体中,代码1~代码5哪些是错误的?class Tom{private int x=120;protected int y=20;int z=11;private void f(){x=200;System.out.println(x);}void g(){x=200;System.out.println(x);}}public class A{public static void main(String[] args){Tom tom=new Tom();tom.x=22;//代码1tom.y=33;// 代码2tom.z=55;//代码3tom.f();//代码4tom.g();//代码5}}