Search Box

Showing posts with label microsoft excel 2007 oDesk test answer 2013. Show all posts
Showing posts with label microsoft excel 2007 oDesk test answer 2013. Show all posts

Saturday, March 2, 2013

Joomla 1.5 oDesk Test Answer 2013






1) The index.php file is a combination of HTML and PHP code.
Odesk test answer: True

2) What is the default super administrator account for Joomla called?
Odesk test answer: Administrator


3) Which of the following PHP directives are important to Joomla execution to define an alternate compression library if the standard library is not available?
Odesk test answer: extension_dir

4) Which of the following files is archive and contains the actual CB component that you must install into Joomla while downloading CB?
Odesk test answer: com_comprofiler

5) Which option will you choose to set the site metadata for the installed website?
Odesk test answer: Global Configuration

6) What will happen if we set the SSL enabled option to On?
Odesk test answer: This option will make the link from the menu begin with an https://

7) The core editor events apply to plug-ins that provide editor functionality such as TinyMCE or XStandard Lite.
Odesk test answer: True

8) Which PHP file does the index.php file load to provide the menu bar to the administrator interface?
Odesk test answer: Toolbar.php

9) Which of the given database systems is supported by Joomla?
Odesk test answer: Mysql
10) Which of the following is the default editor of Joomla?
Odesk test answer: TinyMCE
11) Joomla provides an abstracted method called getEscaped() that returns the escaped string regardless of the target database.
Odesk test answer: False

12) From which package are the classes (i.e JSite, JAdministrator and JInstallation) which make up the Joomla CMS application extended?
Odesk test answer: Installer

13) What is not true about JoomlaXplorer?
Odesk test answer: None of the above

14) Which of the following is a system event?
Odesk test answer: OnDisplay

15) Which Joomla file provides the central logic of the template, including any module and component display?
Odesk test answer: Index.php

16) When will you use SMTP authentication mail settings?
Odesk test answer: When you want to use an internal mail server

17) What do you understand by the type of error?
Odesk test answer: It means that STRICT_ALL_TABLES is enabled

18) Which path variable holds the path of the currently executing application?
Odesk test answer: All of the above

19) Which user events occur with plug-ins that are installed for the front end of the system?
Odesk test answer: Both a and b

20) Which type of positioning elements define a concrete area such as a p, td, div or table in a CSS file?
Odesk test answer: Block elements

21) Which of the following files does the "/includes" directory not contain?
Odesk test answer: None of the above

22) Which option will you select to install or to add the module to your website?
Odesk test answer: C

23) Why does Joomla use templateDetails.xml files?
Odesk test answer: All of the above

24) Which of the following events is activated after content rendering is complete for content type plug-ins?
Odesk test answer: OnAfterDisplayContent

25) All the Joomla settings are contained within a PHP class called JConfig.
Odesk test answer: True

26) In which PHP file is the central configuration data for Joomla contained?
Odesk test answer: configuration.php

27) What is not true about the MD5 hash value?
Odesk test answer: Each password in Joomla is stored as a MD5 hash value

27) There are two root classes for the Joomla framework: JFactory and JVersion.
Odesk test answer: True

28) Which option will you select to find unpublished articles?
Odesk test answer: Article manager

29) What do you understand from the following code?
Odesk test answer: SQL statement is executed against the Joomla database to find empty data fields

30) Which SEO settings will you activate to make Joomla article URL shown in picture A appear as shown in picture B?
Odesk test answer: B

31) In which option are errors, warnings and references logged?
Odesk test answer: None of the above

32) Which type of files can media manager not upload?
Odesk test answer: None of the above

33) Which among the following switches display the current version of PHP?
Odesk test answer: v

34) The Joomap extension uses the style-sheets from the currently selected default template to display the sitemap in the site style.
Odesk test answer: True

35) Which type of server technology is used by Joomla?
Odesk test answer: All of the above

36) Which of the following is not true about the FrontPage Manager?
Odesk test answer: You cannot select your content for the FrontPage from all the contents

37) What happens if the Text Separator Field is left empty while using the breadcrumbs module in the module manager?
Odesk test answer: None of the above

38) Which of the following support libraries must you include when you are doing a manual compile of PHP to use with Joomla?
Odesk test answer: All of the above

39) What is the role of the template metadata file in the system?
Odesk test answer: It contains the basic authorship information

CSS oDesk Test Answers 2013



Question 1:   Which of the following is true for a class selector? 

a.            It uses a hash as the separator symbol 
b.            It applies the style to only the first element defined with that style 
c.            It applies the style to only the last element defined with that style 
d.            It applies the style to all the elements defined with that style



Ans:D 

Question 2: Which of the following does not apply to external styles? 

a.            Clean separation of design & content 
b.            Minimal code duplication 
c.            Highest priority 
d.            Reduces page download time 
Ans: C 

Question 3: Read the following Code: 
BODY { 
Background: white url(“bar.gif”); 
Background-repeat: repeat-y; 
Background-position: center; 
What will be the output of this code? 

a.            Image bar.gif will be tiled vertically in the background in the center of the page. 
b.            Image bar.gif will be tiled horizontally in the background in the center of the page 
c.            Image bar.gif will be displayed in the center of the page 
d.            Image bar.gif will be stretched in the center of the page 
Ans: A 

Question 4: Which of the following is not a valid text-decoration option? 

a.            Text-decoration :line-through 
b.            Text-decoration :in-line 
c.            Text-decoration :overline 
d.            Text-decoration :underline 
e.            Text-decoration :none 
Ans: B 

Question 5: You defined some links as follows: 
A:link{color:green} 
A:visited{color:blue} 
A:hover{color:red) 
A:active{color:black} 
What will be the color, when the mouse goes over a link? 

a.            Green 
b.            Blue 
c.            Red 
d.            Black 
Ans: B 

Question 6: The following is a style definition: 
Td#aln 
{text-align:center; 
color:blue} 

How will you refer to this style in your web page? 

•                     A. by using the class attribute in a td cell 
•                     B. by using the id Attribute in a td cell 
•                     C. by using the class attribute in any html element which supports the class attribute 
•                     D. by using the id attribute in any html element which support the id attribute 
Ans: B 

Question 7: Which of the following is not a valid property of an aural style sheet? 
a.            Cue 
b.            Voice-family 
c.            Load 
d.            Speak 
Ans: C 
Question 8: Your website displays some articles on java programming. The articles contain blocks of java code as well. If you want to leave ‘1 cm' space above and below the code blocks, you would use: 

a.            Code{margin:1cm} 
b.            Code{margin-top:1cm; margin-bottom:1cm} 
c.            P{margin:1cm} 
d.            P{margin-top:1cm; margin-bottom:1cm} 
Ans: B 
Question 9: 

Text text text text 
A      Text text 
Sentence text text 
Inside text text 
A         text ext 
Text     text text 
Text text 
Text text text text 

You have and article of 100 lines. If for instance, you want to describe the theme with a few lines inside the text highlighted separately as show in the image which of the following property will you use? 

a.            Outline 
b.            Display 
c.            Float 
d.            Merge


Ans: A 

Question 10: You are fetching customer names from a database. The names in the database are mostly in lowercase. What is the name of the text property which will facilitate capitalization of these names? 

a.            Text-mode 
b.            Text-transform 
c.            Text-decoration 
d.            Text-shadow 
e.            Text-case 
Ans: B



Question: 11: Here is one of the styles defined in your webpage: 
.redborder 
border-color:#ff0000; 
border-width:thin thick 
What type of border will be displayed if one of the paragraphs defined in the webpage uses this style? 

a.            This will display a red border with thin top and bottom 
b.            This will display a red border with thick top and bottom 
c.            This will display a red border with thick left and right 
d.            This will not display any border


Ans: D 

Question 12: Which of the following are correct values of the overflow property? 
a.            Visible 
b.            Hidden 
c.            Scroll 
d.            Auto 
Ans: A,B,C,D 

Question 13: Which of the following is correct? 

a.            Blockquote{text-padding:2em 4em 5em} 
b.            Blockquote{padding-x:2em 4em 5em} 
c.            Blockquote{padding-y:2em 4em 5em} 
d.            Blockquote{padding:2em 4em 5em} 

Question 14: Which element property is required to define internal styles? 

a.            Class 
b.            Style 
c.            span 
d.            link 
Ans: B 

Question 15 Which style property can be used to display only some part of an image? 

a.            Snap 
b.            Clip 
c.         Scroll 
d. Visible

Ans: C


Question 16 Which of the following is not true for a style sheet? 

a.            A style sheet defines how an html element will be displayed 
b.            Internal and external style sheets can not be used together 
c.            Multiple style definitions will cascade into one 
d.            The same style sheet can be used by many html pages 
Ans: A 

Question 17 Which of the following font properties deals with aspect value? 

a.    Font-weight 
b.    Font-variant 
c.     Font-size-adjust 
d.    Font-size

Ans: C


Question 18: Consider this style definition: 
P i{color:red} What do you understand about the contextual selector used above? 

a.            All the text within a paragraph will be italicized 
b.            All the italic text in the page will have red color 
c.            All the page text under 
tag and tag will be red 
d.            All the italic text with in a paragraph will be red


Ans: B 

Question 19: Background-position sets the position of the background image what happens if its value is 0% 0%? 

a.            Image will have zero width and height so it will be hidden. 
b.            Image will be positioned at the upper left corner. 
c.            Image will be positioned at the lower right corner 
d.            None of the above


Ans: D 
Question 20: You want to increase the space between the lines in all you paragraphs. What will you use? 

a.            P{width:1cm} 
b.            P{height: 1cm} 
c.            P{line-height:1cm} 
d.            P{line-width:1cm} 
Ans: C 

Question 21: The default value for the overflow property is: 

a.            Scroll 
b.            Visible 
c.            Hidden 
d.            Auto 
Ans: C* 

Question 22: Which of the following will set the page size to 8.5 inches x 11 inches with 2cm margin al all sides? 
a.            @page {width:8.5in;Height:11in; margin:2cm} 
b.            @page {width:8.5in x 11in; margin:2cm} 
c.            @page {size:8.5in 11in; margin:2cm} 
d.            @page {size:8.5in 11in; margin:2cm} 
Ans:B



Question 23: Which of the following is not a valid list property? 
a.            List-style-type 
b.            List-style-position 
c.            List-style-image 
d.            List-style-align 
Ans:A



Question 24: Which of the following is not a pseudo class? 
       a.    Link 
       b.    Active 
       c.     Lang 
       d.    Ins 
Ans:D



Question 25: Which of the following Statement is correct? 

a.            When using css, positioning can be absolute, relative or dynamic 
b.            The float Property for text/images can be left, right or center 
c.            The values of visibility can be true or False 
d.            The display Property sets how an element is displayed 
Ans:B



Question 26: The Font “Times New Roman” has an aspect value of 0.46 .What do you understand from this? 

a.            When font size is set to 46px. The height of the letter ‘x' will be 100px 
b.            When font size is set to 100px. The height of the letter ‘x' will be 46px 
Ans:A



Question 27: The font-family property is used to specify a: 
a.            Family name 
b.            Generic Family 
c.            Family name and /or generic Family 
Ans:A



Question 28: Paged media differ from continuous media in that the content of the document is divided into one or more pages. When you set the dimensions, which of the following will be applied? 

a.            The dimensions of the page area are the dimensions of the page box minus the margin area 
b.            The dimensions of the page area are the dimensions of the page box plus the margin area 
c.            The dimensions of the page area are the dimensions of the page box and margin area does not affect it. 
d.            None of the above 
Ans:D



Question 29: Which of the following is not a correct keyword value for the display property? 

       a.    Expended 
       b.    Inline-table 
      c.     Table-row 
      d.    Table-column-group 
Ans:D



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

a.            Orphans 
b.            Widows 
c.            Bottom 
d.            Overflow 
e.            None of the above 
Ans:E



Question 31: Which of the following is correct with regard to comments in a style sheet? 

a.            Comments can appear outside the style definition only 
b.            Comments start with// 
c.            Comments end with */ 
d.            Comments are not permitted in a style sheet 
Ans:C



Question 32 Which of the following border styles is not correct? 
      a.    Border-style: ridge 
      b.    Border-style : outset 
      c.     Border-style : dotted 
      d.    Border – style : matted 
Ans:A



Question 33: How will you display text as a superscript? 

a.            Vertical-align: super 
b.            Vertical-align: superscript 
c.            Vertical-align : top 
Ans:A



Question 34 :The following is a style definition: 

#styl2 
Color: red; 

How will you refer to this style in you web pages? 
a.            By using the class attribute in a td cell 
b.            By using the id attribute in a td cell 
c.            By using the class attribute in any html element which supports the class attribute 
d.            By using the id attribute in any html element which supports the id attribute. 
Ans:C



Question 35 Which of the following is true for an ID selector? 

a.            It uses a dot as the separator symbol 
b.            It applies the style to only the first element defined with that selector 
c.            It applies the style to only the last elements defined with that selector 
d.            It applies the style to all the elements defined with that selector 
Ans:B



Question 36: Which of the following values are correct for Font-style? 

a.            Normal , wider, narrower 
b.            Normal , italic, oblique 
c.            Normal, bold, lighter 
d.            Small , medium , large 
Ans:D 

AutoCad 2007 oDesk Test Answers 2013
























01.Question:  You can attach a digital signature to which of the following file types?
ANS: All of the above

02.Question: Which option is not available in AutoCAD2007 to repair a damaged drawing file?
ANS: Check

03.Question:  Which of the following settings are saved when you name and save a view?
ANS: All of the above

04.Question:  Which option is disabled when a nested reference is selected as shown in the given picture?
ANS: D

05.Question:  Which of the following is not a type of action override?
ANS:  C. Angle offset

06.Question:  Which command is used on picture A to create a mesh or to acheive the result of picture B?
ANS:  C. RULESURF

07.Question:  Which option you will choose to create solid filled areas?
ANS:  C. Wide polylines or donuts

08.Question:  Dimensional input is available for ARC, CIRCLE, ELLIPSE, LINE, and PLINE.
ANS:  A. True

09.Question:  In what type of text can fields not be inserted?
ANS: C. Tolerances

10.Question:  Which of the following option can not be offset?
ANS: C. Construction lines (xlines) and rays

11.Question:  What dose b stand for in the given example when you tum the automatic save option on as shown in the given picture?
ANS: C. b is a random number

12.Question:  Which type of hatching style is shown in the given picture?
ANS: C. Ignore

13.Question:  What is not true about live sectioning behavior?
ANS: C.

14.Question:  Plot styles are not available for objectswith the Jitter edge modifier applied.
ANS: B. False

15.Question:  All settings for the sun encept geographic location are saved per drawing, not per viewport.
ANS: A. True

16.Question:  Break, chamfer, fillet, lengthen and offset editing comands can be used on Multilines.
ANS: B. False

17.Question:  Which keyboard shortcut will you select to toggle polar tracking?
ANS: C. F9

18.Question:  Tool palaette files have an.xtp file extension.
ANS: B. False

19.Question:  When you use grips to edit an object, what type of information dose the dimensional input tooltip display?
ANS: D. All of the above

20.Question:  When dose a temporary history entry state occur?
ANS: C. Both a and b

21.Question:  Which among the following types of coordinates displays update as you move the cursor?
ANS: D. All of the above

22.Question:  What can you do with the DesignCenter?
ANS: C. You can update a block definition

23.Question:  In which conditions, can you make a layer, the current layer?
ANS: C. When it is the default layer

24.Question:  As shown in the picture, the symbol for projected tolerance is preceded by a height value, which specifies the minimum projected tolerance zone.
ANS: B. False

25.Question:  Which option you will choose to show or hide light glyphs?
ANS: C. Click Tools menu > Palettes > Properties

26.Question:  Which of the following properties is not included within the Reference Manager?
ANS: D. Found path

27.Question:  Which of the following is not part of the Information title block?
ANS: C. Size of the drawing

28.Question:  Which type of grip tool is shown in the given picture?
ANS: D. None of the above

29.Question:  Which of the following layer properties is not checked by the layer plug-in?
ANS: A. Plot style mode

30.Question:  When can an Xref icon displayed in the lower right comer of the application window as shown in the picture?
ANS: A. When Xrefs are attached to the drawing

31.Question:  Which of the following is not a type of dimensioning?
ANS: C. Ordinate

32.Question:  Which of the following is the default mode state for shadows?
ANS: D. None of the above

33.Question:  Which of the given options displays the layer properties manager in the given picture?
ANS: D. None of the above

34.Question:  Which of the following wild card characters you will use to match any single character?
ANS: D

35.Question:  Autocad dose not provide Plotter drivers to which type of files?
ANS: B. Raster file formats

36.Question:  Menu swapping is not supported for which of the following interface elements?
ANS: D. None of the above

37.Question:  Which option meanes that the sheet is in a special state as shown in the given picture?
ANS: A. A

38.Question:  Which type of the section object grip dose option A display, as shown in the picture?
ANS: A. Base grip

39.Question:  The attribute extraction wizard creates a file with a.blk file extension.
ANS: A. True

40.Question:  Which of the following types of files can be used as maps?
ANS: C. PNG

Adobe Photoshop CS3 oDesk Test Answer 2013
















ANSWER SET 01 :
Question:   Which of the following is not true about Filters ?

Ans: d.    None of the above
 
Question: State whether True or False:
A working space is an intermediate color space used to define and edit color in Adobe applications.
Ans: b.    False

Question: State whether True or False:
The Out Of Gamut option works only on RGB and Lab images.

Ans: a.    True

Question: Channels can not be added to which of the following image modes?
Ans: c.    Bitmap

Question: Which of the following is not a kind of text type?

Ans: d.    Line type  

Question: A Motion Picture film has a frame rate of how many fps?
Ans: d.    24

Question: State whether True or False:
You cannot arrange the stacking order of the Auto slices.

Ans: a.    True

 Question: Refer to the given image.
Which of the given options displays the Modal control in the Actions palette?
Ans: d.    D

Question: State whether True or False:
The mask created by the Replace Color command is permanent.

Ans: b.    False
This question is based upon the figure shown below

Question: What is meant by Contact Sheet?

Ans: Contact Sheets let you easily preview and catalog groups of images by displaying a series of thumbnails on a single page


 Question: Refer to the given image.
Which of the following options displays Temporary Work Path in the Paths palette?
Ans: b.    B

 Question:
State whether True or False:
Changing units on the Info Palette automatically changes the units on Rulers.
Ans: a.    True


 Question: Which type of images are resolution-dependent?
Ans: b.    Vector images

 Question: This question is based upon the figure shown below Question:
Which option is not turned off by the Extras command in the View menu?

Ans: d.    It does not turn off the Rulers feature

 Question: Refer to the given image.
In which of the given instances, a caution icon appears next to the layer comp name as shown in the picture?

Ans: d.    All of the above


 Question: Refer to the given image.
Which of the given options displays left indent in the Paragraph palette?

Ans: b.    B


Question: Which of the following features is supported by the EPS file format?
Ans: a.    It supports the Grayscale and Bitmap color modes

Question: Which option will you select to display a file at 100% size?

Ans: a.    Choose View > Actual Pixels

 Question:What is the use of the Make Work Path command in the Paths palette ?

Ans: b.    It can alter the shape of a selection

 Question: Refer to the given image.
Which of the following Lock options in the Layers palette prevents modification of the layer's pixels using the painting tools?

Ans: b.    B


Question: Refer to the given image.
Which of the given options displays the Set Tsume option in the Character Palette?

Ans: b.    B

 Question: Refer to the given image.
When will the Dynamic shortcuts appear in the Character Palette Menu as shown in the picture?

Ans: d.    All of the above


 Question: Refer to the given image.
Which option adjusts Highlights in the Levels dialog box?
 
Ans: c.    C


 Question: Which of the following is not true about the Curves dialog box?

Ans: b.    The Curves dialog box lets you adjust up to 14 different points throughout an image's tonal range *



 Question: Refer to the given image.
In which format will you save your document to preserve the Perspective Plane Information in an image while working with the vanishing point, as shown in the given picture?
Ans: d.    All of the above

Question: Which of the following is not a Color Adjustment command?
Ans: a.    Adjustment command

Question: Refer to the given image.
Which of the following options displays the Spot Channels in the Channels palette?
Ans: b.    B

Question: Which of the following is not a type of Variable?
Ans: a.    Image variables

 Question:
Which keyboard shortcut (windows) will you choose to permanently Clear History (no Undo)?
Ans: d.    Alt + Clear History

 Question: Which among the following blending modes is available only for the Apply Image and Calculations commands?


Ans: c.    Both a and b


Question: Which among the following Slices cannot be divided?
Ans: c.    Layer-based slices

 Question: Which among the following is not a Duotone mode type?
Ans: a.    Pantone

 Question: State whether True or False:
You cannot create Work paths from the fonts that do not include the outline data.
Ans: a.    True

Question: Refer to the given image.
What is the colored box in the Navigator Palette known as?
Ans: d.    Proxy preview area


Question: Refer to the given image.
Which of the given options displays Converts to Timeline mode in an Animation palette?
Ans: d.    D

 Question: State whether True or False:
You cannot change the order of the Vector masks or working paths in the Paths palette.
Ans: b.    False

Question:
Which of the following Filters cannot be applied to a Smart Object?
Ans: c.    Pattern Maker

Question:
Which keyboard shortcut (windows) will you choose to select the History Brush tool?
Ans: a.    Y

Question:
Which among the following files, saved in the Adobe Photoshop format, is used by the filter to create the displacement maps?
Ans: c.    Flattened file

 Question:
Which of the Saving commands is available for an image that is managed by a Version Cue Workspace?
Ans: c.    Check In


ANOTHER SET
Question:   Which of the following file formats supports embedded color profiles?
Ans:c. TIFF

Question:Which Filter embeds a Digital watermark into an image to store a copyright information?
Ans:b. Digimarc filters

Question:  
Color Dodge, Color Burn, Lighten, Darken, Difference, and Exclusion blending modes does not work on Lab images.
Ans:a. True

Question:   Which keyboard shortcut( windows) will you choose for Auto leading?
Ans: c. Control+Shift+ALT+A

Question:The Healing Brush Tool cannot be applied to video or animation frames.
Ans:b. False

Question:You cannot create Work paths from the fonts that do not include the outline data
a Ans:. True

Question:   Which icon indicates Type 1 kind of fonts?
Ans:b. B

ANOTHER SET

Question: Which among the following QuickTime Video formats is supported by Photoshop extended?
Ans:d. All of the above

Question: Which of the following options displays Temporary Work path in the Paths Palette?
Ans: b. B

Question:   The Rotate canvas command does not work on which of the following?
Ans:d. All of the above.

 Question: Variable names contain spaces and special characters
Ans: a. True

Question:   Channels cannot be added to which of the following image modes?
Ans: c. Bitmap

Question: Which type of character is generated by Photoshop when the font does not include Superscript or subscript characters?
Ans: c. Both a and b

Question:   Which among the following slices cannot be divided?
Ans: c. Layer-based slices

Question:   Which option, when in a checked state, displays a message whenever you opened an untagged document?
Ans: c. C

Question:   Layer styles cannot be applied to which of the following options?
Ans: d. All of the above.

Question: Which option will you select to apply the Extrude filter?
Ans: a. Select Filter>Stylize>Extrude.

Question:   You cannot transform the background layer
Ans: a. True

Question: Which of the following Slices created with the Slice Tool?
Ans: b. user slices

Question: Why do we select Remember Palette Locations option as shown in the given image?
Ans: a. To display palettes on their last locations on startup


Question: Which option will you select to export layers?
Ans: a. Choose File>Scripts>Export Layers to Files

Question: With which of the given option does the Signal Strength Meter appear?
Ans: b. It appears when you read watermark.

Question: Which option will you choose to convert Document Colors into another profile?
Ans: B. Choose Edit>Convert to profile

Question:The individual Histograms in the all Channels View does not include which of the following?
Ans: d. All of the above

Question: Which file format saves a documents of any size as well as preserves all the Photoshop features?
Ans: b. PSD

ANOTHER SET           

Question: Which of the following is not true about multichannel mode?
Ans:d. None of the above

Question: The Match Color command works only in the RGB modes.
Ans: a. True

 Question: Which among the following files, saved in the Adobe Photoshop format is used by the filter to create displacement map?
Ans: d. Flattened file


Question: Which among the following lock options in the Layers palette prevents modification of the layer's pixels using the painting tools?
Ans: b. B

Question: Video layers do not work in the Frame mode.
Ans: a. True
 

Question: Which option adjusts Highlights in the Levels dialog box?
Ans: c. C

Question: Which among the following blending modes is available only for the Apply image and Calculations commands?
Ans: c Both a and b


 Question: Hanging Punctuation control the alignment of the punctuation marks for a specific paragraph.
Ans: a. True


Question: Which of the given options displays Converts to Timeline mode in an animation palette?
Ans: d. D

Question: Which option will you choose to select all layers of a similar type?
Ans: b. Select one of the layers. Right click and choose Select Similar Layers from the list.

Question: Auto Blend Layers is available for which of the following Modes?
Ans: c.  both a & b



Question: Which of the given options displays the Modal control in the Actions palette?
Ans:d. D

Question: Which animation mode shows the frame duration and Keyframed layer properties of the videos and animations in a time line?
Ans: a. Timeline

Question: You cannot change the order of the vector masks or working paths in the path palette.
Ans: a. True.

Question: Which option will you select to remove an effect from a style?
Ans: a. In the Layers palette, drag the Effects bar to the Delete icon.

Question: Which among the following is not a right option for selecting web-safe color from the Color Palette?
Ans: c. Choose Current Color from the Color Palette Menu.

Question: Which type of information is not displayed by the info palette?                                                    
Ans: d. none of above.

Question: Photoshop supports a maximum pixel dimension of 300,000 by 300,000 pixels per image.
Ans: a. True

Question: What is the use of the Make Work Path command in the Paths Palette?
Ans: c. Both a and b

Question: When you create a new image with the transparent content, the image does not have a background layer.
Ans: a. True
 
 Question: In which of the given instances, a caution icon appears next to the layer comp name as shown in the picture?
Ans: d. All of the above.

Question: Which option will you choose to Refresh a Histogram?
Ans: d. All of the above.

Question: Which option will you select to convert Types to Shapes?
Ans: d. Both b and c

    
Question: Which of the given options displays left indent in the paragraph palette?
Ans: b. B

Question: Changing units on the info palette automatically changes the units on Rulers.
Ans: a. True

Question: Which of the given options displays an Action Safe Area?
Ans: a. A

Question: Which of the given options displays the Set Tsume option in the Character Palette?
Ans: b. B

Question: Which option will you choose to convert Document Colors into anther profile?
Ans: b. Choose Edit>convert to profile

Question: Which view will you choose to display a Histogram with no Controls or Statistics?
Ans: b. Compact view

Question: Which among the following is/are not true about the Fill pixels (Drawing mode) as shown in the picture?

Ans:c. Both b and c

 Question: You cannot transform the background color.
Ans: a. True.

Question: Which of the following is not true about a Droplet?
Ans: d. none of the above.

 Question:The mask created by the Replace Color command is permanent.
Ans: b. False


Question: Which keyboard shortcut (windows) will you choose to select the History Brush tool?
Ans: a. Y

Question: You cannot arrange the stacking order of the Auto Slices
Ans: a. True

Question:  A working space is an intermediate color space used to define and edit color In Adobe application.
Ans: a. True

Question: Which type of images are resolution-dependant?
Ans: a. Bitmap images.

Question: What do you mean by Kerning?
Ans: a. It is the process of adding and subtracting spaces between specific pairs of characters.


Question:     Which file format can be used to save Lab images?
Ans: d. All of the above.


Question:     Which among the following methods adds pixels by averaging the color values of the surrounding pixels and produces medium-quality results?
Ans: a. Bilinear



Question:    When is the Canvas Extension Color Menu not available as shown in the given image?
Ans: a. When an image does not contain a background layer.
 
ANOTHER SET

Question:   Which of the Saving commands is available for an image that is managed by a Version Cue Workspace?
Ans: Check In

Question:   Which option will you choose to select all layers of a similar type?
Ans: All of the above

Question: Which of the following Filters cannot be applied to a Smart Object?
Ans: Pattern Maker

Question: With which of the given options does the Signal Strength Meter appear?
It appears when you choose 'merge to hdr command'

Question:   Channels can not be added to which of the following image modes?
Ans: Bitmap

Question: Which among the following Modes does not support layers?
Ans: All of the above

Question:   Which of the following is not true about Filters?
Ans: None of the above

Question:   Which of the following is not true about the Curves dialog box?
Ans: The Curves dialog box lets you adjust up to 14 different points throughout an image's tonal range

Question:   Which of the following Slices is created with the Slice Tool?
Ans: User slices

Question:   Which of the following features is supported by the EPS file format?
Ans: It supports the Grayscale and Bitmap color modes

Question: Which among the following blending modes is available only for the Apply Image and Calculations commands?
Ans: Both a and b

Question:   What is the use of the Make Work Path command in the Paths palette ?
Ans: It can alter the shape of a selection

Question:   Which type of information is not displayed by the Info Palette?
Ans: It does not display the opacity of the current layer

Question:   Which among the following is not a right option for selecting a web-safe color from the Color Palette?
Ans: Choose Current Color from the Color Palette Menu

Question:   Anti-aliasing option is available for which of the given Tools?
Ans: All of the above

Question:   Which of the following options displays the Spot Channels in the Channels palette?
Ans: B

Question:   What happens when Use Legacy is selected as shown in the given picture?
Ans: It is used to apply proportionate (nonlinear) adjustments to image pixels

Question:   Which option will you select to open the Levels dialog box?
Ans:Choose Image > Adjustments > Levels

Question:   Which type of images are resolution-dependent?
Vector images

Question:   Which Liquify Tool is used to reconstruct a part of a distorted image?
Ans: A

Question:   In which Format will you save your file to preserve the Alpha channels?
Ans: All of the above

Question:   Which of the following is not a kind of text type?
Ans: Line type

Question:   Which option will you select to convert Types to Shapes?
Ans:Both b and c


Question:   The mask created by the Replace Color command is permanent.
Ans: FALSE


Question:   Which of the following Layer properties can be animated?
Ans: All of the above

Question:   Which View will you choose to display a Histogram with no controls or statistics?
Ans: All of the above

Question:   Which of the given options displays left indent in the Paragraph palette?
Ans: B

Question:   Which keyboard shortcut (windows) will you choose to group Layers?
Ans: Control + G

Question:  Which among the following QuickTime Video formats is supported by Photoshop extended?
Ans: All of the above

Question:   The Rotate Canvas command does not work on which of the following
Ans: All of the above

Question:   When will the Dynamic shortcuts appear in the Character Palette Menu as shown in the picture?
Ans: All of the above

Question:   Hanging Punctuation controls the alignment of the punctuation marks for a specific paragraph.
Ans: TRUE

Question:    Which of the following is not a Color Adjustment command?
Ans: Adjustment command




Question:   Which keyboard shortcut (windows) will you choose to close a Path?
Ans: None of the above


Question:   By default, Masks applied to Smart objects are linked to Smart object layers. .
Ans: FALSE

Question:   Changing units on the Info Palette automatically changes the units on Rulers.
Ans: TRUE

Question: A working space is an intermediate color space used to define and edit color in Adobe applications.
Ans: FALSE

Question:   Which option will you select to remove the existing profile from the document in the given image?
Ans: C


Question:   You cannot change the order of the Vector masks or working paths in the Paths palette.
Ans: FALSE


Question:   The Color Replacement Tool does not work in which of the following Image modes?
Ans: All of the above


Question:   In which of the following Modes can you draw while working with the Shape or Pen tools?
Ans: All of the above


Question:   The Out Of Gamut option works only on RGB and Lab images
Ans: TRUE

microsoft excel 2007 oDesk test answer 2013





SET 01 
Question: You have created a worksheet which consists of confidential data. You want that these values, although present in the worksheet, should remain hidden and as a result the cells containing this data should appear blank in the worksheet. Which method will help you do this?
Ans:   Select the cells, open the Window menu and click on Hide

 
Question: The figure shows a view of the Standard Toolbar. What function is performed by the button marked by the letter 'Z'?
Ans:   It copies the formatting properties from one cell to another

Question: The figure shows the AutoFit Selection menu option. What function does it perform?
Ans:   It automatically resizes the column height and width to the minimum necessary to fit the contents of the selected cell

Question: The figure shows a view of the Standard Toolbar. What function is performed by the button marked by the letter 'A'?
Ans:   It is used to add a hyperlink
 
Question: How does the AutoComplete feature in Excel help you save time?
Ans:   It automatically completes abbreviated words  

Question: Which of the following options would be used if you need to insert a 77889867810070809 number in a cell?
Ans:   Apply the Text Format to empty cells, and then type the numbers

Question: What is the quickest way to select all the columns on a worksheet?
Ans:   Click on the gray rectangle on the upper left corner of the worksheet where the column headings and row headings meet

Question: Suppose the value in cell A1 is John and B1 is Smith then which of the following function you will use to get the John_Smith in C1 cell?
Ans:   A_B

Question: How can you select all the blank cells in your worksheet?
Ans:   This must be done manually as it is not automated through any built-in feature

Question: Which of the following functions would return a value of 8?
Ans:   b and c

Question: You select the row headings 10, 11 and 12 and then choose the menu option Insert->Rows. What will happen?
Ans:   3 new rows will be inserted after row 9

Question: The figure shows a view of the Drawing Toolbar. What function is performed by the button marked by the letter 'X' ?
Ans:   It inserts a Diagram or Organization Chart in the worksheet

Question: When using Document Workspaces, you cannot work directly on the Document Workspace copy, but you can work on your own copy which you can update periodically with changes that have been saved to the copy on the Document Workspace site.
Ans:   TRUE
 
Question: The figure shows an Excel worksheet. If you want to freeze the row showing the months (row 1) and the column showing the products (column A), what should you do?
Ans:   Select the cell A1 and click on Freeze Panes under the menu Window->Freeze Panes
Question: You start Microsoft Excel and you do not want it to automatically run a macro upon starting. What will you do?
Ans:   Hold down the CTRL key during startup

Question: Which of the following Date and Time function you will use to return the serial number of the last day of the month before or after a specified number of months?
Ans:   DATEVALUE

Question: The figure shows a view of the Standard Toolbar. What function is performed by the button marked by the letter 'Y'?
Ans:   It adds up the values in the selected cells

Question: Which of the following errors appears when an invalid argument is passed while converting a number from one number system to another system?
Ans:   #N/A

Question: Which of the following function you will use to find the highest number in a series of numbers?
Ans:   MAX(B1:B3)

Question: You have entered 4/6 as data in a cell without applying any formats to it. By default, Excel will treat this data entry as a:
Ans:   Date

Question: AutoFilter drop-downs are automatically added in the header row of a list when the list is created.
Ans:   TRUE

Question: What does the NOW() function returns?
Ans:   Returns the serial number of the current date and time

Question: Which toolbar is shown in the figure?
Ans:   Forms toolbar

Question: When you clear the contents from a cell, the formatting of the cell is also lost.
Ans:   FALSE

Question: You define a print area in your worksheet, but later you select a smaller range of cells to print and then click Selection under the menu File->Print->Selection. What will happen?
Ans:   b
Question: What will be the output of the function IF(ISNA(MODE(B1:B4)),0,MODE(B1:B4)) when it is applied to the data series given below?
Ans:   #N/A  

SET 2
Question: Which among the following is not true regarding a calculated column?
ans: d. Additional formulae cannot be entered in a calculated column as exceptions
Question: when a part of a formula is replaced with its calculated value, it cannot be restored.
ans: a. True.

Question: When you sign the stamp signature line in an office document, you add both a visible stamp and a document signature.
ans: a. True
Question: Refer to the given image, what will be the result if the formula =B3&”, ”&A3 is applied to the given table?
ans: d. Both b and c

Question: How will you reverse the direction of a Smart art graphics?
ans: c. Under SmartArt tools, on the Design tab, in the Create Graphic group, click on Right to Left

Question: Which of the following chart have no axes?                     
ans: c. C-both a and b

Question: Which of the following is not true regarding column width?
ans: d. all of the above are true

Question: Which chart type is displayed in the given picture?
ans: b.A surface chart

Question: What does the red icon indicate as shown in the given picture?
ans: b.  it tells the user that the document contains signatures

Question: What does the screen tip displaying “Showing all” mean?
ans: a. It means that a filter has been applied.

Question: Which chart displays axes but can not display axis titles?
ans: a. Radar chart

Question: Which file format is typically used to remove printer corruption?
ans: c. SYLK format

Question: Which of the following methods would you follow to remove subtotals?
ans: a. On the Data tab, in the Outline group, click on Subtotal. The subtotal dialog box is displayed. Click Remove all

Question: When does triangle appear in the Top-left corner of the cell, as shown in the picture?
ans: c. When there is an error in the formula
 
Question: Which lookup function should be used when the comparison values are located in a column to the left of the data that is to be found?
ans: b. VLOOKUP

Question: Which scoping method should be used to conditionally format a set of fields in the values area for all levels in the hierarchy of data?
ans: c. Scoping by value field

Question: Where can the “Show all comments” command be found?
ans: c. On the Review tab

Question: Which of the following is not true about an offline cube file
ans: b. The file format for an offline cube file is .CUE

Question: What is the significance of the red symbol at the top right corner of the cell, as shown in the picture?
ans: b. It signifies that the cell contains a comment.

Question: Which of the following is not true regarding naming a cell?
ans: a. Names are case sensitive.

Question: Which of the following options should be used to create a connection to a shared network folder, as shown in the picture?
ans: a. A    (MAP NETWORK DRIVE)

Question: Which of the following charts shows numerical values on the vertical (value) axis and textual groupings (or categories) on the horizontal axis?
ans: c. Area charts

Question: Which of the following options would you choose to clear a PivotChart report?
ans: a. On the Analyze tab, in the Data group, click on Clear and then click “Clear All”.

Question: Which of the following wildcard characters can be used as comparison criteria for Text Filters?
ans: d. All of the above.

Question: Which tab should be used to display or hide axes?
ans: b. Layout tab

Question: When would you use smart graphic?
ans: a. List information b. create a matrix illustration c. Show a relationship between parts, such as overlapping concepts

Question: Which tab is required to work with Macros?
ans: b. Developer tab. e. View tab

Question: Referring to the given image, point out which option should be selected to automatically save a backup copy of a workbook.
ans: b. B General options

Question: Which keyboard shortcut re-calculates all formulas in all open workbooks, regardless of whether or not they have change3d since the last time?
ans: d. None of above.

Question: Refer to the given image Which line style option should be used to specify the style used for the end  of the line?
ans: c. C

Question: Which of the following is not true about the Watch Window?
ans: c. There can be two Watch windows per cell.

Question: How would you select an entire PivotalTable report?
ans: b.  On the Options tab, in the Actions group, click Select, and then click Entire PivotTable.

Question: A Macro can be digitally signed.
ans: a. True

Question: What would be the result, when =T(A4) is applied on the given table?
ans: a. The text TRUE is returned

Question: When you freeze panes, you select specific rows or columns that remain visible when scrolling in the worksheet.
ans: a. True

Question: Which among the following options displays Legend entries in the given picture?
ans: c. C

Question: What is the purpose of using the Keep text flat option, as shown in the picture?
ans: a. It prevents the text inside the wordart from rotating when rotate wordArt is rotated.

Question: Which of the given methods would you follow to add an alternative text to a picture?  
ans: a. Right-click the picture, click Size and Properties.Click the Alt Text tab, and then in the Alternative text box, enter your text.

Question: Some data is to be refreshed in an imported XML file. Where can the command on the Ribbon be found?
ans: c. On the Developer tab

Question: Refer to the given image Which of the following password options uses an encryption method?
ans: c. Both a and b

SET 3
 
Question: Refer to the given picture, which option causes the last row in the table to appear and displays the word Total in the leftmost cell?
ans: b. B  (total row)

Question: What is the option on the Document Inspector that finds the content type information?
ans: c.  Document Properties and Personal Information

Question: How will you find cells with data validation?
ans: a. On the Home tab, in the Editing group, click the arrow next to Find & Select,, then click Go -To Special. Click on Data Validation, and then click All

Question: For XY (scatter) and bubble charts, error bars for the x values, the y values , or both can be displayed.  
ans: a. true

Question: How should blank cells be inserted on a Worksheet?
ans: c. Both a and b

Question: Case-sensitive sorting of text in Excel2007 can be performed.
ans: a. True

Question: Which of the following is true about a freeform shape?
ans: d. All of the above is true

Question: Which keyboard shortcut should be used to enter the current time?
ans: b. CTRL+SHIFT+:

Question: Deleting the PivotChart report automatically deletes the associated  PivotTable report.
ans: b. False

Question: Which of the following is a default method of a PivotTable report for scoping the conditional format of a fields in the values area?
ans: a. By selection

Question: Which method will you use to update table data from a Sharepoint list?
ans: c. In the Design tab, On the External Data Tools group, Click Refresh

Question: How will you display the Go To dialog box?
ans: b. You will press F5

Question: Which part of the formula displays references in the given picture?
ans: b. B

Question: Which of the given Document properties includes both file system properties and statistics that are maintained by Office programs for the user?
ans: a. Automatically updated properties

Question: Which keyboard shortcut should be used to minimize or restore the ribbon?
ans: c. CTRL+F1

Question: When the table headers are turned off, the table header Autofilters and all other applied filters are removed from the table.
ans: a. True

Question: If a SmartArt graphic is converted to individual shapes, it is not possible to convert them back to the SmartArt graphic
ans: a. True

Question: Which of the following operators is not a type of calculation operator?
ans: d. equation

Question: Which Consolidate option would you choose when you want to arrange data in all the worksheets in identical order and location?
ans: a. Consolidate by position

Question: Which option would you choose to display a list of formula used in the current PivotTable report?
ans: c. On the Options tab, in the Tools group, click on Formula, and then click “List Formula”

Question: Which of the given Document properties includes both file system properties and statistics that are maintained by Office programs for the user?
ans: Automatically updated properties  

Question: When does the error, as shown in the picture, occur?  
ans: d. All of the above.

Question: Refer to the given, What is the purpose of the cell denoted as 'A' in the worksheet?
ans: a. It selects all the cells in the worksheet.

Question: Refer to the given image, which formula should be written on the given table to display "Nancy Davolio"?
ans: c. =PROPER(A2)   

Question: How would you assign a Macro to a graphic
c.  On the worksheet, right-click on the graphic, then click "Assign Macro" on the shortcut menu. In the Macro name box, click on the macro that you want to assign.

Question: No data is deleted when an outline is hidden or removed.  
ans: a. True.

Question: Refer to the given image, which of the following Fill options should be used to add color and transparency to a shape?  
ans: a. A    (No fill)

Question: Which among the following settings is the default macro setting?
ans: c. Disable all macros with notification.

Question: Which type of additional information is stored within the digital signature?
ans: d. All of the above.

Question: When 'a' or 'p' is not typed after the time in Worksheet cells, what does Excel enter the default time as?      
ans: d. It enters the time as AM.

Question: Which of the following is not a valid file extension in which an Excel file can be saved?
ans: c. PXL

Question: When would the data validation command be unavailable on the data tab?   
ans: d. All of the above.
SET 4
  Question: How can a chart be modified?
ans: All of the above

Question: This question is based upon the figure shown below When does
ans: When there is an error in the formula


Question: Which database function estimates variance based on a sample from selected database entries?

ans: DVAR


Question: Which chart displays axes but cannot display axis titles?
ans: Radar chart


Question: How will you reverse the direction of a SmartArt graphic?

ans: Under SmartArt Tools, on the Design tab, in the Create Graphic group, click on Right to Left

 
Question: Which database function estimates variance based on a sample from selected database entries?

ans: DVAR


Question: How would you locate the last cell on a worksheet?

ans: Click anywhere in the worksheet, and then press CTRL+END


Question: Which Consolidate option would you choose when you want to arrange the data in all the worksheets in identical order and location?
ans: Consolidate by position


Question: Which of the following options is not available on the Status bar?

ans: Start mode