搜狐2017校招研发工程师模拟笔试题(一)
时长:90分钟 总分:100分
166浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 19 | 1 |
下面两段代码中for循环分别执行了多少次?
1. unsigned short i,j for(i=0, j=2 i!=j i+=5, j+=7) {} 2. unsigned short i,j for(i=3,j=7i!=ji+=3,j+=7) {}
在头文件及上下文均正常的情况下,下面程序输出的是?
void swap(int &a, int &b) { int temp = a a = b b = temp cout<<a<<' '<<b<<' ' } int main() { int x=1 int y=2 swap(x, y) cout<<x<<' '<<y<<'\n' return 0 }
问题:在80X86架构下,输出什么值?
union Test { char a[4] short b } Test test test.a[0] = 256 test.a[1] = 255 test.a[2] = 254 test.a[3] = 253 printf("%d\n", test.b)问题:在80X86架构下,输出什么值?
以下程序的输出是什么?
class Base { public: Base(int j): i(j) {} virtual~Base() {} void func1() { i *= 10 func2() } int getValue() { return i } protected: virtual void func2() { i++ } protected: int i } class Child: public Base { public: Child(int j): Base(j) {} void func1() { i *= 100 func2() } protected: void func2() { i += 2 } } int main() { Base * pb = new Child(1) pb->func1() cout << pb->getValue() << endl delete pb }
写出一下程序的输出是什么?
int main(){ char num for(num = 1 num < 255 ) num += num printf("%d\n", num) return 0 }