【简答题】红色代码是( ) A)只是蠕虫 B)蠕虫病毒 C)普通病毒 D) 木马
【简答题】阅读下面程序 public class ConcatTest{ P ublic static void main(String[] args){ S tring str1 = ' abc ' S tring str2 = ' ABC ' S tring str3 = str1.concat(str2) S ystem.out.println(str3) } } 程序的运行结果是 A)abc B)A...
【单选题】有如下程序: #include(iostream) using namespace std; class TestClass{ protected: TestClass(){couti(cout<<‘x’} TestClass(char c){cout<<c;}} class TestClassl:publicTestClass{ public: TestClassl(char c){cout<<...