【单选题】【消耗次数:1】
函数f(x)=x3-3x2-9x+5的极大值为( )
-1
10
3
22
参考答案:
复制
纠错
相关题目
【单选题】 函数f(x)=x^3-6x^2+9x-5的极小值为( )
①  1
②  -1
③  3
④  -5
【单选题】 以下程序段运行后,x[1]的值为()。intx[5]={5,4,3,2,1};x[1]=x[3]+x[2+2]-x[3-1];
①  6
②  0
③  1
④  5
【单选题】 设函数f(x)=ln(3x+1)+√(5-2x)+arcsinx的定义域是( )
①  (-1/3,5/2)
②  (-1,5/2)
③  (-1/3,1)
④  (-1,1)
【简答题】 求解线性方程组<img class="jc-formula" data-tex="\begin{ cases } { x }_{ 1 }+{ x }_{ 2 }+{ x }_{ 3 }+{ x }_{ 4 }=1 \\ 3{ x }_{ 1 }+2{ x }_{ 2 }+{ x }_{ 3 }+{ x }_{ 4 }=-3 \\ \quad \quad \quad \quad \quad { x }_{ 2 }+3{ x }_{ 3 }+2{ x }_{ 4 }=5 \\ 5{ x }_{ 1 }+4{ x }_{ 2 }+3{ x }_{ 3 }+3{ x }_{ 4 }=-1 \end{ cases }" src="https://huaweicloudobs.ahjxjy.cn/F8FB85A63DD75F17C75DBA324F3C9E05.png" style="vertical-align: middle;"/>
【单选题】 函数f(x)=x^3-6x^2+2的拐点为( )
①  (2,-14)
②  (1,-14)
③  (14,-14)
④  (-1,-14)
【简答题】 解线性方程组<img class="jc-formula" data-tex="\begin{ cases } x_{ 1 }+3{ x }_{ 2 }-{ 2x }_{ 3 }+{ x }_{ 4 }=1 \\ 2{ x }_{ 1 }+5{ x }_{ 2 }-3{ x }_{ 3 }+{ x }_{ 4 }=3 \\ -3{ x }_{ 1 }+4{ x }_{ 2 }+8{ x }_{ 3 }-2{ x }_{ 4 }=4 \\ 6{ x }_{ 1 }-{ x }_{ 2 }-6{ x }_{ 3 }+4{ x }_{ 4 }=2 \end{ cases }" src="https://huaweicloudobs.ahjxjy.cn/9D3F9AFD766D2E70840A2BC2711DEC75.png" style="vertical-align: middle;"/>.
【简答题】 求如下方程组的全部解<img class="jc-formula" data-tex="\begin{ cases } { x }_{ 1 }+5{ x }_{ 2 }-{ x }_{ 3 }-{ x }_{ 4 }=-1 \\ x_{ 1 }-2{ x }_{ 2 }+{ x }_{ 3 }+3{ x }_{ 4 }=3 \\ 3{ x }_{ 1 }+8{ x }_{ 2 }-{ x }_{ 3 }+{ x }_{ 4 }=1 \\ { x }_{ 1 }-9{ x }_{ 2 }+3{ x }_{ 3 }+7{ x }_{ 4 }=7 \end{ cases }" src="https://huaweicloudobs.ahjxjy.cn/A62CC30A0D3B926B3452EB7F99DCE879.png" style="vertical-align: middle;"/>.
【多选题】 设函数f: R+?R, f(x)=x^2-3x-5,则它不是:
①  满射;
②  单射;
③  双射;
④  函数.
【单选题】 函数f(x)=2x^3-6x^2-18x-7的拐点为( )
①  (1,-29)
②  (0,29)
③  (-1,1)
④  (0,1)
【简答题】 求解方程组<img class="jc-formula" data-tex="\begin{ cases } { x }_{ 1 }-2{ x }_{ 2 }+3{ x }_{ 3 }-{ x }_{ 4 }=1 \\ 3{ x }_{ 1 }-5{ x }_{ 2 }+5x_{ 3 }-3{ x }_{ 4 }=2 \\ 2{ x }_{ 1 }-3{ x }_{ 2 }+2{ x }_{ 3 }-2{ x }_{ 4 }=1 \end{ cases }" src="https://huaweicloudobs.ahjxjy.cn/D2F7DBEDF74F0DA535C0BD6A61FA9854.png" style="vertical-align: middle;"/>
随机题目
【单选题】 在switch语句的每个case块中,假定都是以break语句结束的,则此switch语句容易被改写为( )语句。
①  for
②  if
③  do
④  While
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为( )。
①  0
②  4
③  8
④  6
【单选题】 当在程序中执行到( )语句时,将结束所在循环语句中循环体的一次执行。
①  continue
②  break
③  goto
④  return
【单选题】 在下面的do循环语句中,其循环体被执行的次数为( )。 int i=0;do i++;while(i*i<10);
①  4
②  3
③  5
④  2
【单选题】 假定有定义“int b[10];int *pb;”,则不正确的赋值语句为( )。
①  pb=b;
②  pb=
③  pb=b+2;
④  pb=b[5];
【单选题】 若需要把一个字符串aaa赋值到字符数组a中,则需要进行( )的函数调用实现。
①  strlen
②  strcmp
③  strcat
④  strcpy
【单选题】 在下面的do循环语句中,其循环体被执行的次数为( )。 int i=0;do i++;while(i*i
①  4
②  3
③  5
④  2
【单选题】 数组元素a[i]是该数组中的第( )个元素。
①  i
②  i+1
③  i-1
④  i*2
【单选题】 假定对二维数组a[3][4]进行初始化的数据为{{3,5,6},{2,8},{7}},则a[1][1]元素被初始化为( )。
①  6
②  2
③  5
④  8
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为( )。
①  0
②  4
③  8
④  6