Mixed Technology Fundamentals Quiz

A general technology quiz covering JavaScript programming basics, Business Objects/data warehouse concepts, and networking fundamentals including DNS configuration.

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

What is the IP Address of Local host on your workstation?

  1. 127.0.0.1
  2. 0.0.0.0
  3. 127.0.0.0
  4. 255.255.255.255
Question 2 Multiple Choice (Single Answer)

How do you get the IP address and Network Adapter address of your workstation?

  1. hostname
  2. ifconfig
  3. ipconfig
  4. ipaddress
Question 3 Multiple Choice (Multiple Answers)

Why do you use hosts.txt file on any system?

  1. Bypass the local DNS server
  2. Host a website on your system
  3. Set the IP address for localhost
  4. No such file exists on the systemNo such file exists on the system
Question 4 True/False

Identify whether the following statement is True or False?

  1. True
  2. False
Question 5 Multiple Choice (Single Answer)

How do you flush DNS your local machine?

  1. flush
  2. flushdns
  3. ipconfig /flushdns
  4. This cannot be done
Question 6 Multiple Choice (Single Answer)

What is the correct JavaScript syntax to write "Hello World"?

  1. ("Hello World")
  2. "Hello World"
  3. document.write("Hello World")
  4. response.write("Hello World")
Question 7 Multiple Choice (Single Answer)

Where is the correct place to insert a JavaScript?

  1. The <head> section
  2. The <body> section
  3. Both the <head> section and the <body> section are correct
  4. none
Question 8 Multiple Choice (Single Answer)

What is the correct syntax for referring to an external script called "xxx.js"?

  1. <script name="xxx.js">
  2. <script src="xxx.js">
  3. <script href="xxx.js">
  4. none
Question 9 True/False

An external JavaScript must contain the

  1. True
  2. False
Question 10 Multiple Choice (Single Answer)

How do you write "Hello World" in an alert box?

  1. msgBox("Hello World")
  2. alertBox="Hello World"
  3. alertBox("Hello World")
  4. alert("Hello World")
Question 11 Multiple Choice (Single Answer)

How can you add a comment in a JavaScript?

  1. <!--This is a comment-->
  2. //This is a comment
  3. 'This is a comment
  4. ?this is a comment ?
Question 12 Multiple Choice (Single Answer)

What is the correct way to write a JavaScript array?

  1. var txt = new Array("tim","kim","jim")
  2. var txt = new Array="tim","kim","jim"
  3. var txt = new Array(1:"tim",2:"kim",3:"jim")
  4. var txt = new Array:1=("tim")2=("kim")3=("jim")
Question 13 Multiple Choice (Single Answer)

How do you round the number 7.25, to the nearest integer?

  1. round(7.25)
  2. Math.rnd(7.25)
  3. Math.round(7.25)
  4. rnd(7.25)
Question 14 Multiple Choice (Single Answer)

How do you find the number with the highest value of x and y?

  1. top(x,y)
  2. Math.ceil(x,y)
  3. ceil(x,y)
  4. Math.max(x,y)
Question 15 Multiple Choice (Single Answer)

What is the correct JavaScript syntax for opening a new window called "w2" ?

  1. w2=window.new("http://www.w3schools.com");
  2. w2=window.open("http://www.w3schools.com");
  3. w2=new.open("http://www.w3schools.com");
  4. w2=new.window("http://www.w3schools.com");
Question 16 Multiple Choice (Single Answer)

What all can be used as a data provider in BO?

  1. .asc, .prn, .txt, .csv, .xls, .mdb
  2. .asc, .txt, .csv, .xls., .dbf
  3. asc, .prn, .txt, .csv, .xls, .dbf
  4. asc, .prn, .txt, .csv, .xls, .xml , .dbf
Question 17 Multiple Choice (Single Answer)

Which statement of the following is true

  1. Data Mart & DWH both are normalized and can exist in same tier
  2. Data Mart is normalized but DWH is not and they cannot exist in same tier.
  3. DWH is normalized but Data Mart is not and they can exist in same tier.
  4. Both Data Mart & DWH are denormalized and can exist in same tier.
Question 18 Multiple Choice (Single Answer)

What is report Purge?

  1. Deleting the report.
  2. The deletion of all the data fetched by the query.
  3. Deleting the report structure.
  4. Refreshing the report
Question 19 Multiple Choice (Single Answer)

A variable defined in a report is available

  1. For one tab
  2. For all tabs of the report
  3. Depends how it is defined as global or local.
  4. B and C both
Question 20 Multiple Choice (Single Answer)

Which of the following is the way to force a restriction?

  1. Create a conditional select using the appropriate database function.
  2. Infer a where clause using the where statement of an objects properties.
  3. Apply a restriction set to a group of users that forces a row level where clause.
  4. A and C
  5. All of the above