TCS Xplore PA/OPA MCQs Question and Answers
KYT
1. Technique include fluid layout design so that site can adjust according to the resolution of the device
a. Hybrid Design b. Adaptive Design
c. Responsive Design d. Progressive Design
2. Cloud services are massively scalable IT enabled capabilities which are delivered to external customers using Internet technology
a. TRUE b. FALSE
3. I need a software to install in my laptop to complete a critical delivery. Should I do it ?
a. Since a client will be expecting delivery, downloading the software can be done
b. Never make unauthorized copies of computer software program to use unlicensed software on company’s computer/laptop
4. Who founded TATA groups?
a. Dorabaji TATA b. Jamsetji TATA
c. NOEL TATA d. Ratan TATA
5. What are the problem associated with Big Data ?
a. All of the option
b. Not accustomed to dealing with such large quantities of data
c. Inexperience collecting data from nontraditional resources
d. Overlay complex with relatively slow system
Bizz Skill
1. What are the elements of Project Status Report?
a. Current Status, Area of Concern , Suggestions & Plan for Next phase
b. Current Status, Area of Concern
c. Current Status, Area of Concern , Plan for Next phase
d. Current Status, Area of Concern , Suggestions
2. What are the elements of conversation ?
a. Plan, Prepare, Close & Clarify along the way
b. Think, Know, Say, Close and Clarify
c. Think, Learn , Know, Say, Close and Clarify
d. Plan, Prepare, Listen, Close & Clarify along the way
3. Jennifer works as a Project Manager. She is required to provide a solution to beat the exponential increase in costs. What could be the best possible requirement?
a. Provide justification for the increase in cost
b. Avoid any audit necessary for cost control
c. Persuade the associates to spend addition working hours
d. Automation of the tasks which requires continuous monitoring & analysis
5. What is the aim of Project Development under digital learning program?
a. It is the art of delegating works to others and getting the appreciation
b. Complete the works assigned by managers within specified time frame to help organization to make more profit
c. Synthesize the technical and business skill set that help associate to become adaptive in digital business requirement
d. It is simply about writing long lines of code & integrating module at the end
Design & RiO
1. List three aspects that will be at stake, if a major impact on business has occurred due to outage
a. Integrity in Business b. Brand Reputation
c. Employee Utilization d. Sales Revenue
2. Developers should follow design principles to achieve which of the following quantities?
a. Maintainability b. Readability
d. Extensibility d. Simplicity
3. As per good programming practice it is better to __________ in code.
a. Minimize coupling & decrease cohesion
b. Maximize coupling & increase cohesion
c. Minimize coupling & increase cohesion
d. Maximize coupling & decrease cohesion
4. Rio provides TCSers with “RiO Workbench”, a framework that help us to benchmark our maturity in providing support.
a. TRUE b. FALSE
5. Do you think you know the secret to success ? Select the option that leads to success.
a. Continuous learning as it makes an individual have a steady growth in his career
b. Being Proactive
c. Continuous innovation and differentiation
d. Taking up responsibilities of his/her action
UNIX
1. What will be the output of the below command?
find . -type f -perm 0777 -print
a. Display all files who has all the three permission for all levels of users
b. Display all directories who has all the three permission for all levels of users
c. Display all files who has minimum level of permission for all levels of users
d. Display all folders who has all the three permission for all levels of users
2. Which awk script will give you the average of second column of the file named file1, which has ‘|’ as the delimiter
a. awk ‘BEGIN(FS=”|”;s=0)(s=s+$2)END(print s/NR)’ file1
b. awk ‘BEGIN{FS=”|”;s=0}{s=s+$2}END{print s/NR}’ file1
c. awk ‘BEGIN{FS=”|”;s=0}{s=s+$2}END{print s}’ file1
d. awk ‘BEGIN{FS=” ”;s=0}{s=s+$2}END{print s/NR}’ file1
3. What is the use of diff command & what is the correct syntax ?
a. diff file1 options file2 . This command is used to display the difference in the file by comparing the file line by line
b. diff options file1 . This command is used to compare the lines within the a file a display the lines which are different
c. diff options file1 file2 . This command is used to display the difference in the file by comparing the file line by line
d. diff file1 file2 options. This command is used to display the difference in the file by comparing the file line by line
4. What is the use of shebang line in Unix?
a. It indicates the directory in which the shell is saved.
b. A first line in the shell scripts which shell need to be execute the following command in the shell scripts
c. The line which contains the total numbers of lines in the shell scripts
d. None of the Above
MYSQL
1. Which is the significance of using a number in an order by clause?
a. Number used in an order by clause signifies the position of a column in a table
b. Number used in an order by clause signifies the position of a column in the select list
c. Number used in an order by clause signifies the position of a column in the where clause
d. Number cannot be used in a order by clause
2. Which of the following set of operation can be used to enable a multi value comparison within a single column?
a. CHCECK b. IS NULL
b. LIKE d. IN
3. What is the output of below Query:
USE CUSTOMER;
a. SQL command is used to select view named as “CUSTOMER”
b.
SQL command is used to select database named as
“CUSTOMER
a. SQL command is used to select table named as “CUSTOMER”
b. Wrong Query
UI
1. Which of the below is the correct way to set a font size?
a. h2 {font-size:200pixels;} b. h2 {font-size:200;}
b. h2 {font-size:200px;} d. h2 {font-size:200%;}
2. To specify table border in CSS _____ proper is used
a. table-border b. border
b. Tb-border D. tbl-border
3. Block element can be aligned by setting the left and right margin to “align”
a. TRUE b. FALSE
4. Output of the below script
<html>
<body>
<p id=”showresult”> <b> Welcome To TCS </b> </p>
<input type=”button” onclick=”display()” value=” Click Me”/>
<script>
function display()
{
b = document.getElementById(‘showresult’).innerHTML;
alert(b)
}
</script>
</body>
</html>
a. Internal Error b. None of the option
b. <b> Welcome TO TCS </b> d. Welcome To TCS
5. Output of below script.
<html>
<body>
<input type=”text” name=”Java” value=”JDK” />
<input type=”text” name=”Version” value=”1.8” />
<button onclick=”display()”> Display </button>
<div id = “content”></div>
<script>
function display() {
a = document.getElementByTagName(“input”);
document.getElementById(‘content’).innerText = a[0].value+a[1].value;
}
</script>
</body>
</html>
a. None of the Option b. JDK1.8
b. JavaVersion d. Internal Error
Python.
1. What is the output of the below code?
if 0:
print(“hai/”)
else:
print(“0 is falsy!”)
a. 0 b. NOT
b. hai d. 0 is falsy!
2. What is the output of below code?
tcs = {}
print(type(tcs))
a. <type ‘dict’> b. <type ‘list>
b. Array d. <type ‘tuple’>
Big Data Applications prefers large datasets over small datasets
a. TRUE b. FALSE
Which are the below listed options that we need to take care with respect to environment protection?
a. To prevent the wasteful use of natural resources
b. The management of waste and hazardous materials
c. Consumptions of water and electricity
d. All of the option
Reporting to any event(actual or potential) of misconduct that is not reflective in our values and principles can be done via.
a. Any other reporting channel set out in our company’s “Whistleblower’ policy.
b. Designated ethics officials of our company
c. Reporting is not required as we should not interfere in other personal work
d. Immediate line manager or the Human Resource department of our company
An associate is interested in Cloud, while his current project requires him to learn an Automation Testing Tool, in which he has no interest. How can the situation be handled effectively ?
a. Ask for a release from the current account and join a project that caters to his interest.
b. The associate can forget the personal choices for the time being and go ahead with the project requirement
c. The associate can prioritize the current need of the project. At the same time, he cater to personal interests by striking a fine ball of time and interest
d. The associate can express his disinterest in learning the new Automation Testing Tool to the project manager. The project manager instead can appoint another team member to learn the tool
How many hours of videos uploaded to YouTube every minute
a. 50 b. 80
b. 10 d. 100
Bizzskill
Advantages of Diversity include:
a. All of the options b. Fosters Innovation
b. Enhance employee engagement d. Improve business performance
Judging others person’s view solely based on our own values and culture is called :
a. Ethnocentrism b. Criticism
b. Centrality d. Diversity
Sarah, an associate, is a bit confused about dinning etiquette. For a business lunch, Sarah took the napkin and placed it on her lap. Which of the following does not come under the etiquette for napkin use?
a. Do not crumple or twist it; fold it casually
b. When leaving the table at the end of the meal, place the napkin loosely next to your plate
c. Keep the napkin on your lap during the entire meal. Lift it to blot your mouth if needed
d. If your napkin falls on the floor during a formal meal , pick it up.
General best practice for Telephone etiquette include :
A. Assuming proper posture
B. Speaking clearly & slowly
C. Smiling when speaking
D. Giving the call your full attention
E. Avoid confusion language
F. Speaking loudly
a. A , B, C b. All of the options
b. A, B, C, D, E d. B, C, D, F
Design
What is Single Responsibility Principle
a. One person gets one responsibility b. Do One thing at all levels
b. None of the options d. One class should perform a single task
According to KISS Design Principle, we should use features like frameworks, APIs only when there are perceptible benefits to the problem we are solving.
a. TRUE b. FALSE
What type of review must be done to determine the change success rate
a. pre-implementation review b. None of the options
b. Review is not required as it will be evaluated by clients d. post-implementation review
During a crisis, do not cascade incorrect updates to the customers and other associates. Always wait for confirmation from the
a. DR Team b. none of the options
b. BCP Manager d. Crisis Management Team
UNIX
Which one is the true regarding awk command?
a. BEGIN and END blocks are not Mandatory in all awk commands
b. Both BEGIN and END blocks are mandatory in all awk commands
c. A END block is always mandatory whereas BEGIN block is not
d. A BEGIN block is always mandatory whereas END block is not
Which command will print the last line of a file ?
a. head – 1 filename b. last -s filename
b. tail -1 filename d. lp -s filename
Select the command to read the input from the User in shell scripting?
a. scan b. ip
b. read d. input
UI
Which option/opinions correctly represent the code of creating and initializing a string variable?
a. var str1=’Hello’; b. var str1=’’’Hello’’’;
b. var str1=Hello; d. var str1=”Hello”;
<h2 class=”fruit mango”> I love fruits </h2>
What is true about the above statement?
a. It is an invalid statement in HTML
b. It is a heading tag with a class named “fruit mango”
c. It is a heading tag with two classes named as “fruit” and “mango”
d. None of the option
Which of the following CSS syntax will be hiding the element?
a. h1.hidden{ display: hidden;} b. h1.hidden{ visibility: hidden;}
b. h1.hidden{ visibility: none;} d. h1. hidden { display: none;}
“The <div> element is a block-level element” State true of false.
a. TRUE b. FALSE
Which of the following are the elements that have been added in HTML5?
a. <article> b. <header>
b. <footer> d. <main>
“I cannot create a JS array using the ‘new’ keyword” State true or false.
a. TRUE b. FALSE
Thank you for the Answers
ReplyDeletein unix questions:
ReplyDeleteto read values....'read' command is used
Very Good Content, And informative. Thank you for sharing. Learned a lot from this blog, and I will share this social media as well.
ReplyDeletePerfect Skills Employability Index Test
Checkout updated KYT answers here
ReplyDeleteand Full blog TCS Xplore answers updated
Thanks :)
ReplyDelete