Wednesday 21 February 2018

MVC Data Reader with Razor


Store Procedure


USE [Girfa_StudentDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
alter proc [dbo].[GetStudentList]
AS
BEGIN
     SET NOCOUNT ON;
           select roll,name,city from dbo.Student

     SET NOCOUNT OFF;
END


Model


public class StudentModel

Saturday 17 February 2018

OSI Layer C Graphics

OSI Layer C Graphics

Amazing OSI layer animation using c language graphics programming 




/*==============================
     Girfa Student Help
     Program : OSI Layer Using C Graphics
     More Program : http://girfahelp.blogspot.in/p/graphics-c-language.html
     Coder : Mayank Khare,BCA
================================*/
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#define x 1000
int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int xmax, ymax,i;

   /* initialize graphics and local variables */
   initgraph(&gdriver, &gmode, "");

   /* read result of initialization */
   errorcode = graphresult();

Friday 16 February 2018

Get Data from server MVC C# ajax application

$ajax({
    url: '/Student/Show/',
    dataType: "json",
    type: "GET",
    contentType: 'application/json; charset=utf-8',
    data: { id: $("#txtroll").val() },
    success: function (data) {
        var html="";
            $j.each(data, function (i, item) {

                html += "<tr><td>" + item.roll + "</td><td>" + item.Name + "</td><td>" + item.city + "</td></tr>";
                     

Date parameter as dd/mm/yyyy

USE [Girfa_StudentHelp]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create proc [dbo].[StuReport]
(
@d1 varchar(100),
@d2 varchar(100)
)
AS
BEGIN

Saturday 10 February 2018

India Gate C Graphics

India Gate using C language graphics programming 


India Gate using C language graphics programming

Code : 


/*==============================
     Girfa Student Help
     Program : India Gate
     More Program : http://girfahelp.blogspot.in/p/graphics-c-language.html
     coder : Maynak Khare
     Email : khare.mayank09@gmail.com
================================*/
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#define x 100
int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int maxx, maxy,i,j;

   /* our polygon array */
   int poly[10];

Animated circle c graphics






/*==============================
     Girfa Student Help
     Program : Animated circle
     More Program :http://girfahelp.blogspot.in/p/graphics-c-language.html
================================*/

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <dos.h>
int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int midx, midy;
   int radius = 100;

Fill Drop down list using razor

Store Procedure


USE [Girfa_ProductDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[fetchProduct]
AS
BEGIN
     select  id,productname from dbo.product order by productname
END


CHTML

@model IEnumerable<Britanic_MIS.Models.ProductModel>

Product : 
<select class="form-control

Friday 9 February 2018

Polygon fill C Graphics



/*==============================
     Girfa Student Help
     Program : Polygon fill demo
     More Program : http://girfahelp.blogspot.in/p/graphics-c-language.html
     Coder Name : Mayank Khare , BCA
================================*/
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int maxx, maxy;

   /* our polygon array */

Thursday 8 February 2018

Scenery C graphics



Source Code :


/*==============================
     Girfa Student Help
     Program : Scenery C graphics
     More Program :http://girfahelp.blogspot.in/p/graphics-c-language.html
Coder : Mayank Khare , BCA 
================================*/
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#define x 500
int main(void)
{
   /* request auto detection */
   int gdriver = DETECT, gmode, errorcode;
   int xmax, ymax,i;
   int poly[100];

Friday 2 February 2018

Practice Paper Set 1

NIELIT O Level

M2-R4 Internet Technology and Web Design


Note : each question carry one marks from part -1 . part two consist 4 question each carry 10 marks only 3 question need to attempt from part two.
Name : _________________                                                                                                                            Time : 1 hour
Part -1



Multiple Choice :
1. The internet is governed by:
    A) I & B    B)IETF    C) InterNIC   D)None of these
2. The first network that planted the seeds of the internet was :
A) ARPANET  b) NSFNET   C) VNET    D)INET

3. The first page that you normally view when open
   A) Home page   B) Contact   C) About  C)website

4.  A website is a collection of ……….
  A) Protocol    B)HTTP   C) Multimedia   D)web pages

5. for a small website, one needs to buy space from the
A) Network admin     B) ISP
C) Telephone exchange    D) Government

Tuesday 30 January 2018

Count frequency of each character

Q : Write a program to count frequency of each character individually.

Solution : 

/*==============================
     Girfa Student Help
     Program : Count frequency of each character
     More Program :http://girfahelp.blogspot.in/p/1.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 50
void main()
{
     char ar[MAX],temp[26];
     int i,j,k,s;
     clrscr();
     printf("Enter String>> ");
     gets(ar);
     temp[0]=ar[0];
     for(i=0,j=1;ar[i]!='\0';i++)
     {
          for(k=0;k<j;k++)
          {

Saturday 27 January 2018

Bootsrap Horizontal Responsive Menubar




Disadvantage of nested if-else

Disadvantage of nested if-else


  • When number of criteria increase complexity of maintenance of code is also increased
  • If indenting is not proper maintained then it is difficult to debugging because a programmer faces difficulty associate statement to related block.
  •  Else-if leader does not specify better interpretation of business logic to programmer than switch case.

Thursday 25 January 2018

2D Array Input/Ouput

Q :  Define a two dimensional array ‘int a[10][10]’. Write a ‘C’ program to initialize this array with numbers between 0 and 99. Then print the contents of ‘a’.

Solution : 

/*==============================
     Girfa Student Help
     Program : 2D Array Input/Ouput
     More Program :http://girfahelp.blogspot.in/p/2-d-array-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 10
void main()
{
     int a[MAX][MAX],r,c,s;
     clrscr();
     for(r=0,s=

Tuesday 23 January 2018

2-D array sum using function

Q: Write a ‘C’ function to calculate matrix C such that C=A+B Use suitable loops. Make use of pointers if necessary

Solution : 

/*==============================
     Girfa Student Help
     Program : 2-D array sum using function
     More Program :http://girfahelp.blogspot.in/p/2-d-array-programming.html
================================*/

#include<stdio.h>
#include<conio.h>
#define MAX 3
void add(int [][MAX],int [][MAX],int [][MAX]);
void print(int [][MAX]);
void main()
{
     int a1[MAX][MAX],a2[MAX][MAX],a3[MAX][MAX],r,c;
     clrscr();
     printf("\nFirst Array Input\n");
     for(r=0;r<MAX;r++)

Sunday 21 January 2018

Significance of header file



To understand significance of header file. I would like to ask you a question. Why do we choose high level language to develop software instead of low level language?

Answer is we choose high level language like C language  to develop software. Because there are lots of things that can be achieved by only calling some function provided by related language compiler. One the other hand in low level language every things of programming is manually done by programmer. For example if you want to generate output on screen using assembly language you will have to set many register value which is very complicated. Whereas in C language you will have to use inbuilt function printf.

Saturday 20 January 2018

Brokerage Management Software Screen Shot


Brokerage Management Software VB

Brokerage Management Software VB

Girfa Brokerage Management System is windows based application software. This application helps brokers to manage their brokerage amount against of what are the sale he/she has done to many customers. This is fully customizable software because all the setting of business will be done by owner. So due to dynamic nature of software, you can use this software to calculate brokerage amount for any business with reach feature of powerful reporting for various type of sales and many more. Feature of software are given below.

HTML form control selector test


Check Radio button check


Gender : Male Female

Code :

  Gender :
    <input type="radio" name="gender" id="rdomale" checked="checked" />Male
    <input type="radio" name="gender" id="rdofemale" />Female
    <input type="button" value="Check" onclick="Checkradio()" />

<script>

Wednesday 17 January 2018

Even Odd group print array

Q : Write a program using function to read an array from the user and print the odd number at odd position and prints the even numbers at even positions. For example input array is 1 2 3 4 and
output is 2 1 4 3.


Solution : 


/*==============================
     Girfa Student Help
     Program : Even Odd group print array
     More Program :http://girfahelp.blogspot.in/p/one-dimentaional-array-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 5
void print(int*);
void main()
{
     int ar[MAX],i;