Thursday 9 February 2017

WYSIWYG with Microsoft Word

WYSIWYG is a Java script, CSS combination or a program or editor, which changes your text formatting into its equivalent HTML CSS code. WYSIWYG is useful when you are making a dynamic website where your client can add some text and he wants formatted text, then WYSIWYG helps. A format tool bar is displayed in front of the user. A user enters text in textarea control and applies Formatting with some GUI icon. WYSIWYG program change formatted text to related tag form.

Wednesday 8 February 2017

Microsoft Word Protection


Protection is important when word carry some confidential information. So word has built in many types of protection methods, Encrypt document is one of them. When document is encrypted then you need a key (password) to decrypt, no one read your confidential information by using any other method. To achieve this do following steps.

NIELIT A Level Solved Paper July-2011

July, 2011
A9-R4: DATA COMMUNICATION AND NETWORK TECHNOLOGIES


PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “tear-off” answer sheet attached to the question paper, following instructions therein. (1x10)
1.1 In Quadrature Phase Shift Keying (QPSK) modulation
A) a cosine carrier is varied in phase while keeping a constant amplitude and frequency
B) a sine carrier is varied in phase while keeping a constant amplitude and frequency
C) a cosine carrier is varied in amplitude while keeping a constant phase and frequency
D) a sine carrier is varied in amplitude while keeping a constant phase and frequency

NIELIT A Level Solved Paper January-2011

January, 2011
A9-R4: DATA COMMUNICATION & NETWORKING TECHNOLOGIES

PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “tear-off” answer sheet attached to the question paper, following instructions therein. (1x10)
1.1 Which of the following technique uses four twisted-pair cables that connect each station to a
common hub?
A) 10Base-2
B) 10Base-5
C) 10Base-T
D) 10Base-F

NIELIT A Level Solved Paper July-10

A9-R4 : Data Communication Network Technologies (DCN)

July-10 Solved

PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “tear-off” answer sheet attached to the question paper, following instructions therein. (1x10)
1.1 What is true in case of CHAP?
A) It uses a three-way handshake
B) It encrypts the process using RC4
C) It repeats the challenge at random intervals
D) It is stronger than Kerberos

Tuesday 7 February 2017

Vintage Social Networking

Monday 6 February 2017

Pascal's Triangle C Language

Pascal's Triangle C Language Code

Pascal's triangle is a triangular array of the binomial coefficients. in which each row , second character and one before of last digit is sum two digit left to right from previous row.

Saturday 4 February 2017

Hollow Triangle Program C Language

Write a program which display a hollow triangle shape using asterisk character with while and for separately?

Hollow Triangle Program C Language Code

/*   ################################
     Girfa Student Help
     Hollow Triangle
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################

Friday 3 February 2017

MySQL Table Record Fetch

Fetch all record from MYSQL Table Using PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Girfa : Student Help :: MySQL Table Record Fetch</title>
</head>

<body>

<?php
$username = "root";

VB.net Array

Array is a collection of similar data type which occupies continuous location on memory.

Dim ar(4) As Integer
        For i = 0 To 4
            Console.Write("Enter {0} 'st number>> ", i + 1)
            ar(i) = Val(Console.ReadLine())
        Next
        For i = 0 To 4
            Console.Write(" {0},", ar(i))

Reverse Number Triangle C Langauge

Reverse Number Triangle C Langauge Code
/*   ################################
     Girfa Student Help
     Reverse Number Trianle
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################
*/

Number Triangle C Language

Number Triangle C Language Code

/*   ################################
     Girfa Student Help
     Number Trianle
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################

Function of Operating System

NIELIT O Level Solve Paper
IT Tools and Business Application

Q5 B) Explain the functions of Operating Systems.

Solution : 

Operating system provide interface between user and computer. An operating system (OS) is system software that manages computer hardware and software resources and provides common services for computer programs. All computer programs, excluding firmware,driver, require an operating system to function.

Thursday 2 February 2017

Full Pyramid C Language

Full Pyramid Code

/*   ################################
     Girfa Student Help
     Full  Pyramid
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################

Half Pyramid C Language

Half Pyramid C Language Code
/*   ################################
     Girfa Student Help
     Half Pyramid
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################

Reverse Triangle C Language

Reverse Triangle C Language C Language Code


/*   ################################
     Girfa Student Help
     Reverse triangle
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################

Link List Count Function

NIELIT O Level Solved Paper
January 2016

Q 9 B. Define the structure of a node of a singly linked list and use it to write a function to count the
number of nodes in a singly linked list. The function should accept a pointer to the first node of
the list and it should return the number of nodes in the list.

Solution : 

/*   ************************************************
           Girfa : Student Help
           Counting node in link list
           for more program visit : http://girfahelp.blogspot.com/p/c-language-assignment.html
     *************************************************/

Wednesday 1 February 2017

Simple Triangle C Language

Simple Triangle C Language Code

While Loop Implementation :

#include<stdio.h>
void main()
{
     int i,j;
     i=1;
     while(i<=5)
     {
           j=1;
           while(j<=i)
           {
                printf("*");
                j++;
           }
           printf("\n");
           i++;
     }
}

Monday 30 January 2017

C Language Structure Record Entry

NIELIT O Level Solved Paper
January 2016
C Language

Q8 b) Write a program to create a structure Employee having empCode, name, department, address and salary as its members. Read the details for 10 employees and then display them.

Solution : 

#include<stdio.h>
#include<conio.h>
struct stu
{
     int empcode;
     char name[20];
     char dept[20];
     char address[20];
     int sal;

};

Factorial number with recursion

NIELIT O Level Paper
C Language
 January 2016 Solved

Q8 a) Write a program having a recursive function to calculate the factorial of a number. In the main() function, read the value of the number and then using the recursive function display the result.

Solution :

/*   ################################
     Girfa Student Help
     Factorial recursion  program
     for more visit : http://girfahelp.blogspot.in/p/c-language.html
     ################################