思科2020校园招聘笔试(软件类)

时长:120分钟 总分:100分

155浏览 0人已完成答题

题型介绍
题型 单选题 多选题 填空题
数量 4 28 1
1.
Choose the correct output of followin...
问题详情

Choose the correct output of following code:
#include <iostream>
using namespace std

class Object{
    void* data
    const int size
    const char id
public:
    Object(int sz, char c) : size(sz), id(c){
         data = new char[size]
         cout << "Constructor called for object " << id << ", size = " << size << endl
    }
    ~Object(){
        cout << "Destructor called for object " << id << endl
        delete []data
    }
}

int main() {
    Object* a = new Object(20, 'a')
    delete a
    void* b = new Object(20, 'b')
    delete b
}




2.
Which code is correct for static data...
问题详情

Which code is correct for static data member initialize:




3.
Choose the correct statement of stati...
问题详情

Choose the correct statement of static member function:



4.
Which is the correct&nbspoutput of t...
问题详情

Which is the correct output of the following program.
#include <iostream>
#include <string>
using namespace std

class ObjectCount{
private:
    static int objCount
public:
    ObjectCount() { objCount++ }
    static void print(const string& msg = "") {
        if(msg.size() != 0) cout << msg << ": "
        cout << "objCount = " << objCount << endl
    }    
    ~ObjectCount() { objCount-- }
}

int ObjectCount::objCount = 0

ObjectCount f(ObjectCount oc) {
    return oc
}

int main(){
    ObjectCount o1
    ObjectCount::print("after construction of o1")
    ObjectCount o2 = f(o1)
    ObjectCount::print("after call f()")
}





5.
Which fields can be matched to mark p...
问题详情

Which fields can be matched to mark priority by QoS?





6.
Choose the correct options below abou...
问题详情

Choose the correct options below about Python Pep8.




7.
What is expected output for the follo...
问题详情

What is expected output for the following Python code?
   a = '1232....flow_cts_source_group_tag'

   b = a.replace('..', '.').replace('..', '.').replace('.', '\': \'')
   c = b.split('\n')
   for line in c:
       line = '\''+line +'\','
       print(line)





8.
How to get the list c as below in Pyt...
问题详情

How to get the list c as below in Python code?
a = [1,2]
b = [3,4]

c = [[1,2], [3,4]]





9.
Table A has 10 records and Table B ha...
问题详情

Table A has 10 records and Table B has 100 records, what’s the possible query result for the below SQL?
SELECT * from A left join B on A.col_1 = B.col_1





10.
Choose the right descriptions on some...
问题详情

Choose the right descriptions on some SQL keywords:




11.
Choose the right descriptions on Tran...
问题详情

Choose the right descriptions on Transaction Isolation Levels:




12.
Choose the right descriptions on data...
问题详情

Choose the right descriptions on database Index:




13.
Which of the following statement(s) i...
问题详情

Which of the following statement(s) is(are) true?




14.
There're 5 elements a,b,c,d,e to be p...
问题详情

There're 5 elements a,b,c,d,e to be pushed into a Stack in the alphabetical order, which one(s) below is(are) the possible pop up sequence?




15.
There is a none-empty binary tree, it...
问题详情

There is a none-empty binary tree, its mid-order traversal is the reverse order of its post-order traversal, this tree can be: 






16.
Which can be the height for a binary ...
问题详情

Which can be the height for a binary tree with 17 leaves?




17.
Which of the following are keywords i...
问题详情

Which of the following are keywords in JDK8




18.
Given the following code, which of th...
问题详情

Given the following code, which of the statement(s) is(are) true?

import java.util.HashMap
import java.util.Map

public class Foo {  public static void main(String[] args) {  Map<String, Integer> map = new HashMap<String, Integer>() // 1  map.put("a", 127) // 2  map.put("b", new Integer(127)) // 3  map.put(null, null) // 4  System.out.println(map.get("a") == (map.get("b"))) // 5  }
}








19.
What is the output of the last "t()" ...
问题详情

What is the output of the last "t()" in Python code?
    def t(a = []):
        a.append(1)
        print(a)

    t()
    t()
    t()
    t()





20.
Which statements are typical characte...
问题详情

Which statements are typical characteristics of VLAN arrangements? (Choose three)





21.
Which statements are true about RTP a...
问题详情

Which statements are true about RTP and RTCP? (Choose two)





22.
For network 192.0.254.0/23, which opt...
问题详情

For network 192.0.254.0/23, which options are valid IPs address that can be assigned to a host? (Choose 2)





23.
Which of the below is valid way to in...
问题详情

Which of the below is valid way to instantiate an array in java?





24.
Which of the following statement(s) a...
问题详情

Which of the following statement(s) are true for java?




25.
What are the different types of CPU r...
问题详情

What are the different types of CPU registers in a typical operating system design?




26.
Which statements are right for COW, c...
问题详情

Which statements are right for COW, copy-on-right?




27.
What is the swap space in the disk us...
问题详情

What is the swap space in the disk used for?




28.
What complex datatypes are available ...
问题详情

What complex datatypes are available in Hive?




29.
Per-column level&nbsplossless compre...
问题详情

Per-column level lossless compression codecs for Parquet format?




30.
Which following statements about Apac...
问题详情

Which following statements about Apache Spark RDD, are right?




31.
Types of the NoSQL systems?
问题详情




32.
Which descriptions about microkernel-...
问题详情

Which descriptions about microkernel-based OS is/are NOT TURE?




33.
protocal data parse
问题详情

SIP is an important protcoal of IP Phone, it could be configed with some special information to display. huntPilot URI is one kind of, and  IP phone will catch and display alert name for third party calling if there is huntPilotName configed in  huntPilot URI.

HuntPilot URI Samples:
huntpiloturi = "<sip:10000@172.16.130.42>"                                                 alertName=
huntpiloturi = " "<sip:10000@172.16.130.42>                                                alertName=
huntpiloturi = "huntpilotname<sip:10000@172.16.130.42>"                           alertName=huntpilotname
huntpiloturi = "huntpilotname”<sip:10000@172.16.130.42>                           alertName=huntpilotname
huntpiloturi = "%22huntpilotname%22<sip:10000@172.16.130.42>"            alertName=huntpilotname
huntpiloturi = "%22huntpilot%22name%22"<sip:10000@172.16.130.42>     alertName=huntpilot%22name
输入描述: String with URI information输入样例: "Cisco" 输出描述: String输出样例 Cisco