Showing posts with label Web. Show all posts
Showing posts with label Web. Show all posts

UpWork (oDesk) & Elance Oracle PL Test Question & Answers

15:28 Add Comment
UpWork (oDesk) & Elance Oracle PL Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Oracle PL. Lets Start test.


Ques : The oracle server implicitly opens a cursor to process:
Ans  :  A Sql select statement
       DML Statements

Ques : Which two among the following programming constructs can be grouped within a package?
Ans  : Constant
       Sequence

Ques : Which two statements, among the following, describe the state of a package variable after executing the package in which it is declared?
Ans  : It persists across transactions within a session
       It persists from session to session for the same user

Ques : Which of the following is not a legal declaration?
Ans  : declare x,y varchar2(10);
      declare Sex boolean:=1;
 
Ques : Which two statements out of the following regarding packages are true?
Ans  : The package specification is required, but the package body is optional
       The specification and body of the package are stored separately in the database
 
Ques : A table has to be dropped from within a stored procedure. How can this be implemented
Ans  : Use the DBMS_DDL packaged routines in the procedure to drop the table

Ques : CREATE OR REPLACE PACKAGE manage_emp IS
tax_rate CONSTANT NUMBER(5,2) := .28;
v_id NUMBER;
PROCEDURE insert_emp (p_deptno NUMBER, p_sal NUMBER);
PROCEDURE delete_emp;
PROCEDURE update_emp;
FUNCTION cal_tax (p_sal NUMBER) RETURN NUMBER;
END manage_emp;
/
CREATE OR REPLACE PACKAGE BODY manage_emp IS

PROCEDURE update_sal (p_raise_amt NUMBER) IS
BEGIN
UPDATE emp SET sal = (sal * p_raise_emt) + sal
WHERE empno = v_id;
END;

PROCEDURE insert_emp (p_deptno NUMBER, p_sal NUMBER) IS
BEGIN
INSERT INTO emp(empno, deptno, sal) VALUES
(v_id, p_depntno, p_sal);
END insert_emp;

PROCEDURE delete_emp IS
BEGIN
DELETE FROM emp WHERE empno = v_id;
END delete_emp;

PROCEDURE update_emp IS
v_sal NUMBER(10,2);
v_raise NUMBER(10, 2);
BEGIN
SELECT sal INTO v_sal FROM emp WHERE empno = v_id;
IF v_sal < 500 THEN v_raise := .05;
ELSIP v_sal < 1000 THEN v_raise := .07;
ELSE v_raise := .04;
END IF;
update_sal(v_raise);
END update_emp;

FUNCTION cal_tax (p_sal NUMBER)RETURN NUMBER IS
BEGIN
RETURN p_sal * tax_rate;
END cal_tax;
END manage_emp;
/
What is the name of the private procedure in this package?
Ans  : UPDATE_SAL

Ques : An internal LOB is _____.
Ans  : Stored in the database

Ques : The technique employed by the Oracle engine to protect table data, when several people are accessing it is called:
Ans  :  Concurrency Control

Ques : Which table should be queried to determine when the procedure was last compiled?
Ans  : USER_OBJECTS

Ques : Which cursor dynamically allows passing values to a cursor while opening another cursor?
Ans  : Implicit Cursor

Ques : Which precomplied word is called, which when encountered, immediately binds the numbered exception handler to a name?
Ans  : Exception_init

Ques : How can migration be done from a LONG to a LOB data type for a column?
Ans  : Using ALTER TABLE statement

Ques : Which table and column can be queried to see all procedures and functions that have been marked invalid?
Ans  : USER_OBJECTS table,STATUS column

Ques : In which type of trigger can the OLD and NEW qualifiers can be used?
Ans  : Row level DML trigger

Ques : Examine the following trigger:

CREATE OR REPLACE TRIGGER Emp_count
AFTER DELETE ON Employee
FOR EACH ROW
DECLARE
n INTEGER;
BEGIN
SELECT COUNT(*) INTO n FROM employee;
DMBS_OUTPUT.PUT_LINE( 'There are now' || n || 'employees');
END;

This trigger results in an error after this SQL statement is entered: DELETE FROM Employee WHERE Empno = 7499;
How should the error be corrected?
Ans  : Take out the COUNT function because it is not allowed in a trigger

Ques : Which Section deals with handling of errors that arise during execution of the data manipulation statements, which makeup the PL/SQL Block?
Ans  : Exception

Ques :  Which of the following statements is true?
Ans  :  Stored functions can increase the efficiency of queries by performing functions in the query rather than in the application

Ques :Examine the following code:
CREATE OR REPLACE FUNCTION gen_email (first_name VARCHAR2, last_name VARCHAR2,
id NUMBER)
RETURN VARCHAR2 IS
email_name VARCHAR2(19);
BEGIN
email_name := SUBSTR(first_name, 1, 1) ||
SUBSTR(last_name, 1, 7) ||.@Oracle.com .;
UPDATE employees SET email = email_name
WHERE employee_id = id;
RETURN email_name;
END;
Which of the following statements removes the function?
Ans  : DROP FUNCTION gen_email;

Ques : In Pl/Sql, if the where clause evaluates to a set of data, which lock is used?
Ans  :  Page Level lock

Ques : If user defined error condition exists,Which of the following statements made a call to that exception?
Ans  : Raise

Ques : Which of the following are identified by the "INSTEAD OF" clause in a trigger?
Ans  : The view associated with the trigger

Ques : What type of trigger is created on the EMP table that monitors every row that is changed, and places this information into the AUDIT_TABLE?
Ans  : FOR EACH ROW trigger on the EMP table

Ques : Which procedure is called after a row has been fetched to transfer the value, from the select list of the cursor into a local variable?
Ans  :  Row_value

Ques : What is the maximum number of handlers processed before the PL/SQL block is exited, when an exception occurs?
Ans  : Only one

Ques : When the procedure or function is invoked, the Oracle engine loads the compiled procedure or function in the memory area called:
Ans  : PGA

Ques : What happens during the execute phase with dynamic SQL for INSERT, UPDATE, and DELETE operations?
Ans  : The area of memory established to process the SQL statement is released

Ques : Examine the following package specification:
CREATE OR REPLACE PACKAGE combine_all
IS
v_string VARCHAR2(100);
PROCEDURE combine (p_num_val NUMBER);
PROCEDURE combine (p_date_val DATE);
PROCEDURE combine (p_char_val VARCHAR2, p_num_val NUMBER);
END combine_all;
/
Which overloaded COMBINE procedure declaration can be added to this package specification?
Ans  :  PROCEDURE combine;

Ques : Which part of a database trigger determines the number of times the trigger body executes?
Ans  : Trigger type

Ques : Which table should be queried to check the status of a function?
Ans  : USER_OBJECTS

Ques : Which of the following statements is true regarding stored procedures?
Ans  :  A stored procedure must have at least one executable statement in the procedure body

Ques : Examine the following code:
CREATE OR REPLACE TRIGGER secure_emp
BEFORE LOGON ON employees
BEGIN
IF (TO_CHAR(SYSDATE, 'DY') IN ('SAT', 'SUN')) OR
(TO_CHAR(SYSDATE, 'HH24:MI')
NOT BETWEEN '08:00' AND '18:00')
THEN RAISE_APPLICATION_ERROR (-20500, 'You may
insert into the EMPLOYEES table only during
business hours.');
END IF;
END;
/
What type of trigger is it?
Ans  : This is an invalid trigger

Ques : Which code is stored in the database when a procedure or function is created in SQL*PLUS?
Ans  : Only P-CODE

Ques : Evaluate the following PL/SQL block:
DECLARE
v_low   NUMBER:=2;
v_upp   NUMBER:=100;
v_count NUMBER:=1;
BEGIN
FOR i IN v_low..v_low LOOP
INSERT INTO test(results)
VALUES (v_count)
v_count:=v_count+1;
END LOOP;
END;
How many times will the executable statements inside the FOR LOOP execute?
Ans  : 1

Ques : What can be done with the DBMS_LOB package?
Ans  : Use the DBMS_LOB.FILEEXISTS function to find the location of a BFILE

Ques : Examine the following code:
CREATE OR REPLACE TRIGGER UPD_SALARY
FOR EACH ROW
BEGIN
UPDATE TEAM
SET SALARY=SALARY+:NEW.SALARY
WHERE ID=:NEW.TEAM_ID
END;
Which statement must be added to make this trigger executable after updating the SALARY column of the PLAYER table?
Ans  : AFTER UPDATE ON PLAYER

Ques : Examine the following code:

CREATE OR REPLACE PACKAGE comm_package IS
g_comm NUMBER := 10;
PROCEDURE reset_comm(p_comm IN NUMBER);
END comm_package;

User MILLER executes the following code at 9:01am:
EXECUTE comm_package.g_comm := 15

User Smith executes the following code at 9:05am:
EXECUTE comm_package.g_comm := 20

Which of the following statement is true?
Ans  :  g_comm has a value of 15 at 9:06am for Miller

Ques : The CHECK_SAL procedure calls the UPD_SAL procedure. Both procedures are INVALID.Which command can be issued to recompile both procedures?
Ans  : ALTER PROCEDURE CHECK_SAL compile

Ques : Examine the following procedure:
PROCEDURE emp_salary
(v_bonus  BOOLEAN,
V_raise BOOLEAN,
V_issue_check in out BOOEAN)
is
BEGIN
v_issue_check:=v_bonus or v_raise;
END;
If v_bonus=TRUE and v_raise=NULL,which value is assigned to v_issue_check?
Ans  : TRUE

Ques : Which package construct must be declared and defined within the packages body?
Ans  :  Private Procedure

Ques : What happens when rows are found using a FETCH statement?
Ans  : The current row values are loaded into variables

Ques : Evaluate the following PL/SQL block:
DECLARE
result BOOLEAN;
BEGIN
DELETE FROM EMPloyee
WHERE dept_id IN (10,40,50);
result:=SQL%ISOPEN;
COMMIT:
END;

What will be the value of RESULT if three rows are deleted?
Ans  : FALSE

Ques : Which two statements among the following, regarding oracle database 10g PL/SQL support for LOB migration, are true?
Ans  : Standard package functions accept LOBs as parameters

Ques : Which command is used to disable all triggers on the EMPLOYEES table?
Ans  : ALTER TABLE employees DISABLE ALL TRIGGERS;

Ques : SQL%ISOPEN always evaluates to false in case of a/an:
Ans  : Implicit Cursor

Ques : Which datatype does the cursor attribute '%ISOPEN' return?
Ans  : BOOLEAN

Ques : Which of the following is a benefit of using procedures and functions?
Ans  : Procedures and Function avoid reparsing for multiple users by exploiting shared SQL areas

Ques : All packages can be recompiled by using an Oracle utility called:
Ans  :  Dbms_utility

Ques : Which type of variable should be used to assign the value TRUE, FALSE?
Ans  : Scalar

Ques : Examine the following code:
CREATE OR REPLACE TRIGGER update_emp
AFTER UPDATE ON emp
BEGIN
INSERT INTO audit_table (who, dated) VALUES (USER, SYSDATE);
END;
/
An UPDATE command is issued in the EMP table that results in changing 10 rows
How many rows are inserted into the AUDIT_TABLE ?
Ans  : 1

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Web Design Test Question & Answers

18:52 Add Comment
UpWork (oDesk) & Elance Web Design Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Web Design. Lets Start test.


Ques : In CSS, z-index is used to do what?
Ans :  Bring div elements to the front or back of other div elements on a webpage

Ques : The asterisk (*) in css refers to:
Ans :Any Element

Ques : All HTML tags are enclosed in what ?
Ans :  <>

Ques : In a CSS Stylesheet, the commands or styles for each ID and Class are called
Ans : Declarations

Ques : Skeuomorphism is used in web design to
Ans :  help users acclimate to elements on a page because they resemble and retain cues from the physical object with the same function

Ques : To adjust leading, one would need to use which CSS property?
Ans :  line-height

Ques : In HTML, the names of IDs and Classes are referred to as
Ans :  Selectors

Ques : Sprites are
Ans : An image with multiple graphics in it that can be used as a CSS background-image to show only parts of the sprite.

Ques : Which one of these statements are TRUE about designing for the web
Ans : Browser rendering of fonts is different between most browsers.

Ques : Some CSS3 declarations are not compatible with older browsers, especially IE8 and earlier versions. What could be a solution?
Ans : All of these

Ques : Allowing white space in your design is a good design tool to_____.
Ans : reduce a page view's complexity and increase user's speed of comprehension.

Ques : SASS and LESS are
Ans :Precompilers that use a syntax with more features that can make writing CSS easier.

Ques : SVG is
Ans : A vector based graphic file format supported in most modern browsers.

Ques : Which resource allow us to use fonts that are not system fonts?
Ans :  @font-face

Ques : What is the preset order of direction listing when using a CSS shorthand property, which can be extended as "property-right" or "property-bottom"?
Ans :  top right bottom left

Ques : When designing forms it's helpful to
Ans : consider streamlining the process by using things like autocomplete comboboxes and date pickers

Ques : As you’re building your template, some of the divs seem to be stacking rather than aligning next to each other as you had intended. Which of the following is a solution to get them to align next to each other?
Ans : Any of these

Ques : What's the name of the meta tag used for mobile website design
Ans : viewport

Ques :  Where is "RewriteEngine on" used?
Ans : When using Apache in the .htaccess file

Ques : When designing call to actions, it's best to
Ans : Draw user attention with considerate prominance through size, color and position

Ques : Which is a good way to implement Responsive Web Design?
Ans : Mostly CSS3 with some jQuery

Ques : Which of these is not a responsive technique for images
Ans : Using absolute width and height values for images

Ques : Social media apps such as Facebook offer interfaces to web developers to integrate into their own web projects. These are referred to as:
Ans : API

Ques : What is the "Three-click rule" ?
Ans : A web user should be able to find any information with no more than three mouse clicks.

Ques : The most important thing to consider when designing for the web is to
Ans : design for the intended audience

Ques : tracking and leading cannot be controlled in web design.
Ans : False

Ques : DOM is best described as:
Ans : A language-neutral object oriented system applied to HTML

Ques : Which one of the following elements are still usable with HTML5 doctype?
Ans : Div

Ques : CSS3 offers developers the ability to create rounded corners and drop-shadows without using images. What are the benefits of NOT using images?
Ans :  All of these

Ques : To create a link to an anchor, you use the______property in A tag.
Ans : href

Ques : You cannot designate an inline image as a hypertext link.
Ans : False

Ques : Search boxes should be:
Ans :  clearly visible, quickly recognizable, and easy to use

Ques : What is the tag for an inline frame?
Ans :  iframe

Ques : Designing a UI refers to:
Ans :  Any of these

Ques : Software programs, like your Web browser, use a mathematical approach to define color.
Ans :  True

Ques : What is a common database querying language.
Ans :  MySQL

Ques : Choose the correct HTML tag for the largest heading
Ans : h1

Ques : Which of these browsers is notorious for giving web developers a headache, not to mention more work to do?
Ans : Internet Explorer

Ques : The page title is inside the____tag.
Ans :  head

Ques :  Tables can be nested (table inside of another table).
Ans : True

Ques : When a user interacts with a menu, what's a good way to provide feedback?
Ans : Changing the color or background of the menu

Ques : H1 is the smallest header tag.
Ans :  False

Ques : When designing a responsive web site, it's important to
Ans : All of them.

Ques : What is the full form of CSS?
Ans : Cascading Style Sheets

Ques : What is the correct HTML tag for inserting a line break?
Ans :

Ques : What does FTP stand for
Ans : File Transfer Protocol

Ques : Which DTD does NOT allow inline styling?
Ans :XHTML 1.0 Strict

Ques : What is the default CSS position of an element?
Ans : Static

Ques : Why do you need a humans.txt file in your web development?
Ans :  This file credits and identifies the people who may take part in the creation of the website.

Ques : True or false: The default browser font size is 16px
Ans : True

Ques : If you want to increase the font size by 2 relative to the surrounding text, you enter +2 in the tag.
Ans :  True

Ques :  Which attribute you should use to create a "tooltip" for an image?
Ans :  Title

Ques : When designing a responsive web site, it's important to
Ans : All of them.

Ques : How would you write Hello in an alert box?
Ans : alert ("hello");

Ques : Which of these is not a responsive technique for images
Ans :  Using absolute width and height values for images

Ques : Sprites are
Ans : An image with multiple graphics in it that can be used as a CSS background-image to show only parts of the sprite.

Ques : When designing forms it's helpful to
Ans :consider streamlining the process by using things like autocomplete comboboxes and date pickers

Ques : Responsive typography generally uses what unit of measurement to scale up and down
Ans : em

Ques : Relative path make your hypertext links______.
Ans :  Portable

Ques : Viewport dimensions at which we decide to alter the page design, are known as:
Ans : Media Queries

Ques :  Which of the following is NOT a component of Responsive Web Design?
Ans : Web fonts

Ques : What declaration would generate a "scrollbar" IF text exceeded a div's fixed size?
Ans :  { overflow : auto }

Ques : Which of the following is a type of HTML code that controls the appearance of the document contents?
Ans :  tags

Ques : A URL redirect is:
Ans : when a domain name or a URL is directed to another domain or URL.

Ques :  Visual hierarchy helps
Ans : establish a pace and order for reading and priority of content

Ques : Which of the following would create a shadow on a div with text inside it?
Ans :  box-shadow

Ques : Which of the following is not a method for adding CSS to an HTML page.
Ans : Entitling CSS to the HTML

Ques : Which of the following is a correct JQuery statement?
Ans :  $(document).ready(function())

Ques : Progress trackers
Ans :is a good technique to help users have context where they are in a multi-step process.

Ques : A “Tableless” website refers to:
Ans :  A website that does not use tables for layout.

Ques : True or false? It is possible to combine structures (e.g, linear and hierarchical).
Ans :  True

Ques : Organic SEO (Search Engine Optimization) most accurately means:
Ans :  Using strategic keywords and phrases to improve the search engine rankings of a web page

Ques :  What are the general syntax for inline image?
Ans :  img src=file

Ques : Which of the following will NOT be found in the
Ans :  Table

Ques : Interpret this statement: Michelle
Ans :  It will print out Michelle in bold font

Ques : True or False? HTML stands for HyperText Markup Logistics.
Ans :  False

Ques : True or False? HTML5 uses some self-closing tags.
Ans : True

Ques : True or False? No matter which word is used, Java and Javascript are still one in the same.
Ans :  False

Ques : In Web design, what are the aspects of space that you should be considering:
Ans :  All options

Ques :  A “responsive” website is one that:
Ans : Resizes to fit different screen sizes

Ques : In relation to the web, CMS stands for:
Ans : Content Management System

Ques :   and
have the same effect
Ans : False

Ques : True or False? Apache is a popular open source web server.
Ans : True

Ques : It's important and helpful to design forms in an order and position as they normally are presented (e.g. address or credit card information forms)
Ans :  True, it helps create a good user experience and builds trust.

Ques : True or False? ASP.NET and PHP are one in the same.
Ans : False

Ques : Which of the following affects SEO?
Ans :  All of these

Ques : In web design terminology, 'widows' and 'orphans' refer to
Ans : An isolated line or word of text

Ques : Which of the following affects the User Experience of the website?
Ans : All of them.

Ques : Is the attribute "align" supported by html5?
Ans :  No

Ques : Which of the following ATTRIBUTE use define the author of a page?
Ans :

Ques : Which of the following is a correct JQuery statement?

Ans :  $(document).ready(function())

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Twitter Bootstrap Test Question & Answers

18:34 Add Comment
UpWork (oDesk) & Elance Twitter Bootstrap Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of Twitter Bootstrap. Lets Start test.
Ques : Which of the following are not Bootstrap plugins?
Ans  : tocible
Ans  :boilerplate

Ques : Which type of trigger cannot be used with the "delay" option to show and hide a popover?
Ans  : manual

Ques : Which of the following will set a modal window to not be closed on click?
Ans  : Setting the option "backdrop" to static

Ques : Which of the following LESS variables does not belong to the Navbar component?
Ans  : @navbar-default-height

Ques : Which of the following classes will make tables scroll up horizontally when width of the view is under 768px?
Ans  : .table-responsive

Ques : Which of the following will set a modal window to be closed when the escape key is pressed?
Ans  : Setting the option "keyboard" to true

Ques : Which of the following will correctly call a dialog prompt?
Ans  :  All of these

Ques : Which of the following is not a Bootstrap component?
Ans  : Pivottable

Ques : Which of the following colors is the default hover background color of the table row?
Ans  :  #f5f5f5

Ques : How many validation styles for states of on-form controls does Bootstrap have?
Ans  : 3

Ques : Which of the following are not options of the method $().tooltip(options)?
Ans  : backdrop

Ques : Which of the following are not options of the method $().tooltip(options)?
Ans  :  backdrop

Ques :  Which of the following are helper classes?
Ans  :  .close

Ques : Which of the following statements is correct about using the Collapse plugin?
A) The Transitions plugin must be included.
B) The Popover plugin must be included.
Ans  : Statement A is true while Statement B is false.

Ques : Which of the following statements are correct with regards passing options?

A) Options can be passed via data attributes or JavaScript.
B) For data attributes, the option name has to be appended to option-, as in option-animation="".
C) For data attributes, the option name has to be appended to data-, as in data-animation="".
D) Options can be passed only via JavaScript.
Ans  :  A and C

Ques :  What is the default amount of time delay between automatically cycling items in a carousel?
Ans  : 5000

Ques :  Which of the following classes are contextual classes?
Ans  : .warning

Ques : Which of the following components is used to indicate the current page's location within a navigational hierarchy?
Ans  : breadcrumbs

Ques : Which of the following are no Bootstrap plugins?
Ans  : boilerplate/ocible

Ques :  Which of the following statements are correct with regards passing potions?
Ans  :  For data attributes, the option name has to be appended to data-, as in data-animation=””./ Options can be passed via data attributes or JavaScript.


Ques : Which of the following are helper classes?
Ans  : .clearfix/.caret/.close


Ques : Which of the following will set a modal window to be closed when the escape key is presed?
Ans  : Setting the option “keyboard” to true

Ques : What is the default amount of time delay between automatically cycling items in a carousel?
Ans  : 5000

Ques :   Which of the following is the default hover background color of the table row?
Ans  : #f5f5f5

Ques : which of the following are not option of the method $().tooltip(options)?
Ans  : backdrop/show

Ques : Which of the following will set a modal window to not be closed on click?
Ans  : Setting the option “backdrop” to static

Ques : Which of the following classes are contextual classes?
Ans  : .danger/ .warning


Ques : Which of the following classes will make tables scroll up horizontally when width of the view is under 768px?
Ans  :  .table-scrollable

Ques :  Which of the following will correctly call a dialog prompt?
Ans  : All of these

Ques : Which of the following LESS variables does not belong to the Navbar component?
Ans  : @navbar-default-height

Ques : Which type of trigger cannot be used with the “delay” option to show and hide a popover?
Ans  : manual

Ques : How many validation styles for states of on-form controls does Bootstrap have?
Ans  : 3

Ques : Which of the following statements is correct about using the collapse plugin?
i) The Transitions plugin must be included.
ii) The popover plugin must be included.
Ans  :  Statement A is true while Statement B is false.

Ques :  Setting the option “backdrop” to true
Ans  : Setting the option “backdrop” to static

Ques :  Which of the following is the default hover background color of the table row?
Ans  :  #f5f5f5

Ques :  which of the following are not option of the method $().tooltip(options)?
Ans  : backdrop/show

Ques : Which of the following will set a modal window to not be closed on click?
Ans  : Setting the option “backdrop” to static

Ques :  Which of the following classes will make tables scroll up horizontally when width of the view is under 768px?
Ans  : .table-scrollable

Ques :  Which of the following will correctly call a dialog prompt?
Ans  : All of these

Ques : What does the following HTML code do?
Ans  : It highlights new or unread items.

Ques :  Which type of trigger cannot be used with the “delay” option to show and hide a popover?
Ans  : manual

Ques : How many validation styles for states of on-form controls does Bootstrap have?
Ans  : 3

Ques : Which of the following statements is correct about using the collapse plugin?
A) The Transitions plugin must be included.
B) The popover plugin must be included.
Ans  : Statement A is true while Statement B is false. t B is true while Statement A is false.

Ques :  Which of the following are no Bootstrap plugins?
Ans  : tocible/boilerplate

Ques :  Which of the following statements are correct with regards passing potions?


Ans  : Options can be passed via data attributes or JavaScript./ For data attributes, the option name has to be appended to data-, as in data-animation=””.

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Search Engine Optimization-SEO Test Question & Answers

08:44 Add Comment
UpWork (oDesk) & Elance Search Engine Optimization-SEO Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of this skill. Lets Start test.


Ques: Google can index the information inside of an iFrame
Ans: False, Google does not recognize the information inside of iFrames.

Ques: SEO skills are only used for Google.
Ans: False. SEO skills are used for all dominant search engines worldwide.

Ques: Google AdWords:
Ans: All of these

Ques: Which site should you connect your website with to improve your SEO?
Ans: All of these

Ques: What will cause a 404 page to display?
Ans: All of these

Ques: SEO is best used for?
Ans: Driving web traffic to your website

Ques: Google's Panda, Penguin and Hummingbird search algorithm updates are a move by Google to
Ans: show sites with relevant, original, high-quality content in search results.

Ques: When permanently moving content from one webpage to another, you should...
Ans: use a 301 redirect.

Ques: SERP stands for
Ans: Search Engine Results Pages

Ques: Is SEO a one-time event?
Ans: No, SEO requires a long-term commitment.

Ques: On Google, what is PageRank?
Ans: An evaluation of the importance of a page on a site based on the number of genuine links from other sites to it.

Ques: Which program lets Google know if you are using an XML Site Map?
Ans: Google Webmaster Tools

Ques: How can you communicate additional information about an image to a bot?
Ans: Use the ALT attribute in the IMG tag.

Ques: What does Google use in a listing to describe your web site?
Ans: All of these

Ques: What does EMD mean?
Ans: Exact Match Domain

Ques: What does Google use to "name" your web page in its search listing?
Ans: The information in the TITLE tag of the page.

Ques: Which activity is NOT considered to be a page optimization method?
Ans: Directory submission

Ques: Which form of redirect/meta tag will transfer the most authority to the directed page?
Ans: 301

Ques: SEO techniques offer a guaranteed method of appearing as the first listing on an unpaid search engine listing
Ans: False

Ques: What was the main difference between the Panda and Penguin Google algo changes?
Ans: Panda was aimed at poor quality content and user experience. Penguin was aimed at a range of black-hat techniques.

Ques: Google search results will display up to how many characters of a page's meta description?
Ans: 156

Ques: Which statement about 404 pages is true?
Ans: A custom 404 page that kindly gives users back to a working page on your site can greatly improve a user's experience.

Ques: What would happen if you searched Google for site:example.com “some text here”
Ans: It would list only web pages on example.com that contained the exact words "some text here"

Ques: Which of these meta-data types is the LEAST important to Google for ranking, indexing or display purposes?
Ans: meta name="keywords"

Ques: Of the following options which is the LEAST important area to include your target keywords?
Ans: Meta Keywords

Ques: What does LSI stand for?
Ans: Latent Semantic Indexing

Ques: How do you control where robots go and what they do in your web site?
Ans: Use all of these

Ques: Which of these is NOT something that you can use to improve your SEO?
Ans: None of these

Ques: Search engines do not index some common words (such as “or”, “and”, “when”, and “in”) within the webpage. What are these common words called?
Ans: Stop words

Ques: What do you enter in the rule portion of a robots.txt file single entry to block .gif images from indexing?
Ans: Disallow: /*.gif$

Ques: Which of these types of page content can Google NOT index?
Ans: Javascript

Ques: What do you enter in the robots.txt file to remove all images on your site from Google Images?
Ans: User-Agent: Googlebot-Image Disallow: /

Ques: Google did the "caffeine" roll-out to:
Ans: crawl websites 50% faster

Ques: What do you enter in the robots.txt file to block indexing of all PDF files on your web site?
Ans: Disallow: /*.pdf$

Ques:  Which of these meta-data types is the LEAST important to Google for ranking, indexing or display purposes?
Ans: meta name="keywords"

Ques: Which is a best practice for creating URL names?
Ans: Use real words in the URL name.

Ques:  Why are meta tags important in relation to SEO?
Ans: Because a search engine may use them as snippets for your pages.

Ques: Google's Panda, Penguin and Hummingbird search algorithm updates are a move by Google to
Ans: show sites with relevant, original, high-quality content in search results.

Ques: What type of redirect gives you the most credit in terms of SEO?
Ans:  301 ('Moved Permanently')

Ques: What does Google use in a listing to describe your web site?
Ans: All of these

Ques: Which statement about 404 pages is true?
Ans: A custom 404 page that kindly gives users back to a working page on your site can greatly improve a user's experience.

Ques: What would happen if you searched Google for site:example.com “some text here”
Ans: It would list only web pages on example.com that contained the exact words "some text here"

Ques: Paid search result of Google helps to improve overall website usability.
Ans: False: Paid search result has nothing to do with website usability

Ques: Google did the "caffeine" roll-out to:
Ans: crawl websites 50% faster

Ques: For maximum potential visitor traffic, if you could choose just ONE search engine to     optimize your Web site for, which should it be?
Ans: Google

Ques: What is the meaning of the term "H1" tag?
Ans: It stands for Heading Level 1.

Ques: Which of the following URLs would be the best choice of structure for both the search engines and humans?
Ans: http://www.company.com/seo/sitearchitecture

Ques: What is sitemap.xml?
Ans: Sitemap helps in easy crawling of all the pages of a website.

Ques: What is a 404 page?
Ans: A page that shows up when the selected page is not available.

Ques: Which of the following is a SEO best practice?
Ans: Choose a title that effectively communicates the topic of the page's content

Ques: Which of the following is beneficial to the search engine optimization of a specific web page?
Ans: placing content you want indexed in search engines within a

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance

UpWork (oDesk) & Elance Node.js Test Question & Answers

07:12 Add Comment
UpWork (oDesk) & Elance Node.js Test Question & Answers are really very important to pass UpWork & Elance test. You will get top score at this skill test exam. If you found any problem or wrong answer please inform me via contact or comments. We will try to solve it in short. This test is extremely valuable to acquire knowledge of this skill. Lets Start test.

http://www.upworkelancetests.blogspot.com/search/label/Node.js

Ques : What do the lines like symbols = symbols || SYMBOLS_DEFAULT; do?
Ans  : This is a JS idiom for setting default arguments.

Ques : True or False: node.js can call other command line scripts.
Ans  : True

Ques :  The "js" in Node.js stands for?
Ans  :  javascript

Ques : Why is Node.js important?
Ans  : It allows asynchronous processing in the background without interupting the user

Ques : Why is Node.js important?
Ans  : It allows asynchronous processing in the background without interupting the user

Ques :  To exit out of a function you should use _____?
Ans  :  return;

Ques : The process object is an instance of what class?
Ans  : EventEmitter

Ques : To create an instance of the HTTP object, which function is used?
Ans  :  require

Ques :True or false? Node.js is multi-core by nature.
Ans  : False

Ques : The process object is an instance of____?
Ans  : EventEmitter

Ques : To parse a URL string use____?
Ans  : querystring

Ques :  The Javascript used in node.js:
Ans  :  Is on-par with a recent version of Chrome

Ques : What program is used to programmtically control the browser?
Ans  : javascript

Ques : Which of the following is a standard node module, included with the default install?
Ans  : fs

Ques : Running the following code, what will the console output?  var http = require('http');   http.createServer(   function (request, response) {     response.writeHead(200, {'Content-Type': 'text/plain'});     response.end('Hello World\n');   } ).listen(8000);   console.log('Server running at http://localhost:8000/');
Ans  :  Server running at http://localhost:8000/

Ques : A module is an____?
Ans  : Object

Ques : How do you call a function attached to an object that will be executed when the object emits an event?
Ans  : Listener

Ques : Node.js is stored on your____?
Ans  :  hard drive

Ques : What is node.js based on?
Ans  : Chrome's JavaScript runtime

Ques :  What is a Buffer?
Ans  :  Raw memory allocated outside the v8 heap

Ques : WebSockets with Socket.io can be used to?
Ans  : All of these.

Ques :  How do you require a module?
Ans  :  var module = require('mymodule')

Ques : Which is a comment in node?
Ans  : //comment

Ques :  Which of the following can be created and managed using node.js?
Ans  : All of these 

Ques : REPL is:
Ans  :  Read-Eval-Print-Loop, a way to interactively run code

Ques : To declare a variable use what keyword?
Ans  : var

Ques : NPM is a...
Ans  :  Package manager

Ques : How do you output to console in node.js?
Ans  : util.log or console.log

Ques :  What function is used to write out application errors/events?
Ans  : console.log

Ques : Which is of the following is a potential advantage of using Node.js?
Ans  :  All of these.

Ques : In node.js you can write and run code in what language?
Ans  :  Javascript

Ques : What Javascript Engine does node.js use?
Ans  : V8

Ques :  Use _____ to step through your code.
Ans  : breakpoints

Ques : If you have a node program called example.js, how would that be excuted?
Ans  : node example.js

Ques : A popular web application for framework for node?
Ans  : express

Ques :In this code:   function myLog(err, data) {   console.log(err, data); }  fs.readFile('/tmp/sample', myLog); The function 'myLog' is used as a(an):
Ans  :  Callback

Ques :  node.js excels at dealing with:
Ans  : I/O-bound tasks

Ques : What does Node.js run on?
Ans  : server

Ques : How does one get access to Node.js?
Ans  : download the install

Ques : What is REPL?
Ans  :  Read-Eval-Print-Loop

Ques : The Cryptography module requires OpenSSL.
Ans  : True

Ques : How can I call an object function from my module if my module name is "iModule"?
Ans  :  require('iModule').mObject();

Ques : Where does Node run on your machine?
Ans  : as an application

Ques : If you have a problem with your code, where would you look?
Ans  :  console.log

Ques : What interface is used to access folders on your local drive
Ans  :  fs

Ques : What interface is used to create a server through Node.js
Ans  :  http

Ques : What is the code to access the DNS module?
Ans  :   require('dns');

Ques : Which npm command will load all dependencies in the local node_modules folder?
Ans  : npm install

Ques : How do you cause a function to be invoked at a specified time later?
Ans  : setTimeout(fn, 1000)

Ques :  What does the Zlib module provide?
Ans  : setTimeout(fn, 1000)

Ques : What does the Zlib module provide?
Ans  :  Bindings to Gzip/Gunzip, Deflate/Inflate, and DeflateRaw/InflateRaw classes

Ques : What does the require call return?
Ans  : module.exports object

Ques :  What method is used to parse JSON using NodeJS?
Ans  :  JSON.parse();

Ques : What is node.js?
Ans  :  A program written in C

Ques : In the following Express route stack, which handler will be called for "GET /item/23"?  app.get("/", routes.index ); app.get("/item", routes.item ); app.get("/item/:id", routes.id ); app.post("/item/:id", routes.post );
Ans  : routes.id

Ques :  Which of these is a built-in module that can be used for unit testing in Node.js?
Ans  : Assert

Ques : How do you start the node.js REPL?
Ans  :  node

Ques : True or False: node.js runs in a single thread.
Ans  :  True

Ques : Which function allows you to chain event listeners?
Ans  :  on()

Ques : The interactive shell is also called_____?
Ans  :  REPL

Ques : What syntax is correct for reading environment variable?
Ans  : process.env.ENV_VARIABLE

Ques : Timer functions are built into node.js, you do not need to require() this module in order to use them.
Ans  :  true

Ques : Which of these statements about Express is true?
Ans  :  Express is an NPM module.

Ques : Which company manages and maintains node.js?
Ans  :  Joyent

Ques : Given the following route and request, which Request object property will hold the value of 30 in the Express handler?  Route: "/post/:id" Request: "/post/30?start=20"
Ans  :  req.params.id

Ques : net.Server emits an event every time a ____ connects to the server.
Ans  :  peer

Ques : By executing node without any arguments from the command-line:
Ans  :  you will be dropped into the REPL

Ques : Which of these are valid ways to apply middleware in Express?
Ans  :  All of these.

Ques : What built in class is a global type for dealing with binary data directly?
Ans  : Buffer

Ques : What is typically the first parameter in node.js callback functions?
Ans  : Error

Ques : Node will run until its sure that no further ___ are available.
Ans  : Events-handlers

Ques : If an error occures in an Express middleware function, what is the best way to pass the error object to the subsequent handlers?
Ans  :  function( req, res, next){ ... next( err ); }

Ques : The VM module allows one to:
Ans  : Run JavaScript code in a sandbox environment

Ques : The first argument passed to a Node.js asynchronous callback is always what?
Ans  : An Error object if an error has occured.

Ques : In Express, which of these paths would NOT be cosumed by the following route?  "/users/:id/:action?"
Ans  :  "/users"

Ques : Express middleware is actually handled by what other Node.js module?
Ans  : Connect

Ques : Node.js is a truly parallel technology.
Ans  : False

Ques : Which of these Express middleware stacks will NOT log favicon requests?
Ans  :  app.use(express.favicon()); app.use(express.logger()); app.use(express.static(__dirname + '/public'));

Ques : In Express, which of these Response methods can NOT automatically end the response?
Ans  : res.type()

Ques : Given the following route and request, which Request object property will hold the value of 20 in the Express handler?  Route: "/post/:id" Request: "/post/30?start=20"
Ans  : req.query.start

Ques : var http_server = require('http');  how can you create a server?
Ans  : http_server.createServer(function(){});

Ques : Node.js clusters are child processes that do NOT share server ports?
Ans  : false

Ques : Which of these is definitely true of Node.js?
Ans  : Node.js can be used to create command line tools.

Ques : What command is used to end a Node.JS process?
Ans  :  .exit

Ques : Which of these are required fields in your package.json file?
Ans  : "name" and "version"

Ques : What is the name of the module system used in node.js?
Ans  :  CommonJS

Ques : In Node.js, the result of an asynchronous function can be accessed how?
Ans  : By the value passed as the second argument of the callback.

Ques : What is NOT a valid method to create a child process instance?
Ans  :  popen(3)

Ques : In Express, which of these would NOT expose the variable "title" to the template renderer?
Ans  :  res.render.title = "My App";

Ques : Which Express middleware must come before express.session() in your stack?
Ans  :  express.cookieParser()

Ques : If an EventEmitter object emits an 'error' event and there is no listener for it, node will:
Ans  : Print a stack trace and exit

Ques :  The http.ServerResponse is an example of a what?
Ans  : A writable Stream.

Ques : Which of these is NOT a global object?
Ans  : Stream

Ques : Which of the following is not a global object in node.js?
Ans  : path

Ques :  Which of these is a valid way to output the contents of a file?
Ans  : console.log( fs.readFileSync("file.txt") );

Ques : What is the default memory limit on a node process?
Ans  : 512mb on 32-bit systems, and 1gb on 64-bit systems.

Ques : If the Connect node package module is updated from version 2.8.5 to version 3.1.0 which dependency in your package.json file may break your application on update?
Ans  : "connect": ">=2.5"

Ques : How do you create a new client connection via SSL?
Ans  :  tls.connect()

Ques : In the following Express routing method, what is the maximum number of arguments that may be passed to the callback function "routeHandler"?  app.all("*", routeHandler )
Ans  : 4

Ques : Is it possible to execute node.js system command synchronously?
Ans  : Yes, with a third party library

Ques : When creating a command line tool with Node.js, which expresion will allow you access the first command line argument?
Ans  :  process.argv[2]

Ques : Which of the following is NOT true about Node 0.6?
Ans  : Unix binary distributed

Ques : Which of these is not a valid version according to npm semantic versioning?
Ans  :  "1.2.3b"

Ques : Which is a correct way to check the latest released version of the Express module with npm?
Ans  : npm view express version

Ques :  A Buffer can be resized
Ans  :  False

Thanks for watching this test Question & Answers. Please don't forget to leave a comment about this post. You can also find some more effective test question & answers, information, techniques, technology news, tutorials, online earning information, recent news, results, job news, job exam results, admission details & another related services on the following sites below. Happy Working!
News For Todays ARSBD UpWorkElanceTests ARSBD-JOBS DesignerTab UpLance