What kind of linked list is best to answer questions like โWhat is the item at position n?โ
Anonymous Quiz
28%
Singly linked list
22%
Doubly linked list
9%
Circular linked list
40%
Array implementation of linked list
Which one of the following options is the correct output for the given code of JavaScript?
Anonymous Quiz
50%
2
10%
3
4%
0
35%
Error
Which concept allows you to reuse the written code in C++?
Anonymous Quiz
61%
Inheritance
24%
Polymorphism
7%
Abstraction
9%
Encapsulation
Linked lists are not suitable for the implementation of ___________
Anonymous Quiz
17%
Insertion sort
21%
Radix sort
34%
Polynomial manipulation
28%
Binary search
Top 9 Http Methods-
GET ๐ง - Retrieve data from a resource.
HEAD ๐ง - Retrieve the headers of a resource.
POST ๐ฎ - Submit data to a resource.
PUT ๐ฅ - Update an existing resource or create a new resource.
DELETE ๐๏ธ - Remove a resource.
CONNECT ๐ - Establish a network connection for a resource.
OPTIONS โ๏ธ - Describe communication options for the target resource.
TRACE ๐ต๏ธโโ๏ธ - Retrieve a diagnostic trace of the request.
PATCH ๐ฉน - Apply a partial update to a resource.
GET ๐ง - Retrieve data from a resource.
HEAD ๐ง - Retrieve the headers of a resource.
POST ๐ฎ - Submit data to a resource.
PUT ๐ฅ - Update an existing resource or create a new resource.
DELETE ๐๏ธ - Remove a resource.
CONNECT ๐ - Establish a network connection for a resource.
OPTIONS โ๏ธ - Describe communication options for the target resource.
TRACE ๐ต๏ธโโ๏ธ - Retrieve a diagnostic trace of the request.
PATCH ๐ฉน - Apply a partial update to a resource.
Which one of the following options is the correct output for the given code of JavaScript?
Anonymous Quiz
3%
7
80%
11
11%
3
7%
9
Which of the following is the advantage of BigDecimal over double?
Anonymous Quiz
11%
Syntax
44%
Memory usage
21%
Garbage creation
24%
Precision
In C, if we pass an array as an argument to a function, what actually get passed?
Anonymous Quiz
19%
Address of the last element of array
52%
Base address of the array
21%
Value of elements in array
8%
First element of the array
What will be the output of the following C++ code snippet?
Anonymous Quiz
9%
10.0 5
57%
10 2.5
25%
10.0 5.0
8%
5.0 2.5