MNS-UNIVERSITY OF
AGRICULTURE
MULTAN
DEPARTEMENT OF COMPUTER
SCIENCE
FINAL EXAM:
NAME: Rabia Sajjad
ROLL NO: 2018-UAM-1292
COURSE: Human Computer
Interaction (CS-410)
QUESTION 2:
Short Questions:
1: As you design the user interface, it is
important to keep in mind the interactions that take
place between the human cognition and the screen
designing for. Making things easier for user’s means not
forcing them to learn new representations or toolsets for
each task. To check the consistency of application design
user should not have to wonder whether different words,
situations, or actions mean the same thing.
2: Software development team can understand
the basic need of an application users by using evaluation
techniques. In evaluation techniques developer interact
with user and asks user what type of applications he
wants and what characteristics should be in applications
or project.
They can gather that information by taking
questionnaires. Both has their pros and cons. But they
are very helpful in understanding the basic needs of
application user.
3: We design website through the help of user
centered design it helps us to know what user wants. We
make website through html and CSS. There are different
ways to put content at different places when we design a
website. By the help of user centered design we have
many options of placing content on different places
according to the user need. We select the best way what
is suitable for the user and makes our website efficient.
4: Through the visual design application and
principals we visualize or arrange our written language
and techniques we are using to manage the texts. Visual
are materials that have an effect on the sense of sight.
They are communication devices that serve concrete
referents to the spoken or written word.
QUESTION 3:
Long Questions:
1 Although Pakistan is digitally not so advanced country
:
but still government and business interprices are
focusing to use online destination.
1: JAZZ WORLD:
you can now manage your account easily with a few
tag from being available to view and pay to your prepaid
bill to being able to subscribe to different packages you
can even download your text certificate this app has it
all.
2: PHARMAPEDIA PAKISTAN:
You can acess a huge drug database offline on your
android Smartphone having all the pharmaceutical
brands in Pakistan pharmapedia Pakistan is an offline
medical dictionary.
3: MOTOR REGISTRATION CHECKERS:
This application enables the user to check the
vehicle details including ownership and the transfer
history of vehicle in Punjab, KPK, and sindh.
4: PAKISTAN CITIZEN PORTAL:
Has on the second place in the top three “best
mobile government applications” competing with over
4600 entrice at the world.
5: SHARE IT:
is an essential app for android users who have friends
with ios if also has free online fields including movies,
vesios , music, wallpaper, gifs share it also has powerfull
media player.
6: GOOGLE KEEP:
Is the best notepad one can have the best thing
about goggle keep is that is connected to google account
and you can access it from your computer too.
7: ISLAM 360:
Is a comprehensive Islamic app that can help you
in many ways it gives you a daily dose of hadith and
quranic versis.
8: GOOGLE MAPS:
is a must have applications that is free installed in
all android , smartphones it can help you to find the
shortest route of any detination it also indicate traffic
status and possible blockages in the city .
2:
Human computer interaction is a multidisciplinary
field of study focusing on the design of computer
technology
In particular interaction between human and computer
While initially concerned with computers HCI has since
expanded to cover almost all forms of information
technology design
Take a look at the point below to improve your mobile
app user experience
1: User native component in your mobile application
2: Keep your app design simple
3: Improve consistency in your app design
4: Improve the search feature in your app design
5: Enimate your transitions
6: Test your app and find ways to improve it
7: Conclusion
“Human computer interaction is smart environment”
The aim of this special issues is to highlight the
technologies and solutions in compassing the use of mass
markets sensors in current and emerging applications for
interacting with smart environments selected papers
address this topic why enalizing different interactions
modalities including hand , gestures, face recognization ,
eye tracing , biosignals , analysis, speech and activity
recognization and related issues .
PRACTICALS :
1:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-
width, initial-scale=1.0">
<title>Document</title>
<style>
Body {
font-family: Calibri, Helvetica, sans-serif;
background-color: rgba(71, 71, 71, 0.329);
}
button {
background-color: #000000;
width: 100%;
color: rgb(253, 253, 253);
padding: 15px;
margin: 10px 0px;
border: none;
cursor: pointer;
}
form {
width: 33%;
margin: 0 auto;
border: 3px solid #f1f1f1;
}
input[type=text], input[type=password] {
width: 100%;
margin: 8px 0;
padding: 12px 20px;
display: inline-block;
border: 2px solid green;
box-sizing: border-box;
}
button:hover {
opacity: 0.7;
}
.cancelbtn {
width: auto;
padding: 10px 18px;
margin: 10px 5px;
}
.container {
padding: 25px;
background-color: rgba(250, 7, 238, 0.555);
}
</style>
</head>
<body>
<center> <h1> Student Login Form </h1> </center>
<form>
<div class="container">
<label>Username : </label>
<input type="text" placeholder="Enter Username"
name="username" required>
<label>Password : </label>
<input type="password" placeholder="Enter
Password" name="password" required>
<button type="submit">Login</button>
<input type="checkbox" checked="checked">
Remember me
<button type="button" class="cancelbtn">
Cancel</button>
Forgot <a href="#"> password? </a>
</div>
</form>
</body>
</html>