Sunday 23 April 2023

Solved : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July 2021 | NIELIT O Level

 Solved : PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE , July 2021 | NIELIT O Level

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. (1x10)


1.1 : The default storage class of a 'C' variable is :
(A) Auto
(B) Static
(C) Extern
(D) Register

Thursday 20 April 2023

Answer : IT Tools and Business Systems - July 2021

 Answer : IT Tools and Business Systems - July 2021

1. Multiple Choice


1.1 : B
1.2 : C
1.3 : D
1.4 : B
1.5 : B
1.6 : D
1.7 : B
1.8 : A
1.9 : C
1.10 : C

Wednesday 19 April 2023

Solved IT Tools and Business Systems (July 2021)

 Solved IT Tools and Business Systems M1-R4 (July 2021)

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.
(1x10)

Sunday 16 April 2023

Send Email on form submit

 This post will help you to send emails to the website admin, While someone fills out the contact/feedback or message form on the website. The whole task will be achieved using only HTML, No server side or any other backend code is required. 

This kind of email service is provided by https://formsubmit.co/. Just paste the sample form code on your webpage.

<form action="https://formsubmit.co/your@email.com" method="POST">

    <input type="text" name="name" required>

    <input type="email" name="email" required>

    <button type="submit">Send</button>

</form>