Search Your Question...!
Story Telling MCQ's
1. _________ uses system of color coding to represent different values.
View AnswerHeat maps
2. _______ helps you get familiar with data.
View Answerexploratory
3. When the content is very less, we can leverage _________ to display information.
View Answersimple text
4. Cognitive load theory is created by
View Answerjohn sweller
5. Keeping Color consistent helps the audiences to know that these two pieces of information are related.
View AnswerTrue
Structured Data Classification MCQ's
1. Identify the structured data from the following.
View AnswerData from mySQL DB and Excel
2. What kind of classification is our case study 'Churn Analysis'?
View AnswerBinary
3. Which command is used to identify the unique values of a column?
View Answerunique()
4. Which preprocessing technique is used to make the data gaussian with zero mean and unit variance?
View AnswerStandardisation
5. Cross-validation technique is used to evaluate a classifier by dividing the data set into training set to train the classifier and testing set to test the same.
View AnswerTrue
DevOps MCQ's
1. DevOps is the union of ___ , ____ and __ to enable continuous delivery of value to end users.
View AnswerPeople, Processes and Products.
2. Improve quality and performance of the applications is a major driver for switching to DevOps
View AnswerTrue
3. Understanding of what we are deploying and how we are deploying comes under which habit of DevOps
View AnswerConfiguration Management
4. Product Management is one of the 7 DevOps practices
View AnswerFalse
5. Which of the following is a value of DevOps
View AnswerDevOps goals span the entire delivery pipeline
More on Git MCQ's
1. What is the git command to see the last 3 commits in one line ?
View Answergit log -–oneline -3
2. How do I view all the commits for the last 2 weeks ?
View Answergit log -–since=”2 weeks ago”
3. What is the significance of using –index in the git stash pop - - index command ?
View AnswerTo pull the staged changes
4. What is the command to temporarily store uncommitted ?
View Answergit stash
5. What command should I use to retrieve my files that have been temporarily stashed ?
View Answergit stash pop – index
UIPATH Orchestrator MCQ's | Interview Preparation | RPA
1. What happens if a new job is triggered while the robot it is assigned to is executing a different process?
View AnswerThe new job is left in a ‘Pending’ state until the robot finishes executing the process. The new job is executed as soon as the robot becomes available
2. Is it possible to check whether a Robot that is connected to Orchestrator is available or not in real time?
View AnswerYes, this is possible through the Heartbeat mechanism; the status of each robot is updated on the Robots page
3. Is it possible to reprocess a transaction in a Queue after its failure due to an application exception?
View AnswerYes, if the Auto-Retry property of the Queue is enabled Yes, it can be retried manually on the Transactions page
4. How are Robot Keys generated?
View AnswerOrchestrator generates unique Robot Keys during the robot provisioning process
5. Is using the ‘Publish’ button in Studio the only way to upload a package to Orchestrator?
View AnswerNo. Packages can also be published via the Packages page in Orchestrator
UIPATH MCQ's | Interview Preparation - 3 | RPA
1. How many Catches can you have in a Try/Catch block?
View AnswerThere is no limit on the number of catches.
2. When running a workflow how can you see the steps the workflow is executing
View AnswerUsing Debug with Highlight Activities option, Using Debug and inspecting the Output panel
3. What happens if you put a Breakpoint on a Click activity and start the workflow in Debug mode
View AnswerThe workflow will be paused until you click the Continue button.
4. What can you use to make sure that the execution continues even if an activity fails
View AnswerTry/Catch activity
5. Where can you see the variables’ values during workflow execution
View AnswerIn the Locals pane
UIPATH MCQ's | Interview Preparation - 2 | RPA
1. Consider having an application in Citrix Environment that has a button named ‘Accept’ and also a label that contains the Accept word. How can Click Text be customized in order to access the correct button?
View AnswerBy using the Occurrence property.
2. What can be done when the Windows Remote Connection doesn’t allow sending hotkeys?
View AnswerIt should work if the Windows Remote Connection is in ‘full-screen’ mode.
3. What happens if Find Image doesn’t actually find the desired image?
View AnswerAn exception is thrown.
4. Can a Pick Branch activity be used alone?
View AnswerNo, it can only be added inside a Pick activity body.
5. What is the EASIEST navigation method to be used in a form within Citrix?
View AnswerBy sending keyboard commands/hotkeys
UIPATH MCQ's | Interview Preparation - 1 | RPA
1. The Type Into activity can receive inputs like:
View AnswerA variable followed by .tostring method & A static String
2. Getting the content of a PDF document is possible:
View AnswerBy opening the pdf and using screen scraping to get its data & By using the read Pdf text activity and providing the pdf file’s path
3. What kind of actions can be performed in the Variables panel?
View AnswerSetting default values for variable & Changing variable type & Adding new variable
4. Where can you see the list of activities that you can use in a workflow?
View AnswerIn the Activities panel
5. How can you extract structured data from a web page?
View AnswerUsing the Data Scraping Wizard
Bill Division | Python Solution | Hackerrank
Two friends Anna and Brian, are deciding how to split the bill at a dinner. Each will only pay for the items they consume. Brian gets the check and calculates Anna's portion. You must determine if his calculation is correct.
For example, assume the bill has the following prices: Bill=[2,4,6]. Anna declines to eat item k= bill[2] which costs 6. If Brian calculates the bill correctly, Anna will pay (2+4)/2=3. If he includes the cost of bill[2], he will calculate (2+4+6)/2=3. In the second case, he should refund 3 to Anna.
For example, assume the bill has the following prices: Bill=[2,4,6]. Anna declines to eat item k= bill[2] which costs 6. If Brian calculates the bill correctly, Anna will pay (2+4)/2=3. If he includes the cost of bill[2], he will calculate (2+4+6)/2=3. In the second case, he should refund 3 to Anna.