Wednesday, 26 October 2016
HTML : Text Layout
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Tuesday, 25 October 2016
Write a program to print only consecutive number of an array?
Q : Write a program to print only consecutive number of an array?
Answer: :
/* ###################################
Girfa : Student Help
Consecutive Number
For More Program Visit : http://girfahelp.blogspot.in/2012/09/some-program-of-c-language.html
###################################
*/
#include<stdio.h>
#include<conio.h>
void main()
{
int ar[5],i;
clrscr();
for(i=0;i<5;i++)
{
printf("Enter %d position
number>> ",i+1);
scanf("%d",&ar[i]);
}
printf("\n\tOriginal
Array\n");
for(i=0;i<5;i++)
printf("\t%d",ar[i]);
printf("\n\tConsecutive
Number\n");
for(i=0;i<5;i++)
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Monday, 24 October 2016
January, 2014 A8-R4: BASICS OF OS, UNIX AND SHELL PROGRAMMING
January, 2014
A8-R4: BASICS OF OS, UNIX AND SHELL PROGRAMMING
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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)
1.1 The nature of open source softwareA) Software and source code available to all
B) The freedom to distribute software and source code
C) The ability to modify and create derived works
D) All of the above
1.2 Runlevel 6 is reserved for
A) Shutdown
B) Very basic commands
C) Reboot
D) Starting most of the machines services
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
July, 2014 A8-R4: BASICS OF OS, UNIX & SHELL PROGRAMMING
July, 2014
A8-R4: BASICS OF OS, UNIX & SHELL PROGRAMMING
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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)
1.1 Which one of the following is used for file system check at startup?A) syscheck
B) check
C) fsck
D) rootchk
1.2 Which one of following is used to redirect output to a file while still redirecting to another
program?
A) tee
B) >
C) >>
D) 2>
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
January, 2015 A8-R4: BASICS OF OS, UNIX & SHELL PROGRAMMING
January, 2015
A8-R4: BASICS OF OS, UNIX & SHELL PROGRAMMING
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 “OMR” answer sheet supplied with the question paper, following
instructions therein. (1x10)
1.1 An ________ is a program whose function is to enable other programs to use the computer’s
hardware.
A) Operating system
B) Firmware
C) Application Software
D) All of the above
1.2 Thompson and Ritchie rewrote their UNIX operating system in ________ Language.
A) PASCAL
B) FORTRAN
C) C
D) C++
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Heading : HTML
Heading makes a text bold and change line. HTML has 6 different size heading. Heading is also important for SEO point of view you should have some heading on your page for better result in SEO.
<h1>Girfa : Student Help </h1>
<h2>Girfa : Student Help </h2>
<h3>Girfa : Student Help </h3>
<h4>Girfa : Student Help </h4>
<h5>Girfa : Student Help </h5>
<h6>Girfa : Student Help </h6>
Girfa : Student Help
Girfa : Student Help
Girfa : Student Help
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Sunday, 23 October 2016
Write a program to print an array in reverse order?
Write a program to print an array in reverse order?
/*
##################################
Girfa : Student Help
Reverse an array
for more program visit :
http://girfahelp.blogspot.in/2012/09/some-program-of-c-language.html
################################### */
#include<stdio.h>
#include<conio.h>
void main()
{
int ar[5],i;
clrscr();
for(i=0;i<5;i++)
{
printf("Enter %d
position number>> ",i+1);
scanf("%d",&ar[i]);
}
printf("\n\tOriginal
Input\n");
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Scanf : C Language Function
Scanf
A function is use to take input from keyboard and transfer to a variable.Syntax
Scanf(“format string”,&variable_list);Format string : %d,%c,%f,%s has been use as format string .
Variable_list : Name of variable followed by address operator where input though keyboard been transferred.
Example
Scanf(%d”,&a); Integer inputScanf(“%c”,&a); character input
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Thursday, 20 October 2016
fclose : C Language stdio.h
fclose
Closes a streamDeclaration: int fclose(FILE *stream);
Remarks:
fclose closes the named stream.All buffers associated with the stream are flushed before closing.
System-allocated buffers are freed upon closing.
Buffers assigned with setbuf or setvbuf are not automatically freed. (But if
setvbuf is passed null for the buffer pointer, it will free it upon close.)
Return Value
þ On success, returns 0
þ On error, returns EOF
Portability:
DOS
Yes
|
UNIX
Yes
|
C++ Only
|
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Wednesday, 19 October 2016
Syllabus : M4.3-R4: INTRODUCTION TO ICT RESOURCES
Objective of the Course
This course has been designed to provide an introduction to Computer Hardware and Networking troubleshooting & maintenance. The student will be able to troubleshoot problems of PC and replace the defected parts of the computer. Students will understand the basic networking concepts and they will be able to establish and manage small networks.At the end of the course students will be able to:
- Assemble and disassemble a PC
- Effectively use miscellaneous utilities such as: Compression, CD writing, Antivirus etc.
- Establish and configure a small LAN
- Perform simple network administration operation
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Syllabus : M4.2-R4: INTRODUCTION TO MULTIMEDIA
Objective of the Course
This course aims to introduce the fundamental elements of multimedia. It will provide anunderstanding of the fundamental elements in multimedia. The emphasis will be on learning
the representations, perceptions and applications of multimedia. Software skills and hands
on work on digital media will also be emphasized. On completion of the subject, the
students will understand the technologies behind multimedia applications and master the
skills for developing multimedia projects. After successfully completing the module student
should be able to:
- Summarize the key concepts in current multimedia technology.
- Create quality multimedia software titles.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Syllabus : APPLICATION OF .NET TECHNOLOGY
Objective of the Course
The objective of the course is to introduce .NET technology which provides multilanguageenvironment to develop windows based software development. The focus is on
• .NET Framework
• Programming Language C#
• Visual Basic
• ASP .NET (for web application)
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Syllabus : A3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE
Objective of the Course
The objectives of this course are to make the student understand programming language,
programming, concepts of Loops, reading a set of Data, stepwise refinement, Functions, Control
structure, Arrays. After completion of this course the student is expected to analyze the reallife problem and write a program in ‘C’ language to solve the problem. The main emphasis of
the course will be on problem solving aspect i.e. developing proper algorithms.
- After completion of the course the student will be able to
- Develop efficient algorithms for solving a problem.
- Use the various constructs of a programming language viz. conditional, iteration and
- recursion.
- Implement the algorithms in “C” language.
- Use simple data structures like arrays, stacks and linked list in solving problems.
- Handling File in “C”.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Syllabus : A3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE
Objective of the Course
The objectives of this course are to make the student understand programming language,
programming, concepts of Loops, reading a set of Data, stepwise refinement, Functions, Control
structure, Arrays. After completion of this course the student is expected to analyze the reallife problem and write a program in ‘C’ language to solve the problem. The main emphasis of
the course will be on problem solving aspect i.e. developing proper algorithms.
- After completion of the course the student will be able to
- Develop efficient algorithms for solving a problem.
- Use the various constructs of a programming language viz. conditional, iteration and
- recursion.
- Implement the algorithms in “C” language.
- Use simple data structures like arrays, stacks and linked list in solving problems.
- Handling File in “C”.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Syllabus : A2-R4: INTERNET TECHNOLOGY AND WEB DESIGN
Objective of the Course
The aim of this course is to provide you the conceptual and technological developments in the field of Internet and web designing with the emphasis on comprehensive knowledge of Internet, its applications and the TCP/IP protocols widely deployed to provide Internet connective worldwide. The World Wide Web with its widespread usefulness has become an integral part of the Internet. Therefore, this course also puts emphasis on basic concepts of web design.At the end of the course the students will be able to: -
- Review the current topics in Web & Internet technologies.
- Describe the basic concepts for network implementation.
- Learn the basic working scheme of the Internet and World Wide Web.
- Understand fundamental tools and technologies for web design.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Tuesday, 18 October 2016
Clearerr : C language stdio.h function
Clearerr
Resets error indication
Declaration:
void clearerr(FILE *stream);
Remarks:
clearerr resets the named
stream's error and end-of-file indicators to 0.
Once the error indicator is
set, stream operations continue to return error
status until a call is made
to clearerr or rewind.
The end-of-file indicator is
reset with each input operation.
Return Value:
None
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
stdio.h : C Language Library
Stdio.h
This library has all input and output related function. List
of available library functions are follows
fflush fgetc fgetchar fgetpos
fgets fileno
flushall fopen fprintf fputc fputchar fputs
fread freopen fscanf fseek fsetpos ftell
fwrite getc getchar gets getw perror
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Printf : Output Function
Getting Knowledge about input output is the most basic
process to start learning any programming language. In C all available function
reside in library file whose extension is .h
Stdio.h is header file which has most of the input output
related function.I am going to show you most frequently useful function.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Monday, 17 October 2016
HTML an Introduction
HTML (Hypertext Markup Language) is used to make website
around the globe. HTML is easy to learn and supported by the entire browser
around the world.
Let’s start with some world of full form. Why “Markup
language “has been used in full form?
The Name of markup language has been used because all the
HTML code is written inside of <>.
Syntax and Example
<Body bgcolor=”red”>
…………………
………………….
</Body>
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Saturday, 15 October 2016
Algorithm
Algorithm : Computer Science
To understand algorithm you need to understand following
terms
- Computer is a combination of software and hardware.
- Hardware is physical component of system which we can touch and feel.
- Software is a collection of related program.
- Program is a combination of related statement.
- Statements are actual command which computer follows to perform an action.
A programmer and Founder of Girfa
IT Services, working from 2009.At Starting computer teaching was my full-time job but after 10 years of teaching I chose to programming as a full-time job and teaching become part-time. In real life, I am very lazy and I made it my coding style I always try to make a reusable component that’s my USP for programming which saves my time and extra working both.
Subscribe to:
Posts (Atom)