中軟集團筆試題目
中國軟件是原國家計委批準的三大軟件基地中的北方軟件基地,以下是CN人才網(wǎng)小編整理的中軟集團筆試題目,歡迎閱讀!
中軟集團筆試題目一
問題:
Write a function to get the second maximum number in an integer array.(請寫程序返回一個數(shù)組中第2大的數(shù))
int getsecond(int a [])
答案:
int getsecond(int a[],int nLength)
{
int nMax = -1000, nSec = 0;
for(int i = 0 ; i < nLength ; i ++ )
{
if(nMax < a[i])
{
nSec = nMax;
nMax = a[i];
}
else
{
if(a[i] > nSec)
nSec = a[i];
}
}
return nSec;
}
中軟集團筆試題目二
一.簡答題.
1.避免死鎖的方法有哪些?
2.在Sybase數(shù)據(jù)庫中注冊用戶與數(shù)據(jù)庫用戶有什么區(qū)別?
3.在MS SQL_Server 數(shù)據(jù)庫中通過什么約束保證數(shù)據(jù)庫的實體完整性
4.內(nèi)存有哪幾種存儲組織結構.請分別加以說明
5.JAVA中的Wait() 和notify()方法使用時應注意些什么?
6.用戶輸入一個整數(shù).系統(tǒng)判斷,并輸出是負數(shù)還是非負數(shù),請設計測試用例.
7.操作系統(tǒng)中的同步和互訴解決了什么問題
8.UNIX 中init
二.編寫類String 的.構造函數(shù),析構函數(shù)和賦值函數(shù)
已知類String 的原型為
class string
{
public:
string(const char *str=null);//普通構造函數(shù)
string(const string &other);//拷貝構造函數(shù)
---string(void);
string &operate=(const string &other);//賦值函數(shù)
private:
char * m-data;//用于保存字符串
};
請編寫string 的上述4個函數(shù)
三.有關內(nèi)存的思考題
1.void getmemory(char *p)
{ p=(char*)mallol(100);
}
void test(void)
{
char * str =null;
getmemory(str);
strcpy(str,”hello,world”);
printf(str);
}
請問運行Test函數(shù)會有什么樣的結果
2.char*getmemory(void)
{ char p[]=”hello world”;
return p;
}
void test(void)
{
char *str=null;
str=Getmemory();
printf(str);
}
請問運行Test 函數(shù)會有什么樣的結果.
【中軟集團筆試題目】相關文章:
軟測筆試題目02-21
山東出版集團筆試/面試參考題目08-01
2017中行筆試題目02-15
美的集團筆試經(jīng)驗01-28
軟通科技筆試試題08-13
出納筆試題目10-11
招聘筆試題目02-09
PS筆試題目01-19
幼師筆試題目08-06