
Round 2-3rd Year
Quiz by Boomesh
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Which layer does the data link layer take packets from and encapsulate them into frames for transmission?
What kind of transmission medium is most appropriate to carry data in a computer network that is exposed to electrical interferences?
The network that provides high-speed connectivity or transmission speed is
Which of these is a top-down parser?
In the case of a bottom-up evaluation of a definition that is syntax-directed, the inherited attributes can:
The total number of tokens that are present in the following statement in C is: printf(“i=%d, &i=%x”, i&i);
Which data structure in a compiler is used for managing information about variables and their attributes?
Which one of the following can be considered as the class of computer threats?
It can be a software program or a hardware device that filters all data packets coming through the internet, a network, etc. it is known as the_______:
Which of the following factor of the network gets hugely impacted when the number of users exceeds the network's limit?
Which consistency model guarantees that any read operation on a data item will return the most recently written value?
What is the purpose of the "Two-Phase Commit" protocol in distributed databases?
.What is the primary goal of a distributed hash table (DHT) in distributed systems?
In IoT, what does the term "edge computing" refer to?
Which wireless communication protocol is commonly used for low-power, short-range communication in IoT devices?
public class Test {
public static void main(String[] args) {
int[] arr = {1, 2, 3, 4, 5};
int sum = 0;
for (int i = 0; i < arr.length; i++) {
sum += arr[i];
if (i % 2 == 0) {
continue; }
sum += arr[i] * 2; }
System.out.println(sum); }
}
public class Test {
public static void main(String[] args) {
String str1 = "Java";
String str2 = new String("Java");
System.out.println(str1 == str2);
}
}
What is the main purpose of a Real-Time Operating System (RTOS) in an embedded system?
Which of the following is an example of a message-passing communication model in distributed systems?
Which of the following is NOT a characteristic of distributed computing?
public class Test {
public static void main(String[] args) {
String str = "Hello";
str.concat(" World");
System.out.println(str);
}
}
What does the following code snippet do?
#include int main() {
char str[] = "Hello";
printf("%c\n", *str++);
return 0;
}
What is the output of the following code?
#include int main() {
int arr[] = {1, 2, 3, 4, 5};
int *ptr = arr + 2;
printf("%d\n", *ptr);
return 0;
}
What does the term "Shift-Reduce Conflict" refer to in parsing?
What is the purpose of "Peephole Optimization" in compiler design?
What will be the output of the following code?
#include int main() {
int x = 5;
int y = x++ * 2 + ++x;
printf("%d\n", y);
return 0;
}
Which of the following is NOT a valid method of IPv6 address representation?
What is the output of the following code?
public class Test {
public static void main(String[] args) {
int num = 10;
System.out.println(num++ + ++num);
}
}
Which of the following statements is true about the VPN in Network security?
What will be the output of the following code?
public class Test {
public static void main(String[] args) {
int x = 5;
int y = 10;
System.out.println((y > x) ? "Yes" : "No");
}
}