Thursday, April 11, 2019

Stretch Therapy Toronto


Stretch Studio will help you feel better, move better and sleep better. We start by showing you how to relax and alignment (we call this “flexibility”) and by teaching you how to remove restrictions to movement.

Body Stretch therapy (ST) is a comprehensive system that includes stretching, Fascial stretch therapy, Stretching exercises, neural re-patterning, and relaxation.

Stretch Therapy is the Best, safest, most efficient Full body stretch method available if you want to experience grace and ease in your daily life, whether you are a worker or an athlete.

Stretch Therapy is used by women, teenagers, and people of all ages, all around the world. Please Visit some Important links.





https://www.2findlocal.com/b/13043826/flxme-stretch-studio-toronto-on

https://about.me/flxme

http://www.brownbook.net/business/45801824/flxme-stretch-studio

https://ca.enrollbusiness.com/BusinessProfile/4001659/Flxme-Stretch-Studio-Toronto-ON-M4S-2M5

https://www.callupcontact.com/b/businessprofile/Flxme_Stretch_Studio/7182957

https://www.cybo.com/CA-biz/flxme-stretch-studio

https://www.cylex.ca/company/flxme-stretch-studio-24051221.html

https://www.find-us-here.com/businesses/Flxme-Stretch-Studio-Toronto-Ontario-Canada/33052236/

https://find-open.ca/toronto/flxme-stretch-studio-648394

https://fonolive.com/b/ca/toronto-on/physiotherapist/17954440/flxme-stretch-studio

https://foursquare.com/v/flxme-stretch-studio/5ca54eade65d0c002cf2d608

https://www.hotfrog.ca/company/1196173288165376

https://www.ibegin.com/directory/ca/ontario/toronto/flxme-stretch-studio-573-mt-pleasant-rd/

https://www.iglobal.co/united-states/toronto/flxme-stretch-studio

https://issuu.com/flxmestretchstudio

http://lekkoo.com/v/5ca651ae5c4940ec06000030/Flxme_Stretch_Studio/#lat=0.000000&lng=0.000000&zoom=2

https://www.linkcentre.com/profile/flxmestretchstudio/

https://www.n49.com/biz/3214862/flxme-stretch-studio-on-toronto-573-mt-pleasant-rd/

https://www.quora.com/profile/Flxme-Stretch-Studio

https://www.slideshare.net/flxmestretchstudio

http://tupalo.com/en/toronto-ontario/flxme-stretch-studio

https://www.tuugo.me/Companies/flxme-stretch-studio/0080005707537

https://yelloyello.com/places/flxme-stretch-studio

Wednesday, January 9, 2013

oDesk PHP 5 Test Answers

oDesk PHP 5 Test Answers

1. Question: What is true regarding this code?
Answer: setcookie will return true
2. Question: Which of the following is not a correct way of printing text in php5?
Answer: echo “Plain text”;
3. Question: Which of the following is not the correct way of starting a session?
Answer: session_initiate()
4. Question: Which of the following functions do you need to implement HTTP Basic Authentication?
Answer: None of the above
5. Question: Which of the following Command Line Interface constant is not defined in the CLI SAPI?
Answer: STDPRT
6. Question: Which of the following statements is correct with regard to final and abstract?
Answer: a. An abstract class cannot have final methods
7. Question: Which composite data types are supported by php?
Answer: Array
8. Question: The default value of register_globals in PHP is:
Answer: Off
9. Question: Which of the following is not a valid PHP connection status?
Answer: open
10. Question: Choose the correct statement:
Answer: include() includes and evaluates a specific file
require_once() includes and evaluates a specific file only if it has not been included before
11. Question: If the session_cache_expire() is not set, then by default the session cache will expire after:
Answer: 3 hrs
12. Question: What will be the output of the following script?
$count=50;
Paamayim Nekudotayim operator allows access only to the static members of a class?
Paamayim Nekudotayim operator allows access only to the static members of a class?
Answer: function_exists
$i=4;
User Name:
Password:
class Manager{
Answer: 5+2 * 4+6
$var = 1 + “-1.3e3″;
function Argument()
{
$count++;
echo $count;
}
Argument();
?>
Answer: It will print 1
13. Question: State whether True or False
Answer: True
14. Question: Which of the following statements is true with regard to comparisons in PHP5?
Answer: With (===) operator, object variables are identical if and only if they refer to the same instance of the same class.
15. Question: What will be the output of the following code?
$a = 0.0;
for ($i = 0; $i < a ="="">
Answer: 1
16. Question: What will be the output of the following code?
$j=30;
$k=0;
$k=$j++/$i++;
echo $i . ” ” . $j . ” ” . $k . ” “;
Answer: 5 31 7.5
17. Question: Which of the following is a not a correct way of commenting in php?
Answer: /#PHP Comment
18. Question: Following is a php code block:
$m=9;
$n=99;
$z=8;
$z=$n++/$m++ + –$z;
echo $z;
what will be the output?
Answer: 18
19. Question: Which of the following is the correct way of specifying default value?
Answer: function GetDiscount($Type = “Special”) { . . . }
20. Question: With reference to the following php script:
print ‘Text Line1′
print ‘Text Line2′
?>
What will be the output on running the script?
Answer: Error message will be printed
21. Question: What will be the ouput of the following code?
for ($i = 0; $i < i ="="">
0134
Question: Late PHP versions support remote file accessing for the functions:
Answer: include_once()
require_once()
both of them
22. Question: You have designed a user login form as follows:
How can you access the username entered by the user in the ‘Validate.php’ webpage?
a. $var= $_POST['username'];
b. $var= $_REQUEST['username'];
c. import_request_variables(‘p’, ‘p_’);
$var= $p_username;
Answer: Both of them
23. Question: Which of the following does not represent logical AND operator in PHP?
Answer: &amp
24. Question: Which of the following is not true for a persistent connection?
Answer: These can’t be converted to non-persistent connections
25. Question: Which of the following are invalid data types in PHP?
Answer: char
26. Question: The Manager and Office classes are as follows:
function printName() {
echo “Manager”;
}
}
class Office{
function getManager() {
return new Manager();
}
}
$ofc = new Office();
???
?>
Which of the following should replace ‘???’ to obtain the value of printName() function?
Answer: $ofc->getManager()->printName();
27. Question: The classes are defined as follows:abstract class BaseCls{
protected abstract function getName();
}
class ChildCls extends BaseCls{
}
Which of the following implementations of getName() is invalid in ChildCls?
Answer: public function getName(){}
28. Question: Which of the following variable declarations within a class is invalid in PHP5?
Answer: var $term =3;
29. Question: What will be the output of following code?
$arr = “a”;
$arr[0]=”b”;
echo $arr;
echo $arr[0];
Answer: bb
30. Question: For the following code:
the output will be:
Answer: 171
31. Question: What is the result of the following expression?
Question: What will be the output of following code?
echo $var;
Answer: -1299
32. Question: What will be the output of following code?
$var1=”a”;
$$var1=”b”;
echo “$var1 $a”;
Answer: a b
33. Question:What is the output of the following code?
$a = 500;
$b = 200;
echo $a % 2
* $b;
?>
Answer: 0
34. Question: What will be the ouput of the following code?
if (-1)
print “true”;
else
print “false”;
?>
Answer: true
35. Question: What will be the output of the following code?
echo 12 . 6;
Answer: 126

36. Question: Consider the following sample code:
$x = 0xFFFE;
$y = 2;
$z = $x && $y;
What will be the value of $z?
Answer: 1

oDesk Java Programming Test Answers

oDesk Java Programming Test Answer 

 
1. Question: What is the java.net.IDN class in 1.6?
Answer: Methods to convert internationalized domain names (IDNs) between a normal Unicode representation and an ASCII Compatible Encoding (ACE) representation
 
2. Question: What will be the output of the following program?public class Test
{
public static void main (String args[]) throws Exception
{
Test o = new Test ();
System.out.println (o.content ());
}
public String content () throws Exception
{
throw new Exception (“This is an exception on this.content ()”);
}
private static class B
{
public String content ()
{
return ”B”;
}
}
private static class A extends B
{
public String content ()
{
return ”A”;
}
}
}
Answer: The code will compile but throw an exception at runtime
 
3. Question: Which of these interfaces are used by implementations of models for JTable?
Answer: TableColumnModel
 
4. Question: How many times can classes be nested within a class?
Answer: Any number of times
 
5. Question: One method in your application needs to be synchronized. Which of the following options are correct for synchronization?
Answer: public void Process(){ synchronized(this){ } }
public void synchronized Process(){}
 
6. Question: What could be the replacement of “//ABC” in the following code?public class Jam
{
public void apple(int i, String s)
{}
//ABC
}
Answer: public void apple(String s, int i){}
public void Apple(int i, String s) {}
 
7. Question: What will be the output when the following code is compiled and run?public class Test
{
public static void main (String args[])
{
int i;
i = 3;
System.out.println ((int)i * 2.5 / 3.0);
}
}
The code will print 2.5
8. Question: What would happen on trying to compile and run the following code?public class MainCls
{
public static void main(String argv)
{
System.out.println(“My Text”);
}
}
Answer: The code will compile. A runtime error will occur because ‘main’ is not properly defined
 
9. Question: What will be the output when this code is compiled and run?public class Test
{
static int x = 10;
public Test ()
{
Bar b = new Bar ();
Bar b1 = new Bar ();
update (b);
update (b1);
}
private void update (Bar bar)
{
bar.x = ++x;
System.out.println (bar.x);
}
public static void main (String args[])
{
File f = new File(“/”,”autoexec.bat”); b.DataInputStream d = new DataInputStream(System.in);c.RandomAccessFile r = new RandomAccessFile(“OutFile”); d.OutputStreamWriter o = newOutputStreamWriter(System.out);
}
private class Bar
{
public int x = 10;
}
}
The code will fail to compile
Answer: 11 12
 
10. Question: Which of the following statement will not compile?
Answer: RandomAccessFile r = new RandomAccessFile(“OutFile”);
 
11. Question: Which of the following are “keywords” in Java?
Answer: default
 
12. Question: Which of the following statements is true of the HashMap class?
Answer: It stores information as key/value pairs
 
13. Question: How does the set collection deal with duplicate elements?
Answer: The add method returns false if you attempt to add an element with a duplicate value
 
14. Question: What is wrong with the following code?class X extends Exception {}
public class Y
{
public void foo()
{
try {
b();
}
finally {
ba();
}
catch (MyException e) {}
}
public void b() throws X {
throw new X();
}
public void ba() throws RuntimeException {
throw new RuntimeException();
}
}
Answer: None of the above
 
15. Question: Is the following code valid?InetAddress ad = InetAddress.getByName (“195.186.2.111″);
Answer: Yes
 
16. Question: Which of the following cannot apply to constructors?
Answer: Void return type
 
17. Question: Choose the correct declarations for the main() method which will allow the class to be run as a standalone program.
Answer: public static void main(String str[])
 
18. Question: For a class defined inside a method, what rule governs access to the variables of the enclosing method?
Answer: The class can only access transient variables
 
19. Question: A method can be defined as native to:
Answer: Get to access hardware that Java does not know about
Write optimized code for performance in a language such as C/C++
 
20. Question: What will be the output of the following line?System.out.println(Math.floor(-2.1));
Answer: -3.0
 
21. Question: For the given variables, which of the following will compile without an error?char c = ‘c’;
int i = 50;
double d = 80;
long l = 200;
String s = “Goodbye”;
Answer: s+=i;

oDesk Joomla 1.5 Test Answers 2013

1. Question: What is the default super administrator account for Joomla called?
Answer: Administrator

2. Question: Which of the following PHP directives are important to Joomla execution to define an alternate compression library if the standard library is not available?
Answer: extension_dir

3. Question: Which of the following files is archive and contains the actual CB component that you must install into Joomla while downloading CB?
Answer: com_comprofiler

4. Question: Which option will you choose to set the site metadata for the installed website?
Answer: Global Configuration

5. Question: What will happen if we set the SSL enabled option to On?
Answer: This option will make the link from the menu begin with an https://

6. Question: The core editor events apply to plug-ins that provide editor functionality such as TinyMCE or XStandard Lite.
Answer: True

7. Question: Which PHP file does the index.php file load to provide the menu bar to the administrator interface?
Answer: Toolbar.php

8. Question: Which of the given database systems is supported by Joomla?
Answer: Mysql

09. Question: Which of the following is the default editor of Joomla?
Answer: TinyMCE

10. Question: Joomla provides an abstracted method called getEscaped() that returns the escaped string regardless of the target database.
Answer: False

11. Question: From which package are the classes (i.e JSite, JAdministrator and JInstallation) which make up the Joomla CMS application extended?
Answer: Installer

12. Question: What is not true about JoomlaXplorer?
Answer: None of the above

13. Question: Which of the following is a system event?
Answer: OnDisplay

14. Question: Which Joomla file provides the central logic of the template, including any module and component display?
Answer: Index.php

15. Question: When will you use SMTP authentication mail settings?
Answer: When you want to use an internal mail server

16. Question: What do you understand by the type of error?
Answer: It means that STRICT_ALL_TABLES is enabled

17. Question: Which path variable holds the path of the currently executing application?
Answer: All of the above

18. Question: Which user events occur with plug-ins that are installed for the front end of the system?
Answer: Both a and b

19. Question: Which type of positioning elements define a concrete area such as a p, td, div or table in a CSS file?
Answer: Block elements

20. Question: Which of the following files does the “/includes” directory not contain?
Answer: None of the above

21. Question: Which option will you select to install or to add the module to your website?
Answer: C

22. Question: Why does Joomla use templateDetails.xml files?
Answer: All of the above

23. Question: Which of the following events is activated after content rendering is complete for content type plug-ins?
Answer: OnAfterDisplayContent

24. Question: All the Joomla settings are contained within a PHP class called JConfig.
Answer: True

25. Question: In which PHP file is the central configuration data for Joomla contained?
Answer: configuration.php

26. Question: What is not true about the MD5 hash value?
Answer: Each password in Joomla is stored as a MD5 hash value

27. Question: There are two root classes for the Joomla framework: JFactory and JVersion.
Answer: True

28. Question: Which option will you select to find unpublished articles?
Answer: Article manager

29. Question: What do you understand from the following code?
Answer: SQL statement is executed against the Joomla database to find empty data fields

30. Question: Which SEO settings will you activate to make Joomla article URL shown in picture A appear as shown in picture B?
Answer: B

31. Question: In which option are errors, warnings and references logged?
Answer: None of the above

32. Question: Which type of files can media manager not upload?
Answer: None of the above

33. Question: Which among the following switches display the current version of PHP?
Answer: v

34. Question: The Joomap extension uses the style-sheets from the currently selected default template to display the sitemap in the site style.
Answer: True

35. Question: Which type of server technology is used by Joomla?
Answer: All of the above

36. Question: Which of the following is not true about the FrontPage Manager?
Answer: You cannot select your content for the FrontPage from all the contents

37. Question: What happens if the Text Separator Field is left empty while using the breadcrumbs module in the module manager?
Answer: None of the above

38. Question: Which of the following support libraries must you include when you are doing a manual compile of PHP to use with Joomla?
Answer: All of the above

39. Question: What is the role of the template metadata file in the system?
Answer: It contains the basic authorship information

40. Question: The index.php file is a combination of HTML and PHP code.
Answer: True

oDesk Call Center Skills Test Answer


 
Twitter Bird Gadget UA-33677056-1