Friday 8 April 2016

Your Profile Cannot be Loaded firefox Windows 10 Fix

 try deleting the profile.ini file to force Firefox to create a new default profile:

Step 1: Make sure that Firefox is closed
Step 2:Press Windows key+R to open the Run box
Step 3:Type: %APPDATA%\Mozilla\Firefox
Step 4:Click “OK”
Step 5:Delete the file called “profile.ini”
Step 6:Run Firefox.
your firefox must be opened.

Saturday 15 August 2015

Up Work css test 2018 Questions and Answers


Signed in as Odesk Expert Odesk
Time remaining: 02:00
CSS Test
Question 1 of 45

What will happen if the pause property is used as follows?

h2 { pause: 40s 60s }

pause-before will be set to 40 seconds and pause-after will be set to 60 seconds.   ok

pause-after will be set to 40 seconds and pause-before will be set to 60 seconds.

pause-after and pause-before will be set to 40 seconds.

pause-after and pause-before will be set to 60 seconds.

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:57
CSS Test
Question 2 of 45

Which of the following can be used to add a shadow around the div element below?

<div>Lorem ipsum</div>

box-shadow: 0 0 8px 2px #888; ok

border-shadow: 0 0 8px 2px #888;

div-shadow: 8px 2px 0 0 #888;

None of these

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:33
CSS Test
Question 3 of 45

Which of the following will decrease 50px from a DIV element whose width is 100%?

width: calc(100% - 50px);    ok

width: reduce(100% - 50px);

width: decrease(100% - 50px);

width: 100% - 50px;

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:48
CSS Test
Question 4 of 45

Consider the following code:

body { text-replace: "a" "b" "b" "c" }

What will be the output of the following string if the text-replace style is implemented?

andy lives behind cafe

ndy lives behind cbfe ok

cndy lives cehind ccfe

andy lives behind cafe

andy lives cehind bafe

Can this question be improved?
Let us know
Continue


Signed in as Odesk Expert Odesk
Time remaining: 01:47
CSS Test
Question 5 of 45

What will happen if the cursor property value is set to none?

The default cursor will be displayed.

No cursor will be displayed. ok

A pointer cursor will be displayed.

A text cursor will be displayed.

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:51
CSS Test
Question 6 of 45

What is the initial value of the animation-iteration-count property?     hhhhhhhhhhhhhh

1 ok

5

None

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:39
CSS Test
Question 7 of 45

What will be the output of the following rule?

em { color: rgba(0,0,255,1) }

Opacity 1 with solid red color

Opacity 0 with solid blue color

Opacity 0 with solid red color

Opacity 1 with solid blue color

None of these

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:39
CSS Test
Question 7 of 45

What will be the output of the following rule?

em { color: rgba(0,0,255,1) }

Opacity 1 with solid red color

Opacity 0 with solid blue color

Opacity 0 with solid red color   ok

Opacity 1 with solid blue color

None of these

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:50
CSS Test
Question 8 of 45

Which of the following will apply a black inner glow with 25% opacity to a page element?

box-shadow: 0 0 8px rgba(255,255,255, 0.25);

box-shadow: inset 0 0 8px rgba(0,0,0, 0.25);

box-shadow: 0 0 8px rgba(255,255,255, 25%);

box-shadow: inset 0 0 8px rgba(0,0,0, 25%);

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:13
CSS Test
Question 8 of 45

Which of the following will apply a black inner glow with 25% opacity to a page element?

box-shadow: 0 0 8px rgba(255,255,255, 0.25);

box-shadow: inset 0 0 8px rgba(0,0,0, 0.25); ok

box-shadow: 0 0 8px rgba(255,255,255, 25%);

box-shadow: inset 0 0 8px rgba(0,0,0, 25%);

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:52
CSS Test
Question 9 of 45

What is the initial value of the marquee-speed property?

slow

normal ok

fast

none

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:57
CSS Test
Question 10 of 45

Which of the following properties allow percentages in their value fields?

Note: There may be more than one right answer.

font-size

font-variant

font-weight

line-height

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:44
CSS Test
Question 11 of 45

Which of the following is the initial value for the column-fill property?

auto

balance ok

none

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:55
CSS Test
Question 12 of 45

Suppose there are 16 <div> elements and a style needs to applied only on every 4th element. Which of the following is correct?

Note: There may be more than one right answer.

div:nth-child(4), ok
div:nth-child(8),
div:nth-child(12),
div:nth-child(16) { }

div:nth-child(4n) { } ok

div:nth-child(4n+4)  { }

div:nth-child(3n+4)

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:46
CSS Test
Question 13 of 45

Problem to solve:
Need to use attribute selector in css to change link on different color and image.
The following code is not working correctly:

...
<style>
a {
     display: block;
     height: 25px;
     padding-left: 25px;
     color:#333;
     font: bold 15px Tahoma;
     text-decoration: none;
 }

 a[href='.pdf'] { background: red; }

</style>
.....
<a href="/manual.pdf">A PDF File</a>

Which of the following code snippets will correct issue?

a[href$='.pdf'] { /*css*/ } ok

a[href#='.pdf'] { /*css*/ }

a[href@='.pdf'] { /*css*/ }

a{href$='.pdf'} [/*css*/ ]

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:47
CSS Test
Question 14 of 45

For the clear property, which of the following values is not valid?

none

left

right

top ok

Can this question be improved?
Let us know
Continue
For the clear property, which of the following values is not valid?

Signed in as Odesk Expert Odesk
Time remaining: 01:54
CSS Test
Question 15 of 45

Which of the following properties specifies the minimum number of lines of a paragraph that must be left at the bottom of a page?

orphans ok

widows

bottom

overflow

None of these

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:58
CSS Test
Question 16 of 45

Which of the following option does not exist in media groups available in CSS3?

continuous or paged

visual or tactile

grid or bitmap

braille or screen ok

Can this question be improved?
Let us know
Continue


Signed in as Odesk Expert Odesk
Time remaining: 01:58
CSS Test
Question 17 of 45

What effect does the following rule have?

div { grid-rows: 4em (0.25em 1em); }

It creates rows with 4em height.

It creates a header row with 4em height and alternative rows with 0.25em width and 1em heights.

It creates a header row with 4em height and alternative rows with 0.25em and 1em heights.

It creates a header row with 4em width and alternative rows with 0.25em width and 1em heights. ok

Can this question be improved?
Let us know
Continue


Signed in as Odesk Expert Odesk
Time remaining: 01:50
CSS Test
Question 18 of 45

To make childdiv vertically center of given code, what should the "display" property of parentdiv and childdiv be?

#parentdiv
{
  width: 200px;
  height: 400px;
  vertical-align: middle;
}

#childdiv
{
  width: 100px;
  height: 50px;
}
<div id="parentdiv">
<div id="childdiv">Vertical Center</div>
</div>

display:table-cell; for parentdiv and display:inline-block; for childdiv ok

display:block; for parentdiv and display:inline-block; for childdiv

display:inline-block; for parentdiv and display:table-cell; for childdiv

display:inline-block; for parentdiv and display:inline-block; for childdiv

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:55
CSS Test
Question 19 of 45

Which of the following is not a valid value for the font-smooth property?

auto

never

always

normal ok

length

Can this question be improved?
Let us know
Continue


Signed in as Odesk Expert Odesk
Time remaining: 01:56
CSS Test
Question 20 of 45

Which of the following styles is not valid for an image?

img { float= left }

img { float: left here }

img { background: "black" }

img { border-width: 10 }

All of the above ok

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:53
CSS Test
Question 21 of 45

Which of the following statements is true with regard to CSS3 transitions?

Using CSS transitions will slow down page upload and produce lag.

The completion of a CSS transition generates a corresponding DOM event. An event is fired for each property that undergoes a transition. This allows a content developer to perform actions that synchronize with the completion of a transition.

CSS transitions allow DOM events in CSS values to occur smoothly over a specified duration.

None of these. ok

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:31
CSS Test
Question 22 of 45

Consider the following code:

border-opacity:0.7;

Given a div element that needs to have a transparent red border, which of the following code samples will work in conjunction with the code above to accomplish the requirement?

border: 1px solid rgba(255, 0, 0, 0.7); ok

border: 1px solid rgb(255, 0, 0, 0.7);

border: 1px solid rgba(255, 255, 0, 0.7);

border: 1px solid red;
opacity: 0.7;

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:54
CSS Test
Question 23 of 45

What will be the output of the following code? qqqqqqqqqqqqqqqqqqqqqq

<style>
.foo {
    width:100px;
    height:50px;
    border-width:3px;
    -webkit-border-image:
        -webkit-gradient(linear, 0 0, 0 100%, from(black), to(red)) 1 100%;
    -webkit-border-image:
        -webkit-linear-gradient(black, red) 1 100%;
    -o-border-image:
             -o-linear-gradient(black, red)) 1 100%;
    -moz-border-image:
           -moz-linear-gradient(black, red) 1 100%;  

}
</style>

<div  class="foo">Lorem</div>

The text "Lorem" will be colored black-red.

The div element will be colored black-red.

The border of div element will be colored black-red. ok

None of these.

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:30
CSS Test
Question 24 of 45

What is the default value of the animation-direction property?

none

normal ok

alternate

inherited

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:56
CSS Test
Question 25 of 45

Which of the following is not a valid value for the font-stretch property?

condensed

normal

semi-narrower ok

expanded

semi-expanded

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:57
CSS Test
Question 26 of 45

Read the following:

@page rotated {size: landscape}
TABLE {page: rotated; page-break-before: right}

What will this code do?

It will put all tables on a right-hand side landscape page.

It will rotate the page if the table is positioned at the right side. ok

It will keep the table in the landscape position and rotate the page.

None of the above

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:52
CSS Test
Question 27 of 45

What is the best method to select all elements except for the last one in an unordered list?

Adding a class to each <li> element but last

Using li:not(:last-child) css selector ok

Using li:last-child selector

None of the above

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:54
CSS Test
Question 28 of 45

To apply style on every input element except text, which of the following selectors should be used?

input:([!type='text'])

input:not([type="text"]) ok

input:not([type!="text"])

input:([type!='text'])

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:56
CSS Test
Question 29 of 45

Which of the following will create a triangle effect using pure CSS3 on a white background, without making use of background images?

It is not possible to do so.

border-color: #a0c7ff #ffffff #ffffff #ffffff;
    border-style: solid;
    border-width: 20px;
    width: 0px;
    height: 0px; ok

background-color: #a0c7ff #ffffff #ffffff #ffffff;
    border-style: solid;
    border-width: 20px;
    width: 0px;
    height: 0px;

background-color: #a0c7ff #ffffff #ffffff #ffffff;
border-style: solid;
border-width: 1px;
width: 10px;
height: 10px;

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:04
CSS Test
Question 30 of 45

There are various types of input fields in a HTML page. Choose the appropriate CSS3 code which will have an effect on all inputs, except checkbox and  radio.

form input:not([type="radio"], [type="checkbox"]) {
}

input:not([type="radio"]):not([type="checkbox"]) {
} ok

input:not([type="radio & checkbox"]) {
}

input:!([type="radio"]) , input:!([type="checkbox"]) {
}

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:39
CSS Test
Question 31 of 45

What is the maximum value that can be given to the voice-volume property?

10

100 ok

500

None of the above

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:53
CSS Test
Question 32 of 45

Which of the given options is/are equivalent to the following rule?

DIV { line-height: 1.2; font-size: 10pt }

Note: There may be more than one right answer.

DIV { line-height: 1.2em; font-size: 10pt } ok

DIV { line-height: 12em; font-size: 10pt }

DIV { line-height: 120%; font-size: 10pt } ok

DIV { line-height: 20%; font-size: 10pt }

DIV { line-height: 80%; font-size: 10pt }

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:48
CSS Test
Question 33 of 45

Which of the following are not valid values for the target-new property?

Note: There may be more than one right answer.

window

tab

none

parent ok

current ok

Can this question be improved?
Let us know
Continue

Signed in as Odesk Expert Odesk
Time remaining: 01:48
CSS Test
Question 34 of 45

Is it possible to format numbers with CSS?

No, CSS cannot be used for that purpose. ok

Yes, it can be done using the number-format property.

Yes, it can be done using the decimal property.

None of these.

Can this question be improved?
Let us know
Continue

upwork html5 2018 new test question and answer 100%


Signed in as Artical Writer
Time remaining: 01:46
HTML5 Test
Question 1 of 45

Which of the following is the correct way to store an object in localStorage?

var obj = { 'one': 1, 'two': 2, 'three': 3 };

localStorage.setItem('obj', obj);        ok

localStorage.setItem('obj', JSON.stringify(obj));

localStorage.setItem('testObject', JSON.parse(testObject));

localStorage.setItem(obj);

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:51
HTML5 Test
Question 2 of 45

Consider the following JavaScript code:

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var img=document.getElementById("img");

Which method will correctly draw an image in the x=10, y=10 position?

ctx.drawImage(img,10,10);     ok

context.drawImage(img,20,10,10,10);

context.drawImage(img,10,20,10,10,20,20,10,10);

All of these

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:46
HTML5 Test
Question 3 of 45

The following are valid use cases of client file/directory access in HTML5, except:

Drag and drop of files from the desktop

Full file system access

Use of the HTML5 File API     ok

Use of files as HTML5 input types

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:55
HTML5 Test
Question 4 of 45

Can we store JavaScript Objects directly into localStorage?

Yes

No   ok

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:57
HTML5 Test
Question 5 of 45

Which of the following is the correct way to play an audio file in HTML5?

Note: There may be more than one right answer.

var snd = new Audio("file.wav");    ok
snd.play();                                              

<audio controls>                                        
  <source src="file.ogg" type="audio/ogg">
  <source src="file.mp3" type="audio/mpeg">
</audio> ok

<source src="file.mp3" type="audio/mpeg">

All of these.

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:32
HTML5 Test
Question 6 of 45

What does P2P streaming mean when web applications establish a P2P HTTP connection using HTML?

It means that streaming of a voice/video frame is direct, without using any server between them.  ok

It means that streaming of a voice/video frame is first between one peer to the server then the server to another peer.

Communication does not rely on a shared relay server in the network.

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:48
HTML5 Test
Question 7 of 45

Once an application is offline, it remains cached until the following happens (select all that apply):

Note: There may be more than one right answer.

The application cache is programmatically updated.   ok

The application cache gets automatically cleared by the browser.    ok

The manifest file is modified.    ok

The user clears their browser's data storage for the site.

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:23
HTML5 Test
Question 8 of 45

What is the difference between Server-Sent Events (SSEs) and WebSockets in HTML5?

WebSockets can perform bi-directional (client-server and vice versa) data transfers, while SSEs can only push data to the client/browser.   ok

SSEs can perform bi-directional (client-server and vice versa) data transfers, while WebSockets can only push data to the client/browser.

WebSockets and SSEs are functionally equivalent.

None of these.

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:52
HTML5 Test
Question 9 of 45

Which HTML5 doctype declarations are correct?

Note: There may be more than one right answer.

<!doctype html>

<!DOCTYPE html>   ok

<!DOCTYPE HTML5>

<!DOCTYPE HTML> ok

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:45
HTML5 Test
Question 10 of 45

Which of the following <section> elements have the correct attribute assignment as per HTML5?

Note: There may be more than one right answer.

<section id="example">...</section id="example">

<section id="example">...</section id="example2">

<section id="EXAMPLE">...</section>      ok

<section id="Example">...</section>

<section id="example">...</section>

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:45
HTML5 Test
Question 11 of 45

When does the ondragleave mouse event get fired in HTML5?

It gets fired when an element has been dragged to a valid drop target.

It gets fired when an element leaves a valid drop target.     ok

It gets fired at the end of a drag operation.

It gets fired while an element is being dragged.

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:34
HTML5 Test
Question 12 of 45

Which of the following are the valid values of the <a> element's target attribute in HTML5?

Note: There may be more than one right answer.

_blank   ok

_self   ok

_top   ok

_bottom

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:48
HTML5 Test
Question 13 of 45

Which of the following are valid HTML5 elements?

Note: There may be more than one right answer.

canvas   ok

summary

aside

video

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:38
HTML5 Test
Question 14 of 45

How can an HTML5 canvas size be changed so that it fits the entire window?

Note: There may be more than one right answer.

#myCanvas {height: 100%; width: 100%;}

<script type="text/javascript">

        function resize_canvas(){ ok b

            canvas = document.getElementById("canvas");
            if (canvas.width  < window.innerWidth)
            {
                canvas.width  = window.innerWidth;
            }

            if (canvas.height < window.innerHeight)
            {
                canvas.height = window.innerHeight;
            }
        }
    </script>

It depends upon the complexity of the canvas, and the frequency of redraws.

Calling the JavaScript getWidth() function.

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:37
HTML5 Test
Question 15 of 45

Which of the following video file formats are currently supported by the <video> element of HTML5?

Note: There may be more than one right answer.

CCTV

MPEG 4    ok

Ogg ok

3GPP

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:52
HTML5 Test
Question 16 of 45

True or false:

JavaScript objects can be stored directly into localStorage.

True

False ok

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:56
HTML5 Test
Question 17 of 45

Which of the following is not a valid attribute for the <video> element in HTML5?

controls

autoplay

disabled ok

preload

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:54
HTML5 Test
Question 18 of 45

Which of the following methods can be used to estimate page load times?

Note: There may be more than one right answer.

Using _gaq.push(['_trackPageLoadTime']) with Google Analytics.     ok

Using the Navigation Timing JavaScript API. ok

Page load times cannot be estimated.

Using built-in JavaScript methods.

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:44
HTML5 Test
Question 19 of 45

How can audio files be played in HTML5?

var sound = new Audio("file.wav");

sound.begin();

sound.resume();

sound.start();

sound.play(); ok

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:53
HTML5 Test
Question 20 of 45

Which of the following statements are correct with regard to the <hr> and <br> elements of HTML5?

Note: There may be more than one right answer.

The <hr> element acts in the same way as the tab key and the <br> element acts in the same way as the shift key.

The <hr> element is used to insert the horizontal line within the document and the <br> element is used to insert a single line break. ok

The <hr> element is used to put a line across the page and the <br> element acts in the same way as a return/enter key press.

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:50
HTML5 Test
Question 21 of 45

How does a button created by the <button> tag differ from the one created by an <input> tag?

An input tag button can be a reset button too.

A button tag button can be a reset button too.

An input tag button can include images as well.

A button tag can include images as well. ok

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 02:00
HTML5 Test
Question 22 of 45

Which of the following statements is correct for a blockquote?

It makes the text a bit bigger for emphasizing.

It defines the start of a long quote. ok

It makes the text slightly bolder.

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:49
HTML5 Test
Question 23 of 45

Which of the following is the correct way to store an object in a localStorage?

localStorage.setItem('testObject', JSON.stringify(testObject))    ok

localStorage.setItem('testObject', testObject)

localStorage.add('testObject', testObject)

localStorage.addItem('testObject', testObject)

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:53
HTML5 Test
Question 24 of 45

You are writing the code for an HTML form and you want the browser to retain the form's input values. That is, if a user submits the form and presses the browser's back button, the fully populated form is displayed instead of a blank form. Which of the following HTML 5 attributes will you use?

accept

autofocus

autocomplete    ok

formtarget          

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:46
HTML5 Test
Question 25 of 45

What is the limit to the length of HTML attributes?

65536

64

There is no limit. ok

None of these.

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:52
HTML5 Test
Question 26 of 45

Which of the following are possible ways to make the browser automatically adds new images and discards deleted images with server-side events in HTML5?

Note: There may be more than one right answer.

Long Polling Ajax Requests

Server-sent Events   ok

WebSockets ok

JavaScript objects on the client via JSON.parse().

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:47
HTML5 Test
Question 27 of 45

Which of the following code is used to prevent Webkit spin buttons from appearing on web pages?

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    }

input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
   } ok

noindex:-o-prefocus,
   input[type=number] {
    padding-right: 1.2em;
    }

input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
   padding-right: 1.2em;
    }

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:39
HTML5 Test
Question 28 of 45

Which of the following <link> attributes are not supported in HTML5?

Note: There may be more than one right answer.

sizes

rev ok

rel

charset ok

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:52
HTML5 Test
Question 29 of 45

Which media event is triggered when there is an error in fetching media data in HTML5?

onstalled ok

onwaiting

onsuspend

oninvalid

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:58
HTML5 Test
Question 30 of 45

Which of the following is the correct way to display a PDF file in the browser?

<object type="application/pdf" data="filename.pdf" width="100%" height="100%"/>  ok

<object type="application/pdf" id="filename.pdf" width="100%" height="100%"/>

<input type="application/pdf" data="filename.pdf" width="100%" height="100%"/>

<input type="application/pdf" src="filename.pdf" width="100%" height="100%"/>

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:54
HTML5 Test
Question 31 of 45

Which of the following input element variations will show a numeric keypad in mobile browsers?

Note: There may be more than one right answer.

<input type="text" pattern="[0-9]*" />

<input type="number" /> ok

<input type="text" keyboard="numeric" />

<input type="text" keyboard="number11" />

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:44
HTML5 Test
Question 32 of 45

Assuming that some text needs to be written on an HTML5 canvas, select a replacement for the commented line below:

<canvas id="e" width="200" height="200"></canvas>
<script>
  var canvas = document.getElementById("e");
  //insert code here
  context.fillStyle = "blue";
  context.font = "bold 16px Arial";
  context.fillText("Zibri", 100, 100);
</script>

var context = canvas.getContext();

var context = canvas.getElementById("context");

var context = canvas.getContext("2d"); ok

var context = canvas.getElementById("2d");

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:49
HTML5 Test
Question 33 of 45

What is the internal/wire format of input type="date" in HTML5?

DD-MM-YYYY

YYYY-MM-DD ok

MM-DD-YYYY

YYYY-DD-MM

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:56
HTML5 Test
Question 34 of 45

Which of the following is not a valid syntax for the <link> element in HTML5?

<link rel="icon" href="abc.jpg" sizes="16x16">

<link rev="stylesheet" href="abc.css" type="text/css" target="_parent">  ok

<link rel="alternate" type="application/pdf" hreflang="fr"  href="manual-fr">

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:57
HTML5 Test
Question 35 of 45

Which of the following will detect when an HTML5 video has finished playing?

var video = document.getElementsByTagName('video')[0];
    video.onended = function(e) {
    } ok

var video = document.getElementsByTagName('video')[0];
    video.onPlayend = function(e) {
    }

var video = document.getElementsByTagName('video')[0];
    video.onPlayFinish = function(e) {
    }

var video = document.getElementsByTagName('video')[0];
    video.onPlayBackended = function(e) {
    }

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:45
HTML5 Test
Question 36 of 45

Which of the following are valid ways to associate custom data with an HTML5 element?

Note: There may be more than one right answer.

<tr class="foo" data-id-type="4"> ok

<tr class="foo" id-type="4">

<tr class="foo" data-id_type="4"> ok

All of the above.

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 02:00
HTML5 Test
Question 37 of 45

Which following are valid default values for the <input type="date"> HTML5 element?

now

2013-05-30 ok

2013-30-05

today

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:52
HTML5 Test
Question 38 of 45

Which method of HTMLCanvasElement is used to represent image of Canvas Element?

toDataURL() ok

saveAsImage()

saveFile()

exportImage()

Can this question be improved?
Let us know
Continue


Signed in as Artical Writer
Time remaining: 01:25
HTML5 Test
Question 39 of 45

Which media event will be fired when a media resource element suddenly becomes empty?

onerror

onended

onloadeddata

onemptied ok

Can this question be improved?
Let us know
Continue

Signed in as Artical Writer
Time remaining: 01:57
HTML5 Test
Question 40 of 45

Which of the following events is not supported in HTML5?

oninput

oninvalid

ondrop

onreset  ok

Can this question be improved?
Let us know
Continue

Thursday 29 August 2013

oDesk/Upwork MS Word 2007 test answers



Upwork MS Word 2007 test answers
oDesk ms word 2007 test for all job bidder especially Data entry, Article writer.



Ali1214
1.  Which among the following methods would you select when you want to add                                                  protection to parts of a template?
Ans:  Go to the Developer tab, click on Properties in the Controls group and then click any of the Locking options in the Content Control Properties dialog box.

2. Which of the following is/are true about phishing?
Ans: All if the above

3. This question is based upon the figure shown below

In some cases, when lists are combined into one "List," the formatting is not updated. Refer to the picture given above. Which among the following options should be used to update this formatting?
Ans: D

4. Which among the following charts do not have axes?
Ans: Doughnut charts

5. Microsoft named two styles that work in Word 2007 as both character and paragraph types as being ______ styles:
Ans: Linked

6. This question is based upon the figure shown below

 Ans: It ensures that the text is not obscured by binding.

7. With the help of which view will the Watermark not be seen?
Ans: Web Layout view

8. This question is based upon the figure shown below

How will the Message Bar alerts be enabled as shown in the given picture?
Ans: Select Word Options from the Microsoft Office Button. Click on Trust Center, then click Trust Center Settings, and then click Message Bar.
9. Which among the following is not a Bookmark option to sort the list of bookmarks in the document?
Ans: Author

10.  This question is based upon the figure shown below

 Why is the "Different First Page" option used in the Page Setup dialog box as shown in the given picture?
Ans: This option allows you to remove the Page Number from the first page.

11. State whether true or false:
Once a bullet is removed from the "Bullet Library" and it is no longer available in the "Document Bullets" area, the bullet cannot be added back to the Bullet Library.
Ans: False

12.  This question is based upon the figure shown below

Which of the following types of charts are not supported by either Lines or Bars, as shown in the picture?
Ans: Area charts

13. Which among the following features could be used to create a connection to a Shared Network folder?
Ans: Map Network Drive

14. Edit tracking changes are typically formatted in the following manner: (1) deletions—red strikethroughs, (2) additions—green and underlined, and (3) formatting changes are made bold in almost any other desired color. Where in Word 2007 could you set your own custom formatting options for tracking changes?

Ans: Select the Review ribbon and then select the triangle by Track Changes. In the drop-down menu, select "Change Tracking Options" and then set your formatting options in the Track Changes Options dialog box.

15. How will you insert text boxes for a printed form?
Ans: Select the Insert tab, in the Text group, click on Text Box and then select Draw Text Box.

16.     To enter a symbol or special character into your document (to where the cursor is located), which of the following methods could you employ in Word 2007?
Ans:   Open the Insert ribbon. Click Symbol in the Symbols group. A menu will appear with a small selection of symbols. If you don't see the symbol or character you'd like to insert, click More Symbols. Choose the special character (or symbol) that you want and then click Insert and click Close.

17.      You are editing a figure using the Drawing Tools > Format options. Which among the following Shape Fill options in the Shape Styles group adds a solid color and transparency to a shape?
Ans:   More Fill Colors...

18. State whether true or false:
When you save a document as a Web page, the textures and gradients are saved as JPEG files and the patterns are saved as GIF files.
Ans: True

19.     Which among the following options is the reason of text deletion at the insertion point when you type a document?
Ans: The "overtype mode" is turned on in Word options.

20. What is meant by Enhanced ScreenTips?

 
Ans:  Enhanced ScreenTips are larger windows that display more descriptive text than a ScreenTip and can have a link to a Help topic.

21.      This question is based upon the figure shown below

Refer to the given picture. Which of the following Line Numbers should be used when each page has to begin with the number 1?
Ans: Restart Each Page

22. Which keyboard shortcut could be used to switch to Draft View?
Ans: ALT+CTRL+N

23. State whether true or false:

The "Add Assistant" shape option in a SmartArt graphic is available only if an organization chart layout is chosen.
Ans: True

24. Which view(s) could be used to view the Equation placeholders in the Document Views group?
Ans: All of the above

25. State whether true or false:
Any changes that are saved to "Normal.dotm" will be applied to the documents that you create in the future.
Ans: True

26. State whether true or false:
Changing the Author property in the Document Information Panel of an existing document has no effect on the User name setting in the Word Options dialog box.
Ans: True

27. How will you set the default font so that every time you open Microsoft Word it will use the settings that you had selected?
Ans: Select the Home tab, and then click the Font Dialog Box Launcher. Select the font style and size. Click on Default... and then click Yes.

28. Which of the following line-spacing options sets fixed line spacing that Word does not adjust?
Ans: Doubled

29. How will you change the author name in an existing document?
Ans: All of the above

30. State whether true or false:
Microsoft Office programs store some additional information within the digital signature automatically that might not be visible in the current view document.
Ans: True

31. Which among the following options could be used to turn off the Office Clipboard?
Ans: All of the above

32. What does the command "Winword.exe /f MyDocument.docx" mean?
Ans: This command instructs Word to start and immediately open a file named MyDocument.docx.

33. Which among the following is an invalid character to include in a file name?
Ans: All of the above

34. State whether true or false:
Gridlines do not print when a document is printed.
Ans: True

35. Which keyboard shortcut inserts a hyperlink?
Ans: CTRL+K

36. Which among the following wildcards should be used to select any single character?
Ans: ?

37.  This question is based upon the figure shown below

 Refer to the given image. Which option should be selected to convert a professionally formatted equation into an equation on one line?

Ans: C

38. Which of the following is not a Content Control?
Ans: Chart

39. This question is based upon the figure shown below

Ans: Numbering

40. Which among the following is a correct way to make your file "Read-only?"
Ans: Click "Save As" from the Microsoft Office Button. Click on Tools and then click General Options. Select the Read-only recommended check box. Click OK. Click on Save.

41.  Which among the following options should be used to start a bulleted list automatically?
Ans: Type * (asterisk) and then press spacebar or the Tab key.

 42.

Which of the following can be the reason for the appearance of the red X, as shown in the picture?
Ans: All of the above

43. State whether true or false:
ASCII-formatted text contains no formatting information such as bold, italic, or fonts.
Ans: True

44.  State whether true or false:
New text animation effects can be applied in Microsoft Word 2007.
Ans: False

45. Which among the following options should be used to number the cells in a table?
Ans: Select the table cells that need to be numbered. On the Home tab, in the Paragraph group, click on Numbering.


46. Which of the following options repeats a table heading on subsequent pages?
Ans: Repeat Header Rows

47. Which keyboard shortcut could be used to check the spelling of a text file?
Ans: F7

48. Which among the following is not true regarding the use of a pie chart?
Ans: A pie chart should be used when there are more than seven categories.

49. This question is based upon the figure shown below

Refer to the given picture. Which of the following options turns off Enhanced ScreenTips but keeps the ScreenTips still visible?
Ans: B

50. Unlike the other types of styles (paragraph, character, linked, and table), predefined list styles are available when you first create a document in Word 2007.
Ans: False

51. This question is based upon the figure shown below

What is the maximum number of columns that can be created in the Columns dialog box as shown in the picture?
Ans: 13

52.  This question is based upon the figure shown below

Refer to the given image. In Picture1, axes appear on the left side. Which setting should you use to make them appear on the right side, as shown in Picture2?
Ans: Select the Axis Options tab in the Format Axis dialog box. Set the Axis labels: field to High.

53.  Which of the following two paragraphs is/are true for Word 2007?
(1)To show or hide formatting marks in your editing markup — on the Home ribbon, in the Paragraph group, click the Show/Hide button.
(2) The Show/Hide button will not hide all the formatting marks in the document if you selected those marks that are to be displayed at all times (such as paragraph marks, tab characters, hidden text, optional hyphens, object anchors, or spaces). To turn off any or all of these selected formatting marks, follow this procedure: Click the Microsoft Office Button and then click Word Options. Then Click Display. Under "Always show these formatting marks on the screen," clear the check boxes for any formatting marks that you do not want to show at all times in your documents.
Ans: Both (1) and (2)

54. This question is based upon the figure shown below

 In the given picture, the "Washout" option has been selected. What purpose does it serve?
Ans: It lightens the picture so that it does not interfere with the text.

55. The default installation of Word 2007 includes several built-in character styles. Which of the following is NOT one of the default, built-in character styles:
Ans: Special Emphasis

56. What steps should be followed to replace a shape with other shape?
Ans: Select the shape to be changed. Select the Format tab; use the "Change Shape" button in the Shape Styles group.

57. Just as in Word 2003 or prior Word versions, the default standard view for Word 2007 is the Draft view (and is still also called the Normal view in Word 2007):
Ans: False

58. This question is based upon the figure shown below

 What is the purpose of the "Demote" button as shown in the diagram?
Ans: It increases the level of a selected bullet or a shape.

59. Which feature(s) should be selected in order to find and remove hidden data and personal information in Office documents?
Ans: Document Inspector

60. Which keyboard shortcut is used to make the text size smaller?
Ans: CTRL+SHIFT+<

61.  Which among the following options will you use to add a command to the Quick Access Toolbar?
Ans: All of the above

62. Which option(s) should you select to remove a chart or axis title from a chart?
Ans: To remove an axis title, select the Layout tab. In the Labels group, click on Axis Titles, click the type of axis title, and then click None.

63.  Which among the following macro settings is meant for developers only?
Ans: Trust access to the VBA project object model.

64. State whether true or false:
A building block can be added to as many galleries as you want.
Ans: True

65. Which of the following is/are true about phishing?
Ans: It is an online fraud technique used by criminals to lure users into disclosing their personal in

Test URL




  • Word Fundamentals and Interface
  • Interface Customization
  • Forms and Templates
  • Page Layout
  • Writing and Formatting Text and Equations
  • Charts
  • Working with Graphics
  • Security and File Handling
  • Working with Tables, References, and Lists
  • Keyboard Shortcuts/Viewing and Navigating

new logo