Skip to main content

Accenture TFA MCQ | Part 2

 

Question 26

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

Go-Will department store wants to automate few of its functionalities.From the below options identify the functional requirements of Go-Will department store

Select one or more:
 
 
 
 

Feedback

Question 27

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

A website for Flight Booking was developed and given to the testing team for testing. It has various fields to enter the data, out of which one of the input field will take the birth year from the user ranging from 1980 to 2060. The boundary values for testing this field are?

Select one:
 

Feedback

Question 28

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

After the development of online website for global pharmacy , it was found that there were interface errors in few of the modules. In which level of testing these errors would be identified.

Select one:
 

Feedback

Question 29

Correct
Mark 1.00 out of 1.00
Flag question

Question text

In Oracle “Salary number(8,2)” can store which format of data?

Select one:
 

Feedback

Question 30

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

Predict the output of the below SQL Statement

SELECT branch_name, COUNT(DISTINCT customer_name) FROM Account GROUP BY branch_id;

Select one:
 

Feedback

Question 31

Correct
Mark 1.00 out of 1.00
Flag question

Question text

In traditional approach the information was stored in ____________

Select one:
 

Feedback

Question 32

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which of the following keywords is used with Data Control Language statements?

Select one:
 

Feedback

Question 33

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which values are ignored by count(*) function?

Select one:
 

Feedback

Question 34

Correct
Mark 1.00 out of 1.00
Remove flag

Question text

What options can be avoided by storing data in centralized repository?

Select one or more:
 
 

Feedback

Question 35

Correct
Mark 1.00 out of 1.00
Flag question

Question text

which of the following option can be used ,in order to quit vi editor without saving the work done ?

Select one:
 

Feedback

Question 36

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which command in UNIX displays the list of all the users who have logged into the Unix server?


Select one:
 

Feedback

Question 37

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Unix Terminals are called Dummy terminals as they do not have _____________ capability.

Select one:
 

Feedback

Question 38

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

What does the below Unix command accomplish? 

$ vi sample

Select one:
 

Feedback

Question 39

Correct
Mark 1.00 out of 1.00
Flag question

Question text

What does the below Unix command accomplish? 

$ sed 's/ABC/ZYX/' file.txt

Select one:
 

Feedback

Question 40

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which of the following layer acts as an interface between user and kernel ?


Select one:
 

Feedback

Question 41

Correct
Mark 1.00 out of 1.00
Flag question

Question text

If you have to prevent the code from running before the document has finished loading then what Jquery function needs to be used?

Select one:
 

Feedback

Question 42

Correct
Mark 1.00 out of 1.00
Flag question

Question text

What is used in an HTML page to give instruction to the web browser about the version of HTML being used?

Select one:
 

Feedback

Question 43

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which tag in html is used to display a horizontal line (rule) in the document ?

Select one:
 

Feedback

Question 44

Correct
Mark 1.00 out of 1.00
Flag question

Question text

What would be the code to set all elements under the

tag to green

Select one:
 

Feedback

Question 45

Correct
Mark 1.00 out of 1.00
Flag question

Question text

What would be the code to set all elements under the tag to green

Select one:
 

Feedback

Question 46

Correct
Mark 1.00 out of 1.00
Flag question

Question text

What is the output of the following code?

  
<script type="text/javascript">
x=4+"4";
document.write(x);
</script>
 

Select one:
 

Feedback

Question 47

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Find out the well-formed xml file

Select one:
 

Feedback

Question 48

Correct
Mark 1.00 out of 1.00
Flag question

Question text

Comment in XML document is given by

Select one:
 

Feedback

Question 49

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

Which of the following fragments of XML are well-formed

Select one:
 

Feedback

Question 50

Incorrect
Mark 0.00 out of 1.00
Flag question

Question text

What is the correct XPATH that selects all the state elements that have a "speak" attribute with a value of "HIN"

Select one:
 

Feedback

Comments

Must Read:

Data Formats ( XML & JSON ) XML AND JSON XML AND JSON | Quiz 2 & 3

Data Formats ( XML & JSON )  XML AND JSON  XML AND JSON Quiz 2 & 3  

Programming using Java Hands On - Control Structures | Print Customer Details

Print Customer Details Help Mr.Ben who is a programmer, in developing a registration form on console. Customers will not just input data, but also view the details once he/she finishes the registration.  Sample Input 1: Enter your name:Jany Enter age:25 Enter gender:Female Hailing from:Mexico Sample Output 1: Welcome, Jany Age:25 Gender:Female City:Mexico Result Description Summary of tests *Note: All the test cases might not have same weightage +------------------------------+ | 5 tests run/ 5 tests passed | +------------------------------+

Data Formats ( XML & JSON ) XML AND JSON | Pre-Quiz

Data Formats ( XML & JSON )  XML AND JSON  Pre-Quiz  

RDBMS Data Definition Language | Drop Mobile Specification table (parent)

  RDBMS  Data Definition Language  Drop Mobile Specification table (parent) Refer the following schema and drop Mobile Specification table. (Hint: To drop parent table all associate tables need to be dropped or Use 'cascade constraints' command) Evaluation Result: Result Description Summary of tests +------------------------------+ | 1 tests run / 1 test passed | +------------------------------+

UNIX Introduction to Unix

  Calendar1 Display the previous, current and next month calendar of the  year 1987 august Calendar2 Display and see what is the specialty of September 1752. Calendar 5 Write a command to display the previous, current and next month calendar of the year 2015 December.

Min Cost In Maze Traversal

1. You are given a number n, representing the number of rows. 2. You are given a number m, representing the number of columns. 3. You are given n*m numbers, representing elements of 2d array a, which represents a maze. 4. You are standing in top-left cell and are required to move to bottom-right cell. 5. You are allowed to move 1 cell right (h move) or 1 cell down (v move) in 1 motion. 6. Each cell has a value that will have to be paid to enter that cell (even for the top-left and bottom-       right cell). 7. You are required to traverse through the matrix and print the cost of path which is least costly. Input Format A number n A number m e11 e12.. e21 e22.. .. n * m number of elements Output Format The cost of least costly path. Constraints 1 <= n <= 10^2 1 <= m <= 10^2 0 <= e1, e2, .. n * m elements <= 1000 Sample Input 6 6 0 1 4 2 8 2 4 3 6 5 0 4 1 2 4 1 4 6 2 0 7 3 2 2 3 1 5 9 2 4 2 7 0 8 5 1 Sample Output 23 Solution: import java.io.*; import...

Programming using Java Hands On - Control Structures | Check for Leap Year

  Given a year, check if the year is leap year or not.  If yes, the output should be “Leap Year”.  Else output should be “Not a Leap Year”.  The input should be a positive four digit number.  Else,  the output should be “Invalid Year”. Sample Input  1 : Enter the Year 2016 Sample Output  1 : Leap Year Sample Input  2 : Enter the Year 2001 Sample Output  2 : Not a Leap Year Result Description Summary of tests *Note: All the test cases might not have same weightage +------------------------------+ | 12 tests run/12 tests passed | +------------------------------+

Programming using Java Hands On - Control Structures | Bill Generation

Bill Generation Tom went to a movie with his friends in a multiplex theatre and during break time he bought pizzas, puffs and cool drinks.  Consider   the following prices :  Rs.100/pizza Rs.20/puffs Rs.10/cooldrink Generate a bill for What Tom has bought. Sample Input 1: Enter the no of pizzas bought:10 Enter the no of puffs bought:12 Enter the no of cool drinks bought:5 Sample Output 1: Bill Details No of pizzas:10 No of puffs:12 No of cooldrinks:5 Total price=1290 ENJOY THE SHOW!!! Result Description Summary of tests *Note: All the test cases might not have same weightage +------------------------------+ | 6 tests run/ 6 tests passed | +------------------------------+

Software Engineering Concepts Software Maintenance Test Your Understanding

  Software Engineering Concepts       Software Maintenance            Test Your Understanding

Subscribe to Get's Answer by Email