Project Manager Questions


Q:

Which of the following is a form of functional testing?

A) Security testing B) Performance testing
C) Boundary value analysis D) Usability testing
 
Answer & Explanation Answer: D) Usability testing

Explanation:

Functional testing is a type of testing that is done against the requirements of the business application. 

Which_of_the_following_is_a_form_of_functional_testing1552046654.png image

Examples of functional testing are Smoke testing, Sanity testing, Regression testing, Usability testing.

Report Error

View Answer Report Error Discuss

30 20181
Q:

PHP allows you to send emails directly from a script.

php allows you to send emails directly from a script

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The mail() function allows you to send emails directly from a script.


 

Report Error

View Answer Workspace Report Error Discuss

Subject: PHP
Exam Prep: Bank Exams
Job Role: IT Trainer , Project Manager , Software Architect

88 20123
Q:

Magnetic disks are the most popular medium for

A) Sequential access B) Direct access
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

A magnetic disk is a storage device that uses a magnetization process to write, rewrite and access data. It is covered with a magnetic coating and stores data in the form of tracks, spots, and sectors. Hard disks, zip disks, and floppy disks are common examples of magnetic disks.

Magnetic_disks_are_the_most_popular_medium_for11558071061.png image        Magnetic_disks_are_the_most_popular_medium_for1558071122.png image

 

 

Hence, Magnetic disks are the most popular medium for both Direct access and Sequential access.

 

 

Report Error

View Answer Report Error Discuss

24 20072
Q:

A relational database developer refers to a record as

A) a relation B) an attribute
C) a criteria D) a tuple
 
Answer & Explanation Answer: D) a tuple

Explanation:

A relational database developer refers to a record as a tuple.

Report Error

View Answer Report Error Discuss

41 19943
Q:

The Computer size was very large in

A) Fourth Generation B) Third Generation
C) Second Generation D) First Generation
 
Answer & Explanation Answer: D) First Generation

Explanation:

The First Generation Computers size was very large. 

 

Since the First generation computers used 1000s of vacuum tubes that required lot of space made them gigantic in size. Single transistor could replace 1000 vacuum tubes and a single IC chip replaced 1000s of transistors made computers smaller and more speedy.

 

It is obvious that computers developed with more power, reliability, speed and smaller sizes due to the enhancement of technology.

Report Error

View Answer Report Error Discuss

34 19900
Q:

A world wide web contains web pages

A) residing in many computers linked together using HTML. B) with links to other web pages.
C) residing in many computers. D) created using HTML.
 
Answer & Explanation Answer: A) residing in many computers linked together using HTML.

Explanation:

A_world_wide_web_contains_web_pages1551768792.jpg image

A world wide web contains web pages residing in many computers linked together using HTML.

Report Error

View Answer Report Error Discuss

27 18357
Q:

In the following pieces of code, B and D will compile without any error. True or false ?

A: StringBuffer sb1 = "abcd";

B: Boolean b = new Boolean("abcd");

C: byte b = 255;

D: int x = 0x1234;

E: float fl = 1.2;

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

The code segments B and D will compile without any error. A is not a valid way to construct a StringBuffer, you need to create a StringBuffer object using "new". B is a valid construction of a Boolean (any string other than "true" or "false" to the Boolean constructor will result in a Boolean with a value of "false"). C will fail to compile because the valid range for a byte is -128 to +127 (i.e., 8 bits, signed). D is correct, 0x1234 is the hexadecimal representation in java. E fails to compile because the compiler interprets 1.2 as a double being assigned to a float (down-casting), which is not valid. You either need an explicit cast, as in "(float)1.2" or "1.2f", to indicate a float.

Report Error

View Answer Workspace Report Error Discuss

16 18354
Q:

One type of liquid contains 25 % of benzene, the other contains 30% of benzene. A can is filled with 6 parts of the first liquid and 4 parts of the second liquid. Find the percentage of benzene in the new mixture.

A) 27 % B) 26 %
C) 29 % D) 21 %
 
Answer & Explanation Answer: A) 27 %

Explanation:

Let the percentage of benzene = X
(30 - X)/(X- 25) = 6/4 = 3/2
=> 5X = 135  
X = 27

So, required percentage of benzene = 27 %

Report Error

View Answer Report Error Discuss

30 18019