Tuesday 26 June 2018

Solved July, 2015 M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

Multiple Choice


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

Solved January, 2015 M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

Multiple Choice

1.1 : C
1.2 : A
Explanation : Shortest Seek Time First
1.3 : D
Explanation : 
Seek time: Say you're reading some data from the (0,4). You receive instructions to read from track (2,5). The time it takes for you to move from track 0 to track 2 is seek time.

Sunday 24 June 2018

M1-R4: IT TOOLS AND BUSINESS SYSTEMS July 2011 Solution

Multiple Choice


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

Friday 22 June 2018

Paper IT Tools and Business Systems January 2011 Solution

Multiple Choice

1.1 : D
1.2 : D
1.3 : B
1.4 : A
1.5 : D
1.6 : B
1.7 : B

Wednesday 20 June 2018

IT Tools and Business Systems -July-2010 Solution

Multiple Choice


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

Sunday 17 June 2018

IT TOOLS AND BUSINESS SYSTEMS Jan-12 Solved

Multiple Choice


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

July, 2012 M1-R4: IT TOOLS AND BUSINESS SYSTEMS Solution

Multiple Choice


1.1 : D
1.2 : D
1.3 : D
1.4 : D
1.5 : D

Monday 11 June 2018

Paper M1-R4: IT TOOLS AND BUSINESS SYSTEMS-jan-13 Solution

Multiple Choice


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

Saturday 9 June 2018

July, 2013 M1-R4: IT TOOLS AND BUSINESS SYSTEMS Solution

Multiple Choice

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

Wednesday 6 June 2018

CSS Selector



This page will help you to learn how you can user CSS on various types of HTML tag. If you have knowledge of CSS selector then you can make big changes of fo

Sunday 3 June 2018

July-2014 M1-R4: IT TOOLS AND BUSINESS SYSTEMS Answer

Multiple Choice


1.1 : C
1.2 : B
1.3 :  D
1.4 : B
1.5 : D
1.6 : D

Wednesday 30 May 2018

Image zoom inside of div






HTML

<div class="con">
<img src="1.jpg" class="test"/>
</div>

CSS

.test
{
       height:200px;
       width:200px;

Monday 28 May 2018

Solution : July, 2015 M1-R4: IT TOOLS AND BUSINESS SYSTEMS

Multiple Choice :


1. D
2.C
3.D
4.:A
5:C
6: B

Saturday 26 May 2018

import multiple CSS using single link

CSS file

File A1

.r1
{
       color:red;
}
File A2

.r2
{
       color:green;
}

File A3

.r2

Wednesday 16 May 2018

Get Date Time (dd/mm/yyyy)


<script>
       var d = new Date();
       document.write(d.getDate() + '/' + (d.getMonth() + 1) + '/' + d.getFullYear());

Tuesday 8 May 2018

Rules to declare a valid variable

List out the rules to declare a valid variable in ‘C’ program. Evaluate the following expression and show the hierarchy of operations:
( 2 + 4 ) / 3 + 2%3 * 2 – 5

Solution : 

Read List out the rules to declare a valid variable 

Expression Solve Steps

  • (2+4)/3+2%3*2-5
  • 6/3+2%3*2-5

Sunday 6 May 2018

Humanoid Robot MBA Project

Humanoid  Robot MBA Project

Humanoid
Robot

Table of Content

    1. Acknowledgement
    2. Certificate
    3. Student  declaration
    4. Introduction

Friday 4 May 2018

Structure Programming



Structure programming is a programming approach in which all the programming task is achieved through function/Methods that is sometimes it’s called modular programming. Structure programming uses procedure approach to solve a program using top down methodology. 

One big advantage of structure programming language is simplicity because we have to design programming task in modules which are connected to each other and can be called from any functions. We have all the modern powerful programming stuff like loop, switch-case, if-else etc that help to reduce the uses of goto statement because goto statement makes our program unstructured due to random move to any other statements.

Monday 30 April 2018

While Loop with example

Q : Write and explain the action of WHILE statement. Develop a program in ‘C’ language to compute the average of every third integer number lying between 1 and 100. Include appropriate documentation.

Solution : 


Array Input using function

A, B and C are three 3x3 matrices containing real elements. Write a ‘C’ function to input from user appropriate values into matrices A and B. Use suitable loops. Make use of pointers if necessary.

Solution : 

/*==============================
Girfa Student Help
Program : 3x3 Array input using function
More Program : http://girfahelp.blogspot.in/p/2-d-array-programming.html
================================*/
#include<stdio.h>
#include<conio.h>
#define MAX 3
void input(int [][MAX]);
void print(int [][MAX]);