微软2014校招研发工程师笔试卷B

时长:120分钟 总分:100分

238浏览 0人已完成答题

题型介绍
题型 单选题 多选题
数量 13 12
1.
In C++, which of the following keyword(s) can be used on both a variable and a function?
问题详情

In C++, which of the following keyword(s) can be used on both a variable and a function?





2.
在 C 语言中下面那个语句的结果是 1 ?
问题详情




3.
F、G、X 都是32位有符号整数,F=X/2,G=X>>1,如果 F != G,那么?
问题详情

F、G、X 都是32位有符号整数,F=X/2,G=X>>1,如果 F != G,那么:





4.
3*4 的方格,有多少个长方形?
问题详情





5.
一个直线将一个平面分成 2 部分,两条直线分成 4 部分,如果直线不平行,多条直线不共一点,问 100 条直线将平面分成几部分?
问题详情




6.
n 个字符构成的字符串,假设每个字符都不一样,问有多少个子串?
问题详情




7.
根据下面给的表和 SQL 语句,问执行 SQL 语句更新多少条数据?
问题详情

根据下面给的表和 SQL 语句,问执行 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





8.
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)?
问题详情





9.
What is the result of binary number 01011001 after multiplying by 0111001 and adding 1101110?
问题详情

What is the result of binary number 01011001 after multiplying by 0111001 and adding 1101110?



10.
Which of following C++ code is correct?
问题详情




11.
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?
问题详情





12.
Assume both x and y are integers, which one of the followings returns the minimum of the two integers?
问题详情

Assume both x and y are integers, which one of the followings returns the minimum of the two integers?





13.
假设在上下文和头文件正常的情况以下,下面程序的结果是什么()
问题详情

假设在上下文和头文件正常的情况以下,下面程序的结果是什么()
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') 
}





14.
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?
问题详情

Consider the following definition of a recursive function, power, that will perform exponentiation.
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




15.
What is the output of the following piece of C++ code?
问题详情

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
}






16.
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
问题详情

Longest Increasing Subsequence (LIS) means a sequence containing some elements in another sequence by the same order, and the values of elements keeps increasing.For example, LIS of {2, 1, 4, 2, 3, 7, 4, 6} is {1, 2, 3, 4, 6}, and its LIS length is 5. Considering an array with N elements, what is the average time and space complexity to get the length of LIS?





17.
Fill the blanks inside class definition.
问题详情

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




18.
Which of the following statements are true?
问题详情





19.
Which of the following statements are true?
问题详情





20.
下面哪些是稳定排序?
问题详情

下面哪些是稳定排序





21.
Web应用程序中常使用 MVC 模式,关于说法下面哪些是对的?
问题详情

Web 应用程序中常使用 MVC 模式,关于说法下面哪些是对的





22.
根据下面哪些可以确定一棵二叉树?
问题详情




23.
N个球中有一个假冒伪劣(重量不足),如果给你一个天平允许你测 3 次找出那个假冒伪劣,问 N 可能的值是?
问题详情

N个球中有一个假冒伪劣(重量不足),如果给你一个天平允许你测3次找出那个假冒伪劣,问N可能的值?





24.
Which Synchronization mechanism(s) is/are used to avoid race conditions among processes/threads in operating systems?
问题详情

Which Synchronization mechanism(s) is/are used to avoid race conditions among processes/threads in operating systems?




25.
There is a sequence of n numbers 1, 2, 3,.., n and a stack which can keep m numbers at most. Push the n numbers into the stack following the sequence and pop out randomly.uppose n is 7 and m is 5, please choose the output sequences of the stack.
问题详情

There is a sequence of n numbers 1, 2, 3,.., n and a stack which can keep m numbers at most. Push the n numbers into the stack following the sequence and pop out randomly. Suppose n is 2 and m is 3, the output sequence may be 1, 2 or 2, 1, so we get 2 different sequences. Suppose n is 7 and m is 5, please choose the output sequences of the stack: