0% found this document useful (0 votes)
70 views6 pages

SIC IoT Questionnaire Rev2.0

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
70 views6 pages

SIC IoT Questionnaire Rev2.0

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Selection Test for SIC Internet of Things

Date: 13-01-2024

Name: Sudarshan.M.Kadekar

Q1. Which of the following is the background behind the launch of IoT devices called Smart Connected
Devices?

① Desktop PC

② Notebook

③ PDA(Personal Digital Assistant)

④ Smart Phone

Q2. What operation makes it TRUE when both are true and FALSE when any is false?

① OR

② AND

③ NOT

④ XOR

Q3. Which of the following belongs to the reserved language (keyword) of the C language?

① main

② function

③ double

④ the

Samsung Innovation Campus


Q4. What is the Infix formula (A + B) * C + (D + E) correctly expressed in Postfix?

① AB+CDE*++

② AB+C*DE++

③ +AB*C+DE+

④ +*+ABC+DE

Q5. Which of the software quality goals corresponds to “the ability of a system to perform the required
function with accurate and consistent results”?

① Efficiency

② Incorrectness

③ Integrity

④ Reliability

Q6. Born in Italy in 2005, it is one of the most widely used open-source hardware platforms. Atmel’s
AVR or Cortex-M3 is a microcontroller board that can be easily accessed by people who have no
experience in embedded system development. Which open-source IoT device hardware platform
describes these contents?

① Black Eagle

② Arduino

③ Raspberry Pi

④ Water Melon

Samsung Innovation Campus


Q7. What is the result of the pre-order operation in the tree below?

① DGHEBFCA

② DBGEGACF

③ ABDEGHCF

④ ABCDEFGH

Q8. Which of the following describes C and C ++ languages?

① C ++ programs are valid C programs.

② To convert a program written in C to C ++, you only need to change the extension of the source
file from .c to .cpp.

③ The C compiler and the C ++ compiler are often different programs.

④ It is the C language that inherits the C ++ language and adds object orientation.

Q9. Which of the following code compile errors occurs for array and pointer variables declared as
follows?

int x[10], y[10];


int *p = x;

① p++;

② x++;

③ p = y;

④ p = &x[3];

Samsung Innovation Campus


Q10. Which of the following is the wrong description of Queue?

① FIFO structure

② Mainly used in computer buffer

③ Data entry takes place at the front

④ Data input and output are in the same place

Q11. Which of the following belongs to the reserved language (keyword) of the C language?

① main

② function

③ double

④ the

Q12. Predict the output result of the code below.

if True :
if False:
print("1")
print("2")
else:
print("3")
else :
print("4")
print("5")

3

5
1

5
2

3
2

5

Q13. Output the data from the list as shown below. However, use the for statement and the range
statement.
Samsung Innovation Campus
price_list = [32100, 32150, 32000, 32500]
100 32150
110 32000
120 32500

for i in range(1, 3):



print(90 + 10 * i, price_list[i])

for i in range(1, 4):



print(90 + 10 * i, price_list[i])

for i in range(1, 4):



print(90 - 10 * i, price_list[i])

for i in range(0, 4):



print(90 + 10 * i, price_list[i])

Q14. Choose a keyword that cannot fit in the blank on the following code.

_______ class ATestClass {

public static void main(String[] argv) {

}
}

① public

② private

③ abstract

④ final

Samsung Innovation Campus


Q15. What is the output if stacking is performed in order of push, push, pop, push, push, pop, pop, pop
in order of input data with A, B, C, and D order?

① BDCA

② ABCD

③ BACD

④ ABDC

Samsung Innovation Campus

You might also like