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.