Sunday 25 June 2023

Data Table




 Data Table is a javascript framework that adds filters to your existing table. It is one of the easiest ways to create filters in HTML table by just adding a few lines of code. Follow the steps given below to make data table.

Solved Information Technology Tools and Network Set1 | NIELIT O Level

 (M1-R5) Solved  Information Technology Tools and Network Set1 | NIELIT O Level

1.1 : Which of the following function is used to display current date and time?
(A) Date( ) (B) Today( ) (C) Now( ) (D) Time( )

1.2 : In presentations, which of the following can be inserted?
(A) Sound Clips (B) Movie Clips
(C) Both (A) & (B) (D) None of the above

Sunday 18 June 2023

Solved Internet of Things and its applications (M4-R5) January 2022

Q 1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the "OMR" answer sheet supplied with the question paper, following instructions therein.

1.1 : Which protocol is lightweight ?
(A) MQTT
(B) HTTP
(C) CoAP
(D) SPI

Saturday 17 June 2023

Get Rest API | Core PHP

This post will help you to make get API to return records using core PHP  in JSON format.

Return A single record

<?php

header("Content-Type:application/json");

$response['roll'] = 101;
$response['name'] = "ram";
$response['city'] = "vns";
$json_response = json_encode($response);
echo $json_response;

?>

Next Example