0

programming languages Online Quiz - 41

Description: programming languages Online Quiz - 41
Number of Questions: 20
Created by:
Tags: programming languages
Attempted 0/20 Correct 0 Score 0

The company's major commercial competitors are ________, Oracle Corporation, and SAP AG.

  1. IBM & Oracle Corporation

  2. Hewlett-Packard

  3. General Electric

  4. Intel Corporation


Correct Option: A

In addition, TIBCO offers the ________ products Rendezvous and SmartSockets (from Talarian acquisition).

  1. Advanced Message Queuing Protoco

  2. Java Message Service

  3. Message-oriented middleware

  4. Message queue


Correct Option: C

In 2009, TIBCO enters the grid computing and ________ markets by acquiring DataSynapse.

  1. BitTorrent (protocol)

  2. Cloud computing

  3. Representational State Transfer

  4. Netbook


Correct Option: B

What is the company slogan of Tibco Software?

  1. Convenience, Pricing, Control, Privacy

  2. Powering the Mobile Experience

  3. We are the growers and you can taste it!

  4. The Power of Now


Correct Option: D

Where is the headquarters of the Tibco company?

  1. Venezuela

  2. Carmarthenshire

  3. Palo Alto, CA

  4. Newark, New Jersey


Correct Option: C

What industry is Tibco Software in?

  1. Digital IP

  2. Bicycle industry until 1915

  3. Inventory control system Hospitality Systems, Computer hardware

  4. Computer Software


Correct Option: D

Greg the Architect has been used in print as a ________ in many industry magazines covering SOA and BPM.

  1. Comic strip

  2. Comics

  3. Comic strip formats

  4. National Cartoonists Society


Correct Option: A

_____ is a workplace communication tool designed to allow users to follow a range of granular subjects and machines, rather than just people.

  1. TIBCO BusinessEvents

  2. TIBCO Spotfire

  3. tibbr

  4. TIBCO ActiveMatrix


Correct Option: C

Which year TIBCO went public on the NASDAQ Stock Market under the ticker symbol TIBX

  1. June 1998

  2. July 1999

  3. May 1996

  4. August 1999


Correct Option: B

When was Tibco Software founded?

  1. 1925

  2. 1760

  3. 1989

  4. 1985


Correct Option: D

How many comparisons can a single COBOL if statement make?

  1. 1

  2. 2

  3. There is no limit

  4. COBOL if statements are not used to compare variable values


Correct Option: A

Which of the following errors are possible within a COBOL if statement?

  1. Infinite loop

  2. Logical Error

  3. Runtime error

  4. All of the above


Correct Option: D

The COBOL perform loop is the equivalent of which of the following structures found in other languages, such as Java or C++

  1. For loop

  2. Do-While loop

  3. Method

  4. None of the above


Correct Option: B

If someone wanted a COBOL perform "loop" to execute once before the condition is checked, which of the following would they do?

  1. Use a standard perform statement

  2. Use an in line perform

  3. Skillful use of the COBOL reserved word "AFTER"

  4. This is not possible in COBOL


Correct Option: C

A = 0, B = 9….. Perform until a > b Add 2 to a End-perform How many additions are performed?

  1. 3

  2. 4

  3. 5

  4. 6


Correct Option: C

AI Explanation

To determine how many additions are performed until a > b, let's go through each step:

Step 1: A = 0, B = 9 (Initial values) Step 2: Add 2 to A (A = A + 2) -> A = 2 Step 3: Check if A > B (2 > 9) -> False Step 4: Add 2 to A (A = A + 2) -> A = 4 Step 5: Check if A > B (4 > 9) -> False Step 6: Add 2 to A (A = A + 2) -> A = 6 Step 7: Check if A > B (6 > 9) -> False Step 8: Add 2 to A (A = A + 2) -> A = 8 Step 9: Check if A > B (8 > 9) -> False Step 10: Add 2 to A (A = A + 2) -> A = 10 Step 11: Check if A > B (10 > 9) -> True

The condition a > b is satisfied after 5 additions (Step 2 to Step 11). Therefore, the correct answer is C) 5.

If an IF statement is true, what’s the first thing it does?

  1. Exits the statement

  2. Executes the function

  3. Exits the Program

  4. Executes the If statement again


Correct Option: B

Not negative means

  1. Equal to 0

  2. Greater than or equal to 1

  3. Less than or equal to 0

  4. Greater than or equal to 0


Correct Option: D

Which of the following is NOT a valid symbol to use in an IF condition

  1. =

  2. =

  3. =>

  4. >


Correct Option: C

Which is the correct ASCII collating sequence?

  1. spaces, special characters, 0-9, A-Z, a-z

  2. spaces, a-z, A-Z, 0-9, special characters

  3. a-z, A-Z, 0-9, spaces, special characters

  4. 0-9, special characters, spaces, a-z, A-Z


Correct Option: A

The word COBOL is an acronym for what?

  1. It is not an acronym.

  2. COmputer Basic Operating Language

  3. COmmon Business Oriented Language

  4. Common OBservation Official Language


Correct Option: C
- Hide questions