京东2019校招笔试安全工程师笔试题
时长:90分钟 总分:62分
114浏览 0人已完成答题
题型介绍
题型 | 单选题 |
---|---|
数量 | 63 |
下面是一段关于计算变量s的算法: ①变量s的初值是0 ...
已知小顶堆:{51,32,73,23,42,62,99,14,24,394...
TCP协议的拥塞控制就是防止过多的数据注入到网络中,这样可以使网络中的路由...
X定义如下,若存在X a a.x=0x1122334...
union X{
int x
char y[4]
}
有以下程序#include us...
#include <iostream> using namespace std class D { int d public: D(int x=1) : d(x) {} ~D() { cout<<"D"} } int main(){ D d[]={_____________} D* p=new D[2] delete[]p return 0 }程序运行的结果是DDDDD,请为横线处选择合适的程序()
有以下程序#include us...
#include <iostream> using namespace std void (*function)(float) void One(float one) { cout<<"1"<<endl } void Two(float two) { cout<<"2"<<endl } void Three(float three) { cout<<"3"<<endl } int main() { float i=1,j=2,k=3 function = One function(i) function= Two function(j) function = Three function(k) }请为横线处选择合适的程序使得程序的运行结果是123 ()
有以下程序#include<iostream> us...
#include<iostream>
using namespace std
class complex
{ public:
int real
int imag
complex(int r=0,int i=0)
{ real=r
imag=i}
_________________________________
}
complex add(complex &a,complex & b)
{int r=a.real+b.real
int i=a.imag+b.imag
return complex(r,i)}
int main( )
{complex x(1,2),y(3,4),z
z=add(x,y)
cout<<z.real<<"+"<<z.imag<<"i"<<endl}
程序的输出结果为4+6i,请为横线处选择合适的程序 ( )
有以下程序#include<iostream> #i...
#include<iostream>
#include<fstream>
#include<string>
using namespace std
int main()
{ofstream File1("text.txt")
string d("20160314")
string y=d.substr(0,4)
int k=d.find("2")
int i=d.find("3")
string m=d.substr(k+2,i-k)
string dd=d.substr(i+1,2)
string n=dd+m+y
File1<<n<<endl
File1.close()
}
文件text.txt中写入的结果是( )
有以下函数模版#include <iostream>...
#include <iostream>
using namespace std
template <class T>
void S(T &x, T &y)
{ T temp
temp = x
x = y
y = temp}
template <class T>
void SS(T A[], int n)
{ int min
int i, j
for (i=0 i<n-1 i++)
{ min=i
for (j=_____ j<n j++)
if (A[j]<A[min]) min=j
S(A[i], A[min])
} }
其功能是将A数组中的数按照由小到大的顺序排列,请为横线处选择合适的程序( )
有以下类定义#include <iostream>u...
#include <iostream>
using namespace std
class shape
{public:
virtual int area()=0
}
class rectangle:public shape
{public:
int a, b
void setLength (int x, int y) {a=xb=y}
int area() {return a*b}
}
若有语句定义rectangle r r.setLength(3,5) 则编译时无语法错误的语句是( )
下列代码执行后的输出结果为(    ...
int main()
{
char c, s[20]
strcpy(s, "Hello,World")
printf("s[]=%6.9s\n", s)
return 0
}
struct Student{   ...
int num
char name[7]
short age
char sex
}student1
int sz = sizeof(student1)
则执行上面语句后,变量sz的值为( )
对于如下C++程序:int main() { ...
int main() {
vector<int> vInt(1)
cout << vInt[1]
cout << vInt.at(1)
return 0
}
请问两个cout语句分别会发生什么情况()
对于如下C++程序:int main() { ...
int main() {
vector<int> vInt
for (int i=0 i<5 ++i)
{
vInt.push_back(i)
cout << vInt.capacity() << " "
}
vector<int> vTmp(vInt)
cout << vTmp.capacity() << "\n"
return 0
}
请问程序输出的是()
对于如下C++程序:int main() { ...
int a(1), b(3), c(2)
while (a < b < c)
{
++a
--b
--c
}
cout << a << " " << b << " " << c << "\n"
return 0
}
请问输出结果是()
文件目录data当前权限为rwx --- ---,只需...
Shell 脚本(shell script),是一种为...
#!/bin/bash
aa='Hello World !'
请问下面选项中哪个能正常显示Hello World !
执行`ls -la /usr/bin/passwd`后...
-rwsr-xr-x 1 root root 59640 Sep 27 2017 /usr/bin/passwd
ssh可以密钥进行免密码登录。提供ssh服务的一端为服务端,发起ssh请求...
关于该方式登录以下说法正确的是