Dina  Kim
Quiz por , criado more than 1 year ago

Quiz sobre CS_DATA_STRUCT, criado por Dina Kim em 26-03-2019.

120
4
0
Sem etiquetas
Dina  Kim
Criado por Dina Kim mais de 5 anos atrás
Fechar

CS_DATA_STRUCT

Questão 1 de 183

1

Inheritance is ...

Selecione uma das seguintes:

  • Powerful code reuse mechanism

  • providing access to data

  • ability of object of one class to act like it is object of another class

  • hiding an access to data

  • powerful technique to store all data together

Explicação

Questão 2 de 183

1

Qucksort is implemented recursively

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 3 de 183

1

Waiting line of people is similar to which data structure?

Selecione uma das seguintes:

  • Queue

  • LinkedList

  • Stack

  • Tree

  • Graph

Explicação

Questão 4 de 183

1

Which of the graph implementations is more simple?

Selecione uma das seguintes:

  • Matrix

  • map

  • set

  • list

Explicação

Questão 5 de 183

1

To use Binary Search items should be ...

Selecione uma das seguintes:

  • ordereed

  • matched

  • divorced

  • traversed

  • beaten

Explicação

Questão 6 de 183

1

Reference "rear" of CircularArray is usually indicates ...

Selecione uma das seguintes:

  • last added item

  • first added item

  • secondly added item

  • middle of array

  • top of a stack

Explicação

Questão 7 de 183

1

If there is no path path from vertex to any other vertex that graph is considered to be ?

Selecione uma das seguintes:

  • unconnected

  • undirected

  • DFS

  • BFS

  • weighted

Explicação

Questão 8 de 183

1

Can we implement the queue using LinkedList?

Selecione uma das seguintes:

  • yes

  • no

  • i don't know

  • maybe

  • i need to learn more about this

Explicação

Questão 9 de 183

1

What is not perfect in this code: ave = sum / count;

Selecione uma das seguintes:

  • division by zero may occur

  • multiplication by 10000000 is impossible in JAVA

  • ave should be written as average

  • semicolon needed after =

  • it is not java code

Explicação

Questão 10 de 183

1

Returns the reference to the element at position index

Selecione uma das seguintes:

  • get(index)

  • has(index)

  • goTo(index)

  • fly(index)

  • set(index)

Explicação

Questão 11 de 183

1

Indicate exponential time complexity in terms of big-O notation?

Selecione uma das seguintes:

  • O(2^n)

  • O(logn)

  • O(n^4)

  • O(nlogn)

  • O(n)

Explicação

Questão 12 de 183

1

Traversing graph visiting a start node first, then all nodes that are adjacent to it next.

Selecione uma das seguintes:

  • BFS

  • DFS

  • DIjkstra

  • matrix

  • preorder

Explicação

Questão 13 de 183

1

A ________ graph is one where [E] is much less than [V]^2.

Selecione uma das seguintes:

  • sprase

  • dense

  • path

  • hence

  • directed

Explicação

Questão 14 de 183

1

Which method returns an object at the top of a Stack in JAVA?

Selecione uma das seguintes:

  • peek()

  • front()

  • top()

  • pop()

  • poll()

Explicação

Questão 15 de 183

1

The ____________ algorithm finds minimum spanning tree for a graph.

Selecione uma das seguintes:

  • prim

  • DFS

  • matrix

  • Dijkstra

  • BFS

Explicação

Questão 16 de 183

1

traverese left subtree, Visit root node, traverse right subtree traversal is called?

Selecione uma das seguintes:

  • inorder

  • postorder

  • preorder

Explicação

Questão 17 de 183

1

Data structure based on BST where all items are sorted and unique is?

Selecione uma das seguintes:

  • treeSet

  • tree

  • treeMap

  • vector

  • graph

Explicação

Questão 18 de 183

1

Graph is considered to be ___________ if there is a path from each vertex to any other vertex.

Selecione uma das seguintes:

  • connected

  • weighted

  • directed

  • unweighted

  • unconnected

Explicação

Questão 19 de 183

1

What is the difference between ArrayList and Vector?

Selecione uma das seguintes:

  • Vector is synchronized where ArrayList is not

  • There is no difference

  • vector is resizable where ArrayList is not

  • vector is flexible where ArrayList is not

  • vector is scalable where ArrayList is not

Explicação

Questão 20 de 183

1

Visit root node, traverese left subtree, traverse right subtree traversal is called?

Selecione uma das seguintes:

  • preorder

  • inorder

  • postorder

Explicação

Questão 21 de 183

1

First in last out structure is ...

Selecione uma das seguintes:

  • stack

  • graph

  • queue

  • tree

Explicação

Questão 22 de 183

1

Which container is not appropriate to implement Stack in Java?

Selecione uma das seguintes:

  • graph

  • array

  • list

  • vector

Explicação

Questão 23 de 183

1

Average time complexity of Bubble sort is?

Selecione uma das seguintes:

  • O(n^2)

  • O(nlogn)

  • O(logn)

  • O(1)

  • O(n^3)

Explicação

Questão 24 de 183

1

Every class has __________ as a superclass.

Selecione uma das seguintes:

  • object

  • main

  • string

  • java

  • subject

Explicação

Questão 25 de 183

1

traverse left subtree, traverse right subtree, visit root node traversal is called ?

Selecione uma das seguintes:

  • postorder

  • preorder

  • inorder

Explicação

Questão 26 de 183

1

A ___________ tree is a binary tree used to store a code that facilitates file compression.

Selecione uma das seguintes:

  • Huffman

  • BFS

  • DFS

  • Dijkstra

  • heap

Explicação

Questão 27 de 183

1

Distance from the root to its deepest leaf is known as __________ of a tree?

Selecione uma das seguintes:

  • depth

  • height

  • path

  • subtree

  • root

Explicação

Questão 28 de 183

1

The node of a tree without children is called ... ?

Selecione uma das seguintes:

  • leaf

  • sibling

  • root

  • tree

  • subtree

Explicação

Questão 29 de 183

1

Which structure is better to use when printing many documents from multiple computers at one printer?

Selecione uma das seguintes:

  • queue

  • set

  • tree

  • stack

  • graph

Explicação

Questão 30 de 183

1

A collision occurs when ... ?

Selecione uma das seguintes:

  • two keys hash to the same table index.

  • i don't know what it is

  • impossible to answer

  • two keys are hashed to a very big table index and rehash needed

  • two values hash to the same table index

Explicação

Questão 31 de 183

1

A __________ graph is one in which [E] is close to but less than [V]^2.

Selecione uma das seguintes:

  • dense

  • sprase

  • directed

  • dark

  • hence

Explicação

Questão 32 de 183

1

Average time complexity of Merge sort is?

Selecione uma das seguintes:

  • O(nlogn)

  • O(n^2)

  • O(n^3)

  • O(n)

  • O(logn)

Explicação

Questão 33 de 183

1

The _________ is used to implement the special kind of a queue called priority queue.

Selecione uma das seguintes:

  • heap

  • BFS

  • DFS

  • BST

  • deap

Explicação

Questão 34 de 183

1

Average time complexity of Shell sort is?

Selecione uma das seguintes:

  • O(n^1.25)

  • O(1)

  • O(n)

  • O(logn)

  • O(n^2)

Explicação

Questão 35 de 183

1

If there is at least one abstract method in a class, that class is called ...

Selecione uma das seguintes:

  • abstract class

  • vanish class

  • tired class

  • recursive class

  • general class

Explicação

Questão 36 de 183

1

Finding the shortest path algorithm is called?

Selecione uma das seguintes:

  • Dijkstra

  • DFS

  • BFS

  • Binary Search

Explicação

Questão 37 de 183

1

Which part is accessible to user?

Selecione uma das seguintes:

  • public

  • private

  • protected

  • interacted

  • social

Explicação

Questão 38 de 183

1

Dijkstra's algorithm use ______ algorithm to traverse all nodes.

Selecione uma das seguintes:

  • BFS

  • DFS

  • matrix

  • tree

  • Prime's

Explicação

Questão 39 de 183

1

A list can _________ or _________ as elements added or removed.

Selecione uma das seguintes:

  • grow, shrink

  • increase, grow

  • fly, sit

  • decrease, think

  • flow, shrink

Explicação

Questão 40 de 183

1

What is the time complexity of recursive Binary Search algorithm?

Selecione uma das seguintes:

  • O(logn)

  • O(NxM)

  • O(nlogn)

  • O(n)

Explicação

Questão 41 de 183

1

Why do we need BFS and DFS algorithms?

Selecione uma das seguintes:

  • to traverse a graph

  • to measure graphh

  • to remove an item from graph

  • to find the way

  • to add new item in a graph

Explicação

Questão 42 de 183

1

Choosing pivot and place all items smaller than pivot to the left and bigger ones to the right, then repeat the same with two branches is similar to _____________ sort algorithm.

Selecione uma das seguintes:

  • quick

  • heap

  • merge

  • selection

  • bubble

Explicação

Questão 43 de 183

1

Show the method which exists in DoubleLinkedList and not exist in SingleLinkedList?

Selecione uma das seguintes:

  • previous()

  • next()

  • constructor

  • hasBefore()

  • hasNext()

Explicação

Questão 44 de 183

1

What determines whether you should use quadratic sort or a logarithmic sort algorithm?

Selecione uma das seguintes:

  • array size

  • array values

  • swapping conditions

  • array type

  • array index

Explicação

Questão 45 de 183

1

The Collection is a _________ of a List

Selecione uma das seguintes:

  • superinterface

  • node

  • interface

  • parent

  • father

Explicação

Questão 46 de 183

1

The _________ level of a node is a measure of its distance from the root.

Selecione uma das seguintes:

  • level

  • distance

  • parent

  • father

Explicação

Questão 47 de 183

1

A queue _________ in ___________ out data structure.

Selecione uma das seguintes:

  • first, first

  • set,get

  • last,last

  • first,last

  • last,first

Explicação

Questão 48 de 183

1

for(int i=0; i< size; i++){
if(theData[i]==entry){
return i;
}
return -1;
}
This method is similar to which method of ArrayList?

Selecione uma das seguintes:

  • indexOf(entry)

  • get(entry)

  • equals(entry)

  • set(entry)

Explicação

Questão 49 de 183

1

______________ exception is an error normally not due to programmer.

Selecione uma das seguintes:

  • checked

  • unchecked

  • cracked

  • hacked

Explicação

Questão 50 de 183

1

______________ exception is an error normally due to programmer.

Selecione uma das seguintes:

  • unchecked

  • checked

  • hacked

  • cracked

Explicação

Questão 51 de 183

1

Distance from the deepest leaf to the root of a tree is called?

Selecione uma das seguintes:

  • height

  • depth

  • leaf

  • tree

  • breadth

Explicação

Questão 52 de 183

1

ListIterator and Iterator is the same thing in JAVA.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 53 de 183

1

The function that calls itself is called ...

Selecione uma das seguintes:

  • recursive function

  • functional function

  • defensive function

  • impressive function

Explicação

Questão 54 de 183

1

If you want to call different constructor of current class you would use ...

Selecione uma das seguintes:

  • this()

  • this.

  • super.

  • super()

Explicação

Questão 55 de 183

1

Which method adds an item on the top of the Stack in JAVA?

Selecione uma das seguintes:

  • push()

  • peek()

  • top()

  • add()

Explicação

Questão 56 de 183

1

In open addressing you can not remove an item to be deleted, so what should you do instead?

Selecione uma das seguintes:

  • mark as deleted flag

  • go home and dance

  • delete and save in temporary list

  • change its place with another item

  • do nothing

Explicação

Questão 57 de 183

1

What is the best time complexity of recursively finding fibbonachi nuber?

Selecione uma das seguintes:

  • O(n)

  • H2O

  • O(n^2)

  • O(logn)

  • O(1)

Explicação

Questão 58 de 183

1

A __________ is a sequence of vertices in which each successive vertex is connected to its predecessor. (Graphs)

Selecione uma das seguintes:

  • path

  • graph

  • route

  • cycle

  • weight

Explicação

Questão 59 de 183

1

Searching a binary search tree costs?

Selecione uma das seguintes:

  • O(logn)

  • O(n)

  • O(1)

  • O(n^2)

Explicação

Questão 60 de 183

1

Average time complexity of Selection sort is?

Selecione uma das seguintes:

  • O(n^2)

  • O(nlogn)

  • O(logn)

  • O(n)

Explicação

Questão 61 de 183

1

Full name of this course is ?

Selecione uma das seguintes:

  • Algorithms and Data Structures

  • SDP4

  • Programming with Java

  • Basic circuit theory

  • Algoritmization and programming language

Explicação

Questão 62 de 183

1

In ___________ graph is {v, u} is edge then {u, v} is not necessary an edge.

Selecione uma das seguintes:

  • directed

  • undirected

  • weighted

  • connected

Explicação

Questão 63 de 183

1

Average time complexity of Quick sort is?

Selecione uma das seguintes:

  • O(nlogn)

  • O(logn)

  • O(n)

  • O(1)

Explicação

Questão 64 de 183

1

Ideal data structure for a contact list is ?

Selecione uma das seguintes:

  • map

  • vector

  • graph

  • tree

  • set

Explicação

Questão 65 de 183

1

Each recursive function has two cases ________ and _________.

Selecione uma das seguintes:

  • base, recursive

  • continued, stopped

  • looped, switched

  • lelik, bolik

  • base,defensive

Explicação

Questão 66 de 183

1

Array reallocation cost is ______?

Selecione uma das seguintes:

  • O(n)

  • O(1)

  • O(logn)

  • O(nlogn)

  • O(n^2)

Explicação

Questão 67 de 183

1

It is possible to implement all recursive algorithms without recursion

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 68 de 183

1

Set of connections between vertices of a graph is called?

Selecione uma das seguintes:

  • edge

  • vertex

  • roof

  • path

  • cycle path

Explicação

Questão 69 de 183

1

Hiding access to data members of a class is called ...

Selecione uma das seguintes:

  • Encapsulation

  • Overloading

  • Overriding

  • Inheritance

  • Polymorphism

Explicação

Questão 70 de 183

1

Using a hash table enables us to retrive an item in a __________ time.

Selecione uma das seguintes:

  • constant

  • linear

  • average

  • nlogn

  • logarithmic

Explicação

Questão 71 de 183

1

Is it possible to implement multiple interfaces?

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 72 de 183

1

Sets the element on position index to reference entry

Selecione uma das seguintes:

  • set(index, entry)

  • entry.set(index)

  • index.set(entry)

  • setTo(index, entry)

  • set.index(entry)

Explicação

Questão 73 de 183

1

Which of the graph implementation is more efficient in terms of memory usage?

Selecione uma das seguintes:

  • list

  • BFS

  • map

  • matrix

  • set

Explicação

Questão 74 de 183

1

In the queue implemented as a LinkedList, poll() function should ...

Selecione uma das seguintes:

  • remove first added item

  • remove last added item

  • play with items

  • remove middle item

  • add new item

Explicação

Questão 75 de 183

1

Which function is used to add new item in the queue?

Selecione uma das seguintes:

  • offer()

  • poll()

  • add()

  • suffer()

  • remove()

Explicação

Questão 76 de 183

1

Recursive solutions are more beautiful and easy to understand.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 77 de 183

1

Which structure is widely used to calculate the value of postfix expression?

Selecione uma das seguintes:

  • Stack

  • Array

  • Set

  • String

  • Queue

Explicação

Questão 78 de 183

1

This returns true if the collection contains obj.

Selecione uma das seguintes:

  • contains(obj)

  • goTO(obj)

  • indexF(obj)

  • find(obj)

  • indexOf(obj)

Explicação

Questão 79 de 183

1

Redefinition of the method of superclass in a subclass with the same name and number of parameters is...

Selecione uma das seguintes:

  • override

  • overload

  • overbeat

  • overhead

  • upperload

Explicação

Questão 80 de 183

1

If you want to call the constructor of superclass you would use ...

Selecione uma das seguintes:

  • super()

  • this()

  • this.

  • super.

  • constructor()

Explicação

Questão 81 de 183

1

Element insertion to a Binary Search tree costs?

Selecione uma das seguintes:

  • O(logn)

  • O(1)

  • O(n)

  • O(n^2)

  • O(f(n))

Explicação

Questão 82 de 183

1

Distance from the deepest leaf to the root of a tree is called?

Selecione uma das seguintes:

  • height

  • breadth

  • leaf

  • tree

  • depth

Explicação

Questão 83 de 183

1

What is the time complexity of adding an item in front of a LinkedList?

Selecione uma das seguintes:

  • O(1)

  • O(n)

  • O(n^2)

  • O(n^3)

  • O(nlogn)

Explicação

Questão 84 de 183

1

The collection of abstract methods is called?

Selecione uma das seguintes:

  • interface

  • function

  • abstract class

  • class

  • method

Explicação

Questão 85 de 183

1

This method returns a string that textually represents an object.

Selecione uma das seguintes:

  • toString()

  • toGo()

  • toText()

  • equals()

  • hashCode()

Explicação

Questão 86 de 183

1

Graph where each edge has a direction is called?

Selecione uma das seguintes:

  • directed

  • wayed

  • mapped

  • strong

  • stricted

Explicação

Questão 87 de 183

1

Which of the following is not example of visibility in JAVA.

Selecione uma das seguintes:

  • Eclipsed

  • Public

  • Private

  • Protected

  • Package

Explicação

Questão 88 de 183

1

A tree where left child is less and right child is more than its parent called?

Selecione uma das seguintes:

  • Binary Search Tree

  • Binary tree

  • Huffman tree

  • Breadth first search

  • DFS

Explicação

Questão 89 de 183

1

How to handle exceptions

Selecione uma das seguintes:

  • try{}catch(){}

  • try{}batch(){}

  • fly{}catch(){}

  • poimai{}menya{}esli{}smozhesh()

  • go{}home()

Explicação

Questão 90 de 183

1

Is it possible to inherit from multiple classes?

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 91 de 183

1

Vertex is ________ to another vertex if there is an edge connecting them.

Selecione uma das seguintes:

  • adjacent

  • brotherhood

  • sibling

  • BFS

  • DIJkstra

Explicação

Questão 92 de 183

1

If two or more keys will be encoded to the same index of a hashtable, it is called.

Selecione uma das seguintes:

  • collision

  • duplicate

  • decision

  • error

  • mistake

Explicação

Questão 93 de 183

1

Returns entry at the front of a Deque without removing it

Selecione uma das seguintes:

  • peekFirst()

  • pollFirst()

  • popFirst()

  • takeFirst()

  • get(index)

Explicação

Questão 94 de 183

1

Complete binary tree where all children must be bigger than parents is ?

Selecione uma das seguintes:

  • minheap

  • maxheap

  • fullheap

  • hiphop

  • treeheap

Explicação

Questão 95 de 183

1

Which function return first added item in the queue?

Selecione uma das seguintes:

  • element ()

  • giveMeFirst

  • goBack()

  • first()

  • front()

Explicação

Questão 96 de 183

1

Gets the size of the ArrayList

Selecione uma das seguintes:

  • size()

  • sizeOf()

  • length(list)

  • size(list)

  • length

Explicação

Questão 97 de 183

1

Traversing graph visiting a start node first, then choose one node that is adjacent to it next.

Selecione uma das seguintes:

  • DFS

  • BFS

  • matrix

  • tree

  • DIjkstra

Explicação

Questão 98 de 183

1

The relationship when one class is a subclass of another is called ...

Selecione uma das seguintes:

  • is-a

  • has-a

  • to-c

  • is-b

  • has-b

Explicação

Questão 99 de 183

1

Recursive nonlinear data structure that is used to represent data organized in a hirarchy?

Selecione uma das seguintes:

  • tree

  • vector

  • graph

  • arrayList

  • linkedList

Explicação

Questão 100 de 183

1

Which of them is not an example of Data Structure

Selecione uma das seguintes:

  • Breadth First Search

  • Graph

  • ArrayList

  • Set

  • Priority Queue

Explicação

Questão 101 de 183

1

Two JAVA API implementation of Set and Map are:

Selecione uma das seguintes:

  • tree and hash

  • graph and tree

  • list and hash

  • graph and vector

  • tree and list

Explicação

Questão 102 de 183

1

Which of them is not a feature of Collection Interface?

Selecione uma das seguintes:

  • graph

  • set

  • queue

  • vector

  • list

Explicação

Questão 103 de 183

1

Indicate two ways of graph implementations

Selecione uma das seguintes:

  • list and matrix

  • tree and hash

  • set and map

  • array and vector

  • queue and stack

Explicação

Questão 104 de 183

1

Indicate logarithmic time complexity in terms of big-O notation?

Selecione uma das seguintes:

  • O(logn)

  • O(1)

  • O(n)

  • O(2)

  • O(done)

Explicação

Questão 105 de 183

1

What are the two parts of ADT?

Selecione uma das seguintes:

  • Private and Public

  • ArrayList and Vector

  • Parent and Child

  • Int and Float

  • Queue and Stack

Explicação

Questão 106 de 183

1

public xxx(int index){
return theData[index];
}
this behaviour is similar to which method of ArrayList class?

Selecione uma das seguintes:

  • get

  • equals

  • set

  • size

  • goHome

Explicação

Questão 107 de 183

1

Indicate the relationship of HashtableOpen and Entry classes?

Selecione uma das seguintes:

  • has-a

  • is-a

  • is-b

  • static

  • public

Explicação

Questão 108 de 183

1

Which method removes an item on the top of a Stack in JAVA?

Selecione uma das seguintes:

  • pop()

  • peek()

  • hop()

  • drop()

  • remove()

Explicação

Questão 109 de 183

1

How to remove item from LinkedList?

Selecione uma das seguintes:

  • change link of prev item to next item of item to be removed

  • go home and cry

  • change link of next item to prev item of item to be removed

  • change link of removing item to prev

  • change link of remobingitem to next

Explicação

Questão 110 de 183

1

Find the slowest time

Selecione uma das seguintes:

  • O(n!)

  • O(n)

  • O(2^n)

  • O(100)

  • O(n^4)

Explicação

Questão 111 de 183

1

Node of a graph is called?

Selecione uma das seguintes:

  • vertex

  • edge

  • path

  • weight

  • dijkstra

Explicação

Questão 112 de 183

1

calculate the value of "4 7 * 20 -"

Selecione uma das seguintes:

  • 8

  • 136

  • 3

  • 144

  • 1

Explicação

Questão 113 de 183

1

Complete binary tree where all children must be smaller than parents is ?

Selecione uma das seguintes:

  • maxheap

  • minheap

  • fullheap

  • hiphop

  • treeheap

Explicação

Questão 114 de 183

1

The relationship when one class is defined inside the definition of another is called...

Selecione uma das seguintes:

  • has-a

  • is-a

  • is-b

  • has-b

  • to-c

Explicação

Questão 115 de 183

1

Prim's algorithm is used to calculate __________.

Selecione uma das seguintes:

  • the minimum spanning tree of a graph

  • BFS

  • DFS

  • cyclic path

  • direction path

Explicação

Questão 116 de 183

1

Which of them has more methods?

Selecione uma das seguintes:

  • subclass

  • superclass

Explicação

Questão 117 de 183

1

A ___________ of a node is a tree whose root is a child of that node.

Selecione uma das seguintes:

  • subtree

  • leaf

  • root

  • child

  • parent

Explicação

Questão 118 de 183

1

Structured set of data is called _______.

Selecione uma das seguintes:

  • data structure

  • set of data

  • algorithm

  • data pattern

  • design of data

Explicação

Questão 119 de 183

1

Circular Array is usually used to implement ...

Selecione uma das seguintes:

  • queue

  • tree

  • stack

  • graph

  • shreck

Explicação

Questão 120 de 183

1

int xxx(int x){
if(n==1) return 1;
return x*xxx(x-1);
}
this function calculates

Selecione uma das seguintes:

  • n!

  • fibbonachi

  • x^n

  • 2^n

  • x/n

Explicação

Questão 121 de 183

1

JAVA API uses ____________ to implement both Set and Map interfaces.

Selecione uma das seguintes:

  • hash table

  • vector

  • tree table

  • arraylist

  • graph

Explicação

Questão 122 de 183

1

Average time complexity of Insertion sort is?

Selecione uma das seguintes:

  • O(n^2)

  • O(2^n)

  • O(1)

  • O(logn)

  • O(nlogn)

Explicação

Questão 123 de 183

1

What is the time complexity of ArrayList remove(index) method?

Selecione uma das seguintes:

  • O(n)

  • O(n^3)

  • O(1)

  • O(nlogn)

  • O(nxn)

Explicação

Questão 124 de 183

1

Does binary search tree contain duplicates?

Selecione uma das seguintes:

  • no

  • yes

  • i have to go

  • i don't know

  • maybe

Explicação

Questão 125 de 183

1

for (i<n)
if (a[i] == item)
return i;
This algotithm is similar to ...

Selecione uma das seguintes:

  • linear search

  • deep sort

  • heap sort

  • binary search

  • merge sort

Explicação

Questão 126 de 183

1

Would an operating system use stack or queue to determine which print job should be handled next?

Selecione uma das seguintes:

  • queue

  • tree

  • stack

  • set

  • graph

Explicação

Questão 127 de 183

1

What is popularly used to traverse SingleLinkedList?

Selecione uma das seguintes:

  • iterator

  • loop and switch

  • interface

  • commutator

  • traversator

Explicação

Questão 128 de 183

1

Quadratic probing is usually used to ?

Selecione uma das seguintes:

  • reduce collisions

  • enlarge table size

  • reallocate array

  • for fun

  • calculate x^2

Explicação

Questão 129 de 183

1

To apply Dijkstra's algorithm graph should be.

Selecione uma das seguintes:

  • weighted

  • directed

  • isomorphic

  • undirected

  • cyclic

Explicação

Questão 130 de 183

1

Inventor of merge sort is ?

Selecione uma das seguintes:

  • John von Neumann

  • John Lennon

  • Van der Sar

  • Mr Merge

  • Professor Sortmerg

Explicação

Questão 131 de 183

1

instanceof used to test ...

Selecione uma das seguintes:

  • whether an object belongs to class or not

  • weather object has parent or nor

  • weather is is the biggest object

  • weather object is object or not

  • weather objectplays football or not

Explicação

Questão 132 de 183

1

Most sorting algorithm are divided into two basic groups.

Selecione uma das seguintes:

  • fast and slow

  • sort and search

  • best and worst

  • go and play

  • ordered and unordered

Explicação

Questão 133 de 183

1

Attempt to convert a string that is not numeric to a number faults ...

Selecione uma das seguintes:

  • NumberFormatException

  • ArithmeticException

  • DoNotSpeakException

  • SDP4IsNotSubjectException

  • BadProgrammerException

Explicação

Questão 134 de 183

1

Average time complexity of Heap sort is?

Selecione uma das seguintes:

  • O(nlogn)

  • O(n)

  • O(1)

  • H2O

  • O(n^2)

Explicação

Questão 135 de 183

1

A hash table uses hashing to transform an items key into a table index so that iterations, retrievals and deletions can be performed in expected ___________ time.

Selecione uma das seguintes:

  • O(1)

  • O(n)

  • O(n^2)

  • O(logn)

  • O(nlogn)

Explicação

Questão 136 de 183

1

Data structure similar to tree but it doesn't have limitation according to number of parents is?

Selecione uma das seguintes:

  • graph

  • tree

  • treeset

  • queue

  • dequeue

Explicação

Questão 137 de 183

1

Set of ordered pairs whose element are known as the key and value is ?

Selecione uma das seguintes:

  • map

  • set

  • graph

  • array

  • too easy for me

Explicação

Questão 138 de 183

1

Ability of object of one class to act like it is an object of another class is?

Selecione uma das seguintes:

  • Polymorphism

  • Encapsulation

  • Java code

  • Inheritance

  • SLOC(Source line of code)

Explicação

Questão 139 de 183

1

A ________ is a special cas of a graph. A ________ is a connected graph that contain no cycles.

Selecione uma das seguintes:

  • tree,tree

  • matrix,list

  • set,map

  • BFS,DFS

  • tree,hash

Explicação

Questão 140 de 183

1

What relationship class Node and LinkedList have?

Selecione uma das seguintes:

  • has-a

  • is-a

  • to-c

  • is-b

  • has-b

Explicação

Questão 141 de 183

1

Which of the following is recursive algorithm?

Selecione uma das seguintes:

  • quicksort

  • selectionsort

  • insertionsort

  • bubblesort

  • all of them are recursive

Explicação

Questão 142 de 183

1

Can we access the element of a set by index?

Selecione uma das seguintes:

  • no

  • yes

  • maybe

Explicação

Questão 143 de 183

1

List two ways of organizing hashtable.

Selecione uma das seguintes:

  • open addressing and chaining

  • breadth first search and depth first search

  • key and value

  • arraylist and vector

  • prime's and dijkstra

Explicação

Questão 144 de 183

1

This method of a binary tree class return true if tree is a leaf and false otherwise?

Selecione uma das seguintes:

  • isLeaf()

  • isEmpty()

  • noMore()

  • isLast()

  • goHome()

Explicação

Questão 145 de 183

1

ADT that enables a user to access information (data) corresponding to a specified key.

Selecione uma das seguintes:

  • map

  • led

  • set

  • queue

  • graph

Explicação

Questão 146 de 183

1

An ordered set of instructions is called.

Selecione uma das seguintes:

  • algorithm

  • hello world

  • pseudocode

  • data structure

  • array

Explicação

Questão 147 de 183

1

OOP stands for?

Selecione uma das seguintes:

  • Object oriented programming

  • Omar oriented programming

  • Object oriented playing

  • Obstacle oriented programming

  • OOP is the keyword of Java programming and stands for nothing

Explicação

Questão 148 de 183

1

Is it possible to traverse contaning of a list this way?
for( int nextInt : aList ){ ... }

Selecione uma das seguintes:

  • yes

  • no

  • maybe

  • i don't know

Explicação

Questão 149 de 183

1

Which structure is widely used in finding palindrome problem?

Selecione uma das seguintes:

  • stack

  • queue

  • graph

  • set

  • map

Explicação

Questão 150 de 183

1

Adding an item to the beginning of CircularArray costs?

Selecione uma das seguintes:

  • O(1)

  • O(logn)

  • O(n)

  • O(n^2)

  • 7 iterations

Explicação

Questão 151 de 183

1

What is the attribute of CircularList?

Selecione uma das seguintes:

  • Next of last item referencing to the first item

  • Next of best item referencing to the worst item

  • Next of first item referencing to the last item

  • I need to go home and prepare for this

  • Prev of last item referencing to last item

Explicação

Questão 152 de 183

1

Attempt to access array element using index less than 0 faults ...

Selecione uma das seguintes:

  • ArrayIndexOutOfBoundsException

  • InputMismatchException

  • ArithmeticException

  • MCDonerException

  • GoHomeException

Explicação

Questão 153 de 183

1

What does method empty return for empty stack?

Selecione uma das seguintes:

  • true

  • false

  • nothing

  • empty

  • hello

Explicação

Questão 154 de 183

1

Elements of a List are accessed by means of an __________

Selecione uma das seguintes:

  • index

  • position

  • loop

  • switch

  • book

Explicação

Questão 155 de 183

1

If we call remove() function for the queue, which item will be removed?

Selecione uma das seguintes:

  • first

  • second

  • middle

  • third

  • last

Explicação

Questão 156 de 183

1

This method associates specified value with the specified key in the map.

Selecione uma das seguintes:

  • put(key, value)

  • set(key, value)

  • get(key, value)

  • associate(key, value)

  • key.set(value)

Explicação

Questão 157 de 183

1

Indicate linear time complexity in terms of big-O notation?

Selecione uma das seguintes:

  • O(n)

  • O(loglogn)

  • O(logn)

  • O(n^2)

  • O(n^3)

Explicação

Questão 158 de 183

1

A tree where all nodes should have 2 children and leaves have no children is called?

Selecione uma das seguintes:

  • full binary tree

  • binary tree

  • unary tree

  • general tree

Explicação

Questão 159 de 183

1

Insert and remove items from a heap costs?

Selecione uma das seguintes:

  • O(logn)

  • O(nlogn)

  • O(n)

  • O(n^2)

  • O(1)

Explicação

Questão 160 de 183

1

What is the time complexity of adding element in the beginning of ArrayList?

Selecione uma das seguintes:

  • O(n)

  • O(nlogn)

  • O(logn)

  • O(n^2)

  • O(25)

Explicação

Questão 161 de 183

1

Adjacent matrix representing undirected graph should be?

Selecione uma das seguintes:

  • symmetric

  • triangular

  • linear

  • diagonal

  • orthognal

Explicação

Questão 162 de 183

1

Which of the following in java is very similar to "contract"?

Selecione uma das seguintes:

  • Interface implementation

  • Class overriding

  • Class inheritance

  • Dancing in a queue

  • Method overloading

Explicação

Questão 163 de 183

1

Where new item added in the queue?

Selecione uma das seguintes:

  • to the end

  • position chosen randomly

  • in the middle

  • in the beginning

  • it is impossible to add new item in the queue

Explicação

Questão 164 de 183

1

Which method searches for target and returns its position in LinkedList?

Selecione uma das seguintes:

  • indexOf(target)

  • get(target)

  • set(target)

  • go(target)

  • equal(target)

Explicação

Questão 165 de 183

1

A ___________ path is a simple path in which only the first and last items are the same.

Selecione uma das seguintes:

  • cycle

  • tour

  • mapped

  • trip

  • looped

Explicação

Questão 166 de 183

1

Graph where each edge has a direction is called?

Selecione uma das seguintes:

  • directed

  • sticked

  • strong

  • wayed

  • mapped

Explicação

Questão 167 de 183

1

Redefinition of method with the same name but different number of parameters is called...

Selecione uma das seguintes:

  • overload

  • override

  • inheritance

  • polymorphism

  • encapsulation

Explicação

Questão 168 de 183

1

Recursive implementation works faster than lopped one.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 169 de 183

1

If there are no abstract methods in the class we call that class ...

Selecione uma das seguintes:

  • Actual Class

  • Abstract Class

  • Non abstract Class

  • Super Class

  • Funny Class

Explicação

Questão 170 de 183

1

Which part is not accessible to user?

Selecione uma das seguintes:

  • Private

  • Based

  • Controlled

  • Shifted

  • Public

Explicação

Questão 171 de 183

1

What is the time complexity of insert(index) method in ArrayList

Selecione uma das seguintes:

  • O(n)

  • O(logn)

  • O(1)

  • O(n^2)

  • O(100)

Explicação

Questão 172 de 183

1

What is the feature of Deque?

Selecione uma das seguintes:

  • cheap element addition and removal from the beginning

  • cheap element addition and removal from the end

  • cheap element addition and removal from the middle

  • removal

  • addition

Explicação

Questão 173 de 183

1

The function that calls itself is called ...

Selecione uma das seguintes:

  • recursive function

  • functional function

  • defensive function

  • overloaded function

  • impressive function

Explicação

Questão 174 de 183

1

int xxx(int x, int y, int z){
if(z==1){return 1;}
return xxx(x+y, x, z-1);
}
this function is

Selecione uma das seguintes:

  • Fibbonachi

  • it is trash function

  • x^n

  • n!

  • 2^n

Explicação

Questão 175 de 183

1

What is the time complexity of Linear Search algorithm?

Selecione uma das seguintes:

  • O(n)

  • O(nlogn)

  • O(1)

  • O(n^2)

  • O(logn)

Explicação

Questão 176 de 183

1

The node of a tree without children is called ... ?

Selecione uma das seguintes:

  • leaf

  • tree

  • siblin

  • root

  • subtree

Explicação

Questão 177 de 183

1

Tree where every item must have at most 2 children is called?

Selecione uma das seguintes:

  • Binary Tree

  • General Tree

  • Huffman Tree

  • Generic Tree

  • Unary Tree

Explicação

Questão 178 de 183

1

What is the benefit of encoding letters trough Huffman tree.

Selecione uma das seguintes:

  • earning space

  • more beautiful

  • just for fun

  • it is simple

  • it is smart

Explicação

Questão 179 de 183

1

A set view of a map can be obtained through method_______?

Selecione uma das seguintes:

  • entrySet

  • emptySet

  • setView

  • viewAsSet

  • goAhead

Explicação

Questão 180 de 183

1

You apply method ____________ to set view to get an object that facilitates sequential access to the Map elements.

Selecione uma das seguintes:

  • iterator

  • preorder

  • accessor

  • traversal

  • posorder

Explicação

Questão 181 de 183

1

If you want to call data member of superclass you would use ...

Selecione uma das seguintes:

  • super.

  • this.

  • this()

  • super()

  • method

Explicação

Questão 182 de 183

1

In a Huffman tree, the item with the lowest frequency of occurrence will have the ___________ code.

Selecione uma das seguintes:

  • shortest

  • deepest

  • longest

  • easiest

  • binary

Explicação

Questão 183 de 183

1

A Stack is __________ in _________ out data structure.

Selecione uma das seguintes:

  • last,first

  • first,first

  • back, top

  • end,end

  • front,front

Explicação