Certification Questions

Q:

Which of the following is an industry-wide standards suite of protocols and algorithms that allows for secure data transmission over an IP-based network that functions at the layer3 Network layer of the OSI model?

A) HDLC B) xDSL
C) VPN D) IPSec
 
Answer & Explanation Answer: D) IPSec

Explanation:

IPSec is an industry-wide standard suite of protocols and algorithms that allows for secure data transmission over an IP-based network that functions at the layer3 Network layer of the OSI model.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

24 9246
Q:

What is the output after compile and run the following code ?

int Output = 10;
boolean b = false;
if((b == true) && ((Output += 10) == 20))
{
System.out.println("We are equal " + Output);
}
else
{
System.out.println("Not equal! " + Output);
}

A) Compilation and output of "We are equal 10" B) Compilation and output of "Not equal! 10"
C) Compilation error, attempting to perform binary comparison on logical data type D) Compilation and output of "Not equal! 20"
 
Answer & Explanation Answer: B) Compilation and output of "Not equal! 10"

Explanation:

The output will be "Not equal! 10". Please note that && is logical AND operator. If first operand before (&&) is false then the other operand will not be evaluated. This illustrates that the Output +=10 calculation was never performed because processing stopped after the first operand was evaluated to be false. If you change the value of b1 to true, processing occurs as you would expect and the output would be "We are equal 20".

Report Error

View Answer Report Error Discuss

Filed Under: Oracle Certification
Job Role: Analyst

12 9160
Q:

How can an organization determine the effectiveness of the Service Level Management process?

A) By checking contracts with suppliers B) By measuring customer satisfaction
C) By defining service levels D) By reporting on all incidents
 
Answer & Explanation Answer: B) By measuring customer satisfaction

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: ITIL Certification

0 9020
Q:

The following are lot sizing rules available for SAP R/3?

A. Replenish to maximum stock level
B. Weekly lot size
C. Daily lot size
D. Fixed lot size

Answer

Answer : A ,B ,C

Report Error

View answer Workspace Report Error Discuss

Subject: SAP MM

20 8957
Q:

As a network administrator you have been requested to move a printer from your company's Marketing OU to your company's Research OU. After the move you test the printer and find that the local administrator assigned to the Marketing OU still has access and can remove print jobs from it. What can you do to change this?

A) Remove the permissions for the local administrator from the printer. B) Remove printer permissions from the local administrator.
C) Remove the Everyone group from the printer. D) Delete the printer object.
 
Answer & Explanation Answer: A) Remove the permissions for the local administrator from the printer.

Explanation:
Report Error

View Answer Report Error Discuss

29 8904
Q:

The DoD model (also called the TCP/IP stack) has four layers. Which layer of the DoD model is equivalent to the Network layer of the OSI model?

A) Application B) Host-to-Host
C) Internet D) Network Access
 
Answer & Explanation Answer: C) Internet

Explanation:

The four layers of the DoD model are Application/process, Host-to-Host, Internet, and Network Access. The Internet layer is equivalent to the Network layer of the OSI model.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

3 8854
Q:

Which dml command is used in conjunction with @@identity?

A) INSERT and UPDATE B) UPDATE and DELETE
C) SCOPE_IDENTITY and IDENT_CURRENT D) Commit and rollback
 
Answer & Explanation Answer: C) SCOPE_IDENTITY and IDENT_CURRENT

Explanation:

Using automatically incrementing IDENTITY columns is very popular with database developers. You don’t need to explicitly calculate unique surrogate keys when inserting new data, the IDENTITY column functionality does that for you. The IDENTITY feature also allows you to specify useful Seed and Increment properties. When you use an INSERT statement to insert data into a table with an IDENTITY column defined, SQL Server will generate a new IDENTITY value.

 

You can use the @@IDENTITY variable and the SCOPE_IDENTITY and IDENT_CURRENT functions to return the last IDENTITY value that has been generated by SQL Server. This is very useful when you need to return the key for the row that has just been inserted, back to the caller.

Report Error

View Answer Report Error Discuss

20 8839
Q:

At which layer is routing implemented , enabling connections and path selection between two end systems?

Answer

The Network layer provides routing through an internetwork and logical addressing.

Report Error

View answer Workspace Report Error Discuss

Subject: CCNA

17 8839