微软2014校招研发工程师笔试卷B
时长:120分钟 总分:100分
238浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 |
---|---|---|
数量 | 13 | 12 |
In C++, which of the following keyword(s) can be used on both a variable and a function?
根据下面给的表和 SQL 语句,问执行 SQL 语句更新多少条数据?
update Books set NumberOfCopies = NumberOfCopies + 1 where AuthorID in select AuthorID from Books group by AuthorID having sum(NumberOfCopies) <= 8
表中数据:
BookID Tittle Category NumberOfCopies AuthorID
1 SQL Server 2008 MS 3 1
2 SharePoint 2007 MS 2 2
3 SharePoint 2010 MS 4 2
5 DB2 IBM 10 3
7 SQL Server 2012 MS 6 1
Suppose that a Selection Sort of 80 items has completed 32 iterations of the main loop. How many items are now guaranteed to be in their final spot (never to be moved again)?
What is the result of binary number 01011001 after multiplying by 0111001 and adding 1101110?
Given that the 180-degree rotated image of a 5-digit number is another 5-digit number and the difference between the numbers is 78633, what is the original 5-digit number?
Assume both x and y are integers, which one of the followings returns the minimum of the two integers?
假设在上下文和头文件正常的情况以下,下面程序的结果是什么()
char* f(char *str, char ch) { char *it1 = str char *it2 = str while (*it2 != '\0') { while (*it2 == ch) { it2++ } *it1++ = *it2++ } return str } void main(int argc, char *argv[]) { char *a = new char[10] strcpy(a, "abcdcccd") cout << f(a, 'c') }
Consider the following definition of a recursive function, power, that will perform exponentiation.Asymptotically (渐进地) in terms of the exponent e, the number of calls to power that occur as a result of the call power(b, e) is?
int power(int b, int e) { if (e == 0) return 1 if (e %2 == 0) return power (b * b, e / 2) return b * power(b * b, e / 2) }Asymptotically (渐进地) in terms of the exponent e, the number of calls to power that occur as a result of the call power(b, e) is
What is the output of the following piece of C++ code?
using namespace std struct Item { char c Item *next } Item *Routine1(Item *x) { Item *prev = NULL, *curr = x while (curr) { Item *next = curr->next curr->next = prev prev = curr curr = next } return prev } void Routine2(Item *x) { Item *curr = x while (curr) { cout << curr->c << ” “ curr = curr->next } } int main(void) { Item *x, d = {‘d’, NULL}, c = {‘c’, &d}, b = {‘b’, &c}, a = {‘a’, &b} x = Routine1(&a) Routine2(x) return 0 }
Longest Increasing Subsequence (LIS) means a sequence containing some elements in another sequence by the same order, and the values of elements keeps increasing.Considering an array with N elements, what is the lowest time and space complexity to get the
Fill the blanks inside class definition.
class Test { public: ____ int a ____ int b public: Test::Test(int _a, int _b) : a(_a) { b = _b } } int Test::b int _tmain(int argc, __TCHAR *argv[]) { Test t1(0, 0), t2(1, 1) t1.b = 10 t2.b = 20 printf(“%u %u %u %u”, t1.a, t1.b, t2.a, t2.b) }Running result: 0 20 1 20