+ All Categories
Home > Software > Self Evaluation Test

Self Evaluation Test

Date post: 14-Apr-2017
Category:
Upload: berk-soysal
View: 1,499 times
Download: 1 times
Share this document with a friend
21
Evaluation Test 2016 Winter Prepared by: Berk Soysal
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


Recommended