网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

输入图片大小为200×200,依次经过一层卷积(kernel size 5×5,padding 1,stride 2),pooling(kernel size 3×3,padding 0,stride 1),又一层卷积(kernel size 3×3,padding 1,stride 1)之后,输出特征图大小为()。

A.95

B.96

C.97

D.98


参考答案和解析
C
更多 “输入图片大小为200×200,依次经过一层卷积(kernel size 5×5,padding 1,stride 2),pooling(kernel size 3×3,padding 0,stride 1),又一层卷积(kernel size 3×3,padding 1,stride 1)之后,输出特征图大小为()。A.95B.96C.97D.98” 相关考题
考题 在卷积技术中,如果R=1/3,当卷积器的输入为246bit时,其输出为() A.492bitB.738bitC.123biD.82bit

考题 使用VC6打开考生文件夹下的工程test34_3。此工程包含一个test34_3.cpp,其中定义了表示栈的类stack。源程序中stack类的定义并不完整,请按要求完成下列操作,将程序补充完整。(1)定义类stack的私有数据成员sp和size,它们分别为整型的指针和变量,其中sP指向存放栈的数据元素的数组,size为栈中存放最后一个元素的下标值。请在注释“//**1**”之后添加适当的语句。(2)完成类stack的构造函数,该函数首先从动态存储空间分配含有100个元素的int型数组,并把该数组的首元素地址赋给指针sp,然后将该数组的所有元素赋值为0,并将size赋值为-1(size等于-1表示栈为空)。请在注释“//**2**”之后添加适当的语句。(3)完成类stack的成员函数push的定义。该函数将传入的整型参数x压入栈中,即在size小于数组的最大下标情况下, size自加1,再给x赋值。请在注释“//**3**”之后添加适当的语句。(4)完成类stack的成员函数pop的定义,该函数返回栈顶元素的值,即在size不等于-1的情况下,返回数组中下标为size的元素的值,并将size减1。请在注释“//**4**”之后添加适当的语句。程序输出结果如下:the top elem:1the pop elem:1the stack is empty注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。源程序文件test34_3.cpp清单如下:include<iostream.h>class stack{//** 1 **public:stack ( );bool empty(){return size==-1;}bool full() {return size==99;}void push(int x);void pop();void top();};stack::stack(){//** 2 **for(int i=0; i<100; i++)*(sp+i)=0;size=-1;}void stack::push(int x){//** 3 **cout<<"the stack is full"<<end1;else{size++;*(sp+size) = x;}}void stack::pop(){//** 4 **cout<<"the stack is empty"<<end1;else{cout<<"the pop elem:"<<*(sp+size)<<end1;size--;}}void stack::top(){if iempty() )cout<<"the stack is empty"<<end1;else{cout<<"the top elem:"<<*(sp+size)<<end1;}}void main ( ){stack s;s.push(1);s.top();s.pop();s.top();}

考题 有如下程序: nclude using namespace std; class Stack{ 有如下程序: #nclude<iostremn> using namespace std; class Stack{ public: Stack(unsigned n=10:size(n){rep_=new int[size];top=O;} Stack(Stacks):size(s.size) { rep_=new int[size]; for(int i=0;i<size;i++)rep_[i]=s.rep_[i]; top=s.top; } ~Stack(){delete[]rep_;} void push(int a){rep_[top]=a; top++;} int opo(){--top;return rep_[top];} bool is Empty()const{return top==O;} pavate: int*rep_; unsigned size,top; }; int main() { Stack s1; for(int i=1;i<5;i++) s1.push(i); Stack s2(s1); for(i=1;i<3;i++) cout<<s2.pop()<<','; s2.push(6); s1.push(7); while(!s2.isEmpty()) cout<<s2.pop()<<','; return 0; } 执行上面程序的输出是A.4,3,2,1B.4,3,6,7,2,1C.4,3,6,2,1D.1,2,3,4

考题 下面哪个选项不符合样式表的基本语法规则()? A.a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}B.message [PADDING-RIGHT: 0px; DISPLAY: none; PADDING-LEFT: 0px;]C.h1#blue{color:blue;}D.h2{color:red;font-size:14px;}

考题 GSM分别采用卷积速率为1/2和()的卷积码 A、1/3B、1/4C、1/5D、1/6

考题 下面哪个选项不符合样式表的基本语法规则? ()A. h2{color:red;font-size:14px;}B. h1#blue{color:blue;}C. message [PADDING-RIGHT: Opx; DISPLAY: none; PADDING-LEFT: Opx;]D. a:link{color: #FF3366;font-family:"宋体"; text-decoration: none;}

考题 阅读以下说明和C++程序,将应填(n)处的字句写在对应栏内。[说明]设计一程序,输入10个整数到一个数组中,调整这10个数在数组中的位置,使得其中最小的一个数成为数组的首元素,最大的一个数成为数组的末元素。[C++程序]include <iostream.h>define SIZE 10void main ( ){int data [SIZE];int m;cout<<"请输入"<<SIZE<<"个整数:";for ( m=0;m<SIZE; m++ ) (1);int j=0,k=0;for ( int i=1;i<SIZE; i++ )if ((2)) j=i;else if ( data[i]<data[k] ) (3);if (j>0 ) {int d=data[0];(4);data[k]=d;}if ( k<SIZE-1 ){int d=data [SIZE- 1 ];data[SIZE- 1 ]=data[j];(5);}cout<<end1<<" 排序后: ";for ( m=0;m<SIZE; m++ ) cout<<data[m]<<" " ;}

考题 YousetthevalueoftheSGA_TARGETinitializationparameterto1GtoenableOracletoautomaticallyresizemostofthememorycomponentsaccordingtothecurrentworkloadinthedatabase.Youissuethefollowingstatement:SQLSELECTname,value,isdefault2FROMv$parameter3WHEREnameLIKE’%size%’;TheoutputofthisstatementdisplaysthattheDB_CACHE_SIZE,SHARED_POOL_SIZE,LARGE_POOL_SIZE,andJAVA_POOL_SIZEinitializationparameterscontainazerovalue.Whatdoesthisimply?()A.TheSGA_TARGETinitializationparametercannotbesettoavaluelessthan1GB.TheSGA_TARGETinitializationparametercannotbesettoavaluegreaterthan1GC.TheMemoryAdvisoroftheOracleEnterpriseManager10gcannotbeusedtoobtainadviceontheimportantmemorycomponentsoftheSGAD.ThevaluesoftheDB_CACHE_SIZE,SHARED_POOL_SIZE,LARGE_POOL_SIZE,andJAVA_POOL_SIZEinitializationparameterscannotbesetmanually.E.NominimumlimitsareimposedontheDB_CACHE_SIZE,SHARED_POOL_SIZE,LARGE_POOL_SIZE,andJAVA_POOL_SIZEinitializationparameters.F.TheAutomaticSharedMemoryManagementfeaturecannotbedisabledunlessyouspecifyvaluesfortheDB_CACHE_SIZE,SHARED_POOL_SIZE,LARGE_POOL_SIZE,andJAVA_POOL_SIZEinitializationparametersintheinitializationparameterfile.

考题 YouenabledAutomaticSharedMemoryManagement.Theinitializationparametersaresetasshownbelow:SGA_TARGET=10GBSGA_MAX_SIZE=14GBSTREAMS_POOL_SIZE=1GBSHARED_POOL_SIZE=3GBWhichtwostatementsarecorrectinthisscenario?()A.Atotalof14GBmemorywillbeallocatedtotheautomaticallytunedmemorycomponentsB.ReducingthevalueforSGA_TARGETto9GBwillautomaticallydecreasethememoryallocatedtosharedpoolfrom3GBto2GBC.ThevalueforSGA_TARGETcanbeincreaseduptoamaximumof14GBD.Amaximumof3GBcanbeallocatedtosharedpoolE.IncreasingthevalueforSGA_TARGETto12GBwillautomaticallyincreasethememoryallocatedtoautotunedparametersF.IncreasingthevalueforSGA_TARGETwillautomaticallyincreasethememoryallocatedforSTREAMS_POOL_SIZE

考题 以下有关数组定义的语句序列中,错误的是 ______。A.Static arr1(3) arr1(1)=100 arr1(2)="Hello" arr1(3)=12345B.Dim arr2()As Integer Dim size As Integer Private Sub Command2_Click() size=Input Box("输入:") ReDimarr2(size) ... End SubC.Option Base 1 Private Sub Command3_Click() Dim arr3(3)As Integer ... End SubD.Dim n As Integer Private Sub Command4_Click() Dim arr4(n)As Integer ... End Sub

考题 有如下程序:includeusing namespace std;classStack{public:Stack (unsigned n=10) 有如下程序: #include <iostream.h> using namespace std; class Stack { public: Stack (unsigned n=10):size (n) {rep_=new int [size]; top=0;} Stack (stacks}: size (s.size) { rep_new int[size]; for (int i=0;i<size;i++ rip_[i]-s.rep_[i]; top=s.top; } ~Stack() {delete[]rep_;} void poush (int a) {rep_[topj=a; top++;} int pep() { --top; return rep_[top];} bool isEmpty() cons5 [return Top ==0;} private: int*rep_; unsigned size, top; }; int main() { Stack s1; for(int i=1;i<5;i++) s1.push(i); Stack s2(s1); for(i=1;i<3;i++} cout<<s2.pop()<<','; s2.push(6); s1.push(7); while(!s2.isEmpty()) cout<<s2.pop()<<','; return 0; } 执行上面程序的输出是A.4,3,2,1,B.4,3,6,7,2,1,C.4,3,6,2,1,D.1,2,3,4,

考题 有下列程序: include using namespace std; class Stack { public: Stack(unsigned 有下列程序: #include<iosteram.h> using namespace std; class Stack { public: Stack(unsignedn=10):size(n){rep_=new int [size];top=O;} Stack(Stacks):size(s.size) { rep_=new int[size]; foA.4,3,2,1,B.4,3,6,7,2,1,C.4,3,6,2,1,D.1,2,3,4,

考题 有如下程序:include using namespace std;class Stack {public: Stack(unsigned n= 1 有如下程序: #include <iostream> using namespace std; class Stack { public: Stack(unsigned n= 10):size(n) {rep_=ew int[size]; top=0;} Stack(Stack s):size(s.size) { rep_=new int[size]; for(int i=0;i<size;i++) rep_[i]=s.rep_[i]; top=s.top; } ~Stack() {delete[]rep_;} void push(int a) {rep_[top]=a; top++;} int pop() {--top;return rep_[top];} bool isEmpty() const {return top==0;} private: int *rep_; unsigned size,top; }; int main() { Stack s1; for(int i= 1;i<5 ;i++) s1. push(i); Stack s2(s1); for(i= 1 ;i3;i++) cout<<s2.pop()<<','; s2.push(6); si.push(7); while(!s2.isEmpty()) cout<<s2.pop()<<','; return 0; }执行上面程序的输出是______ 。A.4,3,2,1,B.4,3,6,7,2,1,C.4,3,6,2,1,D.1,2,3,4,

考题 有如下程序:include using namespace std;class Stack{public:Stack(unsigned n=10 有如下程序: #include <iostream.h> using namespace std; class Stack { public: Stack(unsigned n=10):size(n){rep_=new int [size]; top=0;} Stack(Stacks): size (s.size) { rep_=new int[size]; for (int i=0;i<size;i++) rep_[i]=s.rep_[i]; top=s.top; } ~Stack(){delete[]rep_;} void push(int a){rep_[top]=a; top++;} int pop(){--top; return rep_[top];} bool isEmpty() const {return top ==0;} private: int*rep_; unsigned size, top; }; int main() { Stack s1; for(int i=1;i<5;i++) sl.push(i); Stack s2(s1); for (int i=1;i<3;i++) cout<<s2.pop()<<','; s2.push(6); s1.push(7); while(!s2.isEmpty()) cout<<s2.pop()<<','; return 0; } 执行上面程序将输出( )。A.4,3,2,1,B.4,3,6,7,2,1,C.4,3,6,2,1,D.1,2,3,4,

考题 SCH信道采用的卷积编码速率为1() A.1B.2C.3D.4E.5

考题 阅读下列Java程序,回答下列问题。 [Java 程序] public int addAppTask(Activity activity, Intent intent, TaskDescription description, Bitmap thumbnail) { Point size = getSize1; //1 final int tw = thumbnail.getWidth1; final int th = thumbnail.getHeight1; if (tw != size.x || th != size.y) { //2,3 Bitmap bm = Bitmap.createBitmap(size.x, size.y, thumbnail .getConfig1); //4 float scale; float dx = 0, dy = 0; if (tw * size.x > size.y * th) { //5 scale = (float) size.x / (float) th; //6 dx = (size.y - tw * scale) * 0.5f; } else { //7 scale = (float) size.y / (float) tw; dy = (size.x - th * scale) * 0.5f; } Matrix matrix = new Matrix1; matrix.setScale(scale, scale); matrix.postTranslate((int) (dx + 0.5f), 0); Canvas canvas = new Canvas(bm); canvas.drawBitmap(thumbnail, matrix, null); canvas.setBitmap(null); thumbnail = bm; } if (description == null) { //8 description = new TaskDescription1; //9 } } //10 1、请简述基本路径测试法的概念。(2分) 2、请画出上述程序的控制流图,并计算其控制流图的环路复杂度vfG.。(8分) 3、请给出问题2中控制流图的线性无关路径。(5分)

考题 在bootstrap中,关于全局设置的说法,错误的是()A、font-size为14px B、line-height 设置为 1.428 C、p设置了等于 1/2 行高(即 10px)的底部外边距(margin)D、p设置了等于 1/2 行高(即 10px)的底部内边距(padding)

考题 在下面的选项中,符合CSS选择器的语法格式的是()。A、p{font-size:12px;}B、#myfont{font-weight:bold;}C、.green{color:green;}D、{margin:0;padding:0;}

考题 下面对于padding写法说法正确的是()。A、padding:5px 4px 3pxB、padding-top:3pxC、padding:5px 4pxD、padding-bottom:-10px;

考题 下列哪个css属性能够设置盒模型的内补丁为10、20、30、40(顺时针方向)()A、padding:10px 20px 30px 40pxB、padding:10px 1pxC、padding:5px 20px 10pxD、padding:10px

考题 下面哪个选项不符合样式表的基本语法规则 ?()A、 h2{color:red;font-size:14px;}B、 h1#blue{color:blue;}C、 message [ PADDING-RIGHT: 0px; DISPLAY: none; PADDING-LEFT: 0px;]D、 a:link {color: #FF3366;font-family: "宋体";text-decoration: none;}

考题 RACH信道采用的卷积编码速率为1()A、1B、2C、3D、4E、5

考题 在GSM系统中,正向和反向传输都采用()纠随机错误。A、(2,1,5)卷积编码B、(2,1,9)卷积编码C、(3,1,9)卷积编码D、(4,1,9)卷积编码

考题 AD166系列机器要求设置A3计两张,需设置下列哪项()A、Total Counter设置为1B、Total Counter设置为2C、Size Counter设置为1D、Size Counter设置为2

考题 多选题在linux系统中,在当前目录下查找以d开头的,并且大小在0~200个字节之间的文件,以下命令正确的是()。Afind -name 'd*' -size -0c –size +200cBfind -name 'd*' -size +0c -200cCfind -size +0c –size -200c -name 'd*'Dfind -name 'd*' -size +0c –size -200cEfind -name 'd*' -size [0c-200c]

考题 单选题你正在磁盘1,2和3上建立RAID-0动态卷,下列哪个命令可以使这个卷尽可能的大?()A create volume stripe size=0 disk=1,2,3B create volume stripe disk=1,2,3C create volume raid size=0 disk=1,2,3D create volume raid disk=1,2,3

考题 单选题The word “stride” underlined in Paragraph 1 probably means.A advanceB prideC positionD route

考题 单选题在GSM系统中,正向和反向传输都采用()纠随机错误。A (2,1,5)卷积编码B (2,1,9)卷积编码C (3,1,9)卷积编码D (4,1,9)卷积编码