self evaluation test

21
Evaluation Test 2016 Winter Prepared by: Berk Soysal

Upload: berk-soysal

Post on 14-Apr-2017

1.499 views

Category:

Software


1 download

TRANSCRIPT

Self Evaluation Test

2016 Winter

Prepared by: Berk Soysal

Multiple Choice Questions

(b)

(d)

Multiple Choice Questions

(b)

(d)

Multiple Choice Questions

(c)

(a)

Multiple Choice Questions

(c)

(a)

(c)

Multiple Choice Questions

(c)

(a)

Multiple Choice Questions

(c)

(a)

12

169

1 15

13

Q2

Q2

Q3

static void mirrorTree(node root){

if(root == null) return;

node left = root.getLeft();node right = root.getRight();node.setLeft(right);node.setRight(left);mirrorTree(right);mirrorTree(left);}

Q3

Q4

Q4

Q5

Q5

4 1 2

555 100 999

list1

list2

Q5

4 1 2Node p

Node q = p.next

list2555 100 999

list1.insertAfter(1, list2);

otherFirst otherLast

p.next = otherFirst;otherFirst.previous = p;otherLast.next = q;q.previous = otherLast;

CONGRATS!YOU HAVE COMPLETED THE TUTORIALS

Provided by http://Soysal.tk