Sunday 30 July 2023

Internet of Things and its applications (M4-R5) July 2022 Set 2

 Solved : Internet of Things and its applications (M4-R5) July 2022 Set 2

1. Where FootNote is Located in LibreOffice Writer ?
(A) Header of Page (B) Top of page
(C) Middle of Page (D) Bottom of Page

2. Which shortcut key is used to print the web page for Windows OS ?
(A) Command+P (B) Ctrl+P
(C) Caps+P (D) None of the above

Sunday 23 July 2023

Internet of Things and its applications (M4-R5) July 2022 Set 1

Solved  Internet of Things and its applications (M4-R5) July 2022  Set 1

1. Which parameter is taken through pulseIn() in ultrasonic sensor?
(A) Voltage (B) Frequency (C) Time duration (D) Distance


2. Which of the following is NOT a hard skill?
(A) Typing Speed (B) Machine Operation
(C) Time Management (D) Coding

Sunday 16 July 2023

Solved paper Programming and Problem Solving Through Python M3-R5 Set 2

 Solved paper Programming and Problem Solving Through Python M3-R5 Set 2 | NIELIT O Level

What will be output for the following code ? import numpy as np
a = np.array([[1,2,3],[0,1,4],[11,22,33]])
print (a.size)
(A) 1 (B) 3 (C) 9 (D) 4

Wednesday 12 July 2023

Solved paper Programming and Problem Solving Through Python M3-R5 Set 1

 Solved paper Programming and Problem-Solving Through Python M3-R5 Set 1 | NIELIT O Level

1.  ____is part of user documentation.
(A) Class Diagram (B) Code Comment (C) Use Case (D) Installation Guide

2. Determine the output :

for i in range(20,30,10) : j=i/2

print(j)

(A) 10 15 (B) 10.0 15.0 (C) 10.0 (D) None of these

3. print(np.minimum([2, 3, 4], [1, 5, 2]))
(A) [1 2 5] (B) [1 5 2] (C) [2 3 4] (D) [1 3 2]

4. Python is a case sensitive language when dealing with identifiers.
(A) True (B) False (C) Sometimes (D) Never

5. What is the output of the following code ?
print(bool(0), bool(3.14159), bool(3), bool(1.0+1j))

(A) True True False True (B) False True False True
(C) False False False True (D) False True True True

6. What will be the output of the following Python code ? def C2F(c) :
return c*9/5+32 print (C2F(100))
print (C2F(0))
(A) 212.0
32.0
(B) 314 24
(C) 567 98
(D) None of the above

7. To repeat a particular task, we use .
(A) Input (B) Loop (C) Output (D) Condition

8. Which of the following statement will execute in last ?
def s(n1): #Statement 1 print(n1) #Statement 2
n2=4 #Statement 3
s(n2) #Statement 4
(A) Statement 1 (B) Statement 2 (C) Statement 3 (D) Statement 4

9. Actual instructions in flowcharting are represented in .
(A) Circles (B) Boxes (C) Arrows (D) Lines

Tuesday 11 July 2023

Marksheet Template HTML | CSS

 


Educational Markheet template created using HTML and CSS. You can use this template for college results. This code is tested and you can create PDF while printing .

Source  Code

<html> <head> <title> Markesheet </title> <style> body{background-image:url('bg.jpg');background-size:cover;} .container { padding-right: 15%; padding-left: 15%; margin-right: auto; margin-left: auto; } @media(max-width:700px) { .container { padding-right: 5%; padding-left: 5%; } } .border{border:solid 1px black;} .imglogo{display:block;margin:auto} @media(max-width:700px) { .imglogo { width: 80%; } } .bold{font-weight:bolder;} .border-top{border-top:solid 1px black;} .border-left{border-left:solid 1px black;} .border-right { border-right: solid 1px black; } .padl{padding-left:5px;} .padr { padding-right: 5px; } </style>

Wednesday 5 July 2023

Web Designing and Publishing Through 'C' Language Set 2 | NIELIT O Level

Solved :  Web Designing and Publishing Through 'C' Language Set 2 | NIELIT O Level

1. Which of the following is a correct CSS Syntax ?
(A) {body; color:orange;} (B) {body: color=orange;}
(C) body:color=orange; (D) body{color:orange;}

Sunday 2 July 2023

Web Designing and Publishing Through 'C' Language Set 1 | NIELIT O Level

 Solved Web Designing and Publishing Through 'C' Language Set 1 | NIELIT O Level

1. “w3-border-0” is a border property for w3.css, which of the following is true ?
(A) It has rounded borders
(B) removes all borders
(C) removes rounded borders only
(D) None of these

2. “w3-row-padding” is a class which defines :
(A) Container for responsive classes, with 8px left and right padding
(B) Container for responsive classes with no padding
(C) Container for responsive classes with padding
(D) None of these