Sunday, March 31, 2013

www.viewofspace.org

www.viewofspace.org [ISSN 2320-7620]



View of Space - International Multidisciplinary Journal For Applied Reasearch (VOSIMJAR) is a monthly print-in published journal since March 2013. The aim of the journal to become a platform for researchers for publishing research papers, articles, case studies, review articles etc in all subject areas by the academicians, research scholars, corporate and practitioners with substantial experience and expertise in their respective fields. This journal is kept wide to provide platform for diversity of intellectual pursuit from all corners of the society for enrichment and enhancement of the group readers. The Journal is been published on every 15th of the month.




The journal is being published monthly and in the multiple languages and target subjects are also Multipule



Accountings, Arts, Bio-medical, Biology, Business, Commerce, Corporate Governance, Clinical Research, Designing, Economics, Education, Engineering, Finance, Financial Accounting, Fine Art, Geography, History, Home Science, Human Resource, Intellectual Property Rights, Industrial Laws, Information Technology, Journalism, Literature, Management, Marketing, Management Accounting, Medical Science, Organization Behavior, Organizational Psychology, Philosophy, Pharmaceutical Science, Political Science, Rural India, Statistics, Science, Social Sciences, etc.



In this regard, may I take this opportunity to invite Articles, Research Papers, Case Study, and Review Report for View of Space - International Multidisciplinary Journal For Applied Reasearch (VOSIMJAR) : Please send us the following on or before 10th of the month



1.Print Copy of the Paper

2.Word file of the Paper in CD(Please include Authors Name, Affiliation, Phone No, Subject on front page.)

3.Copyright Agreement Form duly sign by all the authors

4.Publication Fees in Demand Draft/Cheque at Par (Please see the Authors' Guidelines)



E-mail Address:editorviewofspace@gmail.com

For more detail see website : www.viewofspace.org




Tuesday, October 4, 2011

marksheet using array

#include<stdio.h>

#include<conio.h>

void main()

{

int marks[4],tot=0,per,i;

clrscr();

for(i=0;i<4;i++)

{

printf("\nEnter Marks[%d subject]:",i+1);

scanf("%d",&marks[i]);

tot=tot+marks[i];

}

per=tot/4;

if(marks[0]>=40 && marks[1]>=40 && marks[2]>=40 && marks[3] >=40)

{

if(per >= 70)

{

printf("\nDistinction");

}

else if(per >= 60)

{

printf("\nFirst Class");

}

else if(per >= 50)

{

printf("\nSecond Class");

}

else

{

printf("\nPass");

}

printf("\n-------------------\n");

for(i=0;i<4;i++)

{

printf("\n subject %d : %d",i+1,marks[i]);

}

printf("\n-------------------\n");

printf("\n total : %d",tot);

printf("\n percentage : %.2f",(float)per);

printf("\n-------------------\n");


}

else

{

gotoxy(35,12);

textcolor(RED+BLINK);

cprintf("Fail");

}

getch();


}

Saturday, September 24, 2011

onchange event color

<Body>

<form name='frm'>

Color:<select name='clr' onchange="chgclr(frm)">

<option value='red'>RED</option>

<option value='pink'>Pink</option>

<option value='green'>Green</option>

<option value='blue'>Blue</option>

<option value='cyan'>Cyan</option>

</select>

</form>

</body>

title of my dissertation

my title

Monday, September 20, 2010

queue by javascript




::queue using array::



::queue using array::


Monday, August 17, 2009

CREATING LINKS WITH OTHER PAGE



<A>…</A>   [Anchor tag]

This element is used to make hyperlink its one of the important tag of html. This tag is use to made hyperlink. Text enclosed with in this tag is became hyperlink text.

|HREF: this attribute is having address of file or bookmark by clicking over the hyperlink you can jump to that file or bookmark.

For example:  <a href=’main.html’>main page</a>

 By clicking over the text main page this link will load main.html in the browser window.

|NAME: Name attribute use for creating bookmark in the document <a name=’xyz’>xyz</a> see the text enclosed within the <A> tag is became a bookmark.

 When you have to give hyperlink to that bookmark you have to put ‘#’ before bookmark name and give as value to HREF attribute.

For example: <a href=’#xyz’>Index</a>

By clicking over the text index you will be jumped to the xyz bookmark.

|TARGET: This attribute used to set target that where the document will show mainly used when framed document is there.

|ACCESSKEY: defined keyboard shortcut.

|TABINDEX: defined tab order for the link.