思科2019校园招聘笔试(软件类)
时长:120分钟 总分:100分
148浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 简答题 |
---|---|---|---|
数量 | 3 | 67 | 1 |
Which languages below are natively su...
Which algorithms below belong to supe...
Which ones below are essentially cons...
(Pseudo code is acceptable) Please pr...

Which one below is not the pipeline c...
Which one below is not a project of H...
Which one is not the challenge of dis...
Which case below is not typical Hadoo...
Which one is not the step of big data...
Which components below Spark framewor...
Which one below is side-effort functi...
There is a none-empty&...
Which data structure m...
Given a bucket which&n...
What is the time ...
x = 2
while (x < n / 2) x = 2 * x
Assume hash table leng...
Which of the following...
The X, Y and Z&nb...
Given 9 tasks T1, ...

Given below statements: 1.F...
1.First-in-first out types of computations are efficiently supported by STACKS.
2.Implementing LISTS on linked lists is more efficient than implementing LISTS on an array for almost all the basic LIST operations.
3.Implementing QUEUES on a circular array is more efficient than implementing QUEUES on a linear array with two indices.
4.Last-in-first-out type of computations are efficiently supported by QUEUES.
Which of the following is correct?(单选)
The following three ar...
1.MBCAFHPYK
2.KAMCBYPFH
3.MABCKYFPH
Pick the true statement from the following:(单选)
About the Filter and&n...
What’s the output of&n...
class MyCode {
public static void main (String[] args) {
System.out.println(calc(30) % 3)
}
private static ArrayList<Long> arr = new ArrayList<Long>()
static {
arr.add(1L)
arr.add(1L)
}
private static Long calc(int x) {
if (arr.size() > x) {
return arr.get(x)
}
Long result = calc(x - 1) + calc(x - 2)
arr.add(result)
return result
}
}
What’s the output of&n...
class A {
public void one() { System.out.println("one") }
private void two() { System.out.println("two") }
static void three() { System.out.println("three") }
protected void four() { System.out.println("four") }
public void test() {
this.one()
this.two()
this.three()
this.four()
}
}
class B extends A {
public void one() { System.out.println("Bone") }
private void two() { System.out.println("Btwo") }
static void three() { System.out.println("Bthree") }
protected void four() { System.out.println("Bfour") }
}
public class Test {
public static void main (String[] args) {
B b = new B()
b.test()
b.three()
}
}
Given the following co...
public class Test {
public static void main(String[] args) {
double i1 = 1024D * 1024 * 1024 * 1024
double i2 = 1024L * 1024 * 1024 * 1024
double i3 = (long) 1024 * 1024 * 1024 * 1024
double i4 = (double) 1024 * 1024 * 1024 * 1024
double i5 = 1024 * 1024 * 1024 * 1024
System.out.println(i1)
System.out.println(i2)
System.out.println(i3)
System.out.println(i4)
System.out.println(i5)
}
}
What will be the ...
public class Test {
public static void swapStrings(String x, String y) {
String temp = x
x = y
y = temp
}
public static void main(String[] args) {
String a = "1"
String b = "2"
swapStrings(a, b)
System.out.println("a=" + a + " ,b=" + b)
}
}
Following code will re...
class A {
int b = 1
public static void main(String[] args) {
System.out.println("b is " + b)
}
}
Following code will re...
public class Test {
public static void main(String[] args) {
System.out.println(getResult())
}
public static int getResult() {
try {
try {
throw new RuntimeException("exception")
} catch (RuntimeException re) {
}
return 1
} catch (Exception e) {
return 2
} finally {
return 3
}
}
}
TCP uses a retransmiss...
What field(s) are chan...
Which of the following...
Which of the following...
Which of the following...
Which description correctly...
What field(s) are chan...
What is the purpose&nb...
What are the differenc...
What are the differenc...
Which of the following...
Which system call retu...
To let a client h...
A process is waked&nbs...
Calculate number of ti...
#include <stdio.h>
#include <sys/types.h>
int main()
{
fork()
fork()
fork()
printf("hello\n")
return 0
}
Table A has 10,000 Records and Table ...
Table A have columns (userID , email)...
What’s correct description for Primar...
What is wrong description for Delete ...
There is one table MeetingAttendeeID ...

Someone said there is one bug in this...
If a call stack i...
What’s the runtime beh...
int *p = (int *)malloc(sizeof(int))
p = NULL
free(p)
What’s the output of&n...
void print_array(int arr[]) { int n = sizeof(arr) / sizeof(arr[0]) for (int i = 0 i < n i++) printf("%d ", arr[i]) } int main() { int arr[] = {1, 2, 3, 4, 5} print_array(arr) return 0 }
What will be the ...
#include<iostream.h> typedef void(*FunPtr)(int) int sum(int = 10, int = 20) void output(int) int main(){ FunPtr ptr = output (*ptr)(30) return 0 } int sum(int x, int y){ return(x + y % 20) } void output(int x){ cout<< sum(x) << endl }
How many times will&nb...
unsigned char limit = 150 for (unsigned char i = 0 i < 2 * limit ++i) { //in loop do something }
Review the following c...
char *str1 = "hello" short * p1 int p2[2] (1)sizeof(str1) = ___ (2)sizeof(p1) = ___ (3)sizeof(p2) = ___
What’s the output of&n...
#include "stdio.h" class A { public: A() { printf("1") } A(A &a) { printf("2") } A &operator=(const A &a) { printf("3") return *this } } int main() { A a A b = a }
What’s the output of&n...
#include <iostream> using namespace std struct data { int type struct { unsigned int a:1 unsigned int b:1 unsigned int c:4 unsigned int d:4 unsigned int e:4 unsigned int f:4 unsigned int g:4 unsigned int h:8 unsigned int i:8 } flags struct { unsigned int a:1 unsigned int b:1 } flagsEx } int main() { data temp int a = sizeof(data) int b = sizeof(temp) data *pTemp = new data() int c = sizeof(pTemp) delete pTemp pTemp = NULL cout << a << ", " << b << ", " << c << endl return 0 }