Question
Dharmender started walking in $ direction. After
walking for 5m he moves towards @ and walks 6m then goes towards %# and walks a distance of 10m, then he goes in # and moves a distance of 12m, then he takes a left turn and walks 2m and stops. Find Dharmender is how far and in which direction from his initial position? In a certain coded language, @ means East # means West $ means North % means South Here, Y@Z means Z is to the East of Y Z@Y means Y is to the East of Z. Note: If two symbols are given simultaneously then we will consider both the directions. For example, Y$@Z means Z is to the North-East of Y Z$@Y means Y is to the North-East of ZSolution
From the given hints, following image can be drawn. Note- IP and FP denote Initial position and Final position respectively. Thus we can say that Dharmender is 13m in the south-west from his initial position. Hence option A is correct
In data analytics, which algorithm is commonly used for predictive modeling when the target variable is categorical?   Â
Predict the correct output of below code in python
Greeting = lambda : print('Welcome to Ixambee’)
Greeting()
Linear Regression is the supervised machine learning model in which the model finds the best fit ___ between the independent and dependent variable.
What is the purpose of the with statement when working with files?
In Numerical and Statistical Computing, which method is used for solving linear equations with large datasets?
To count total no of argument in shell
In data communication networks, which protocol is responsible for ensuring reliable data transfer between devices over a network?   Â
...Bitwise operators in C++
What will be the output of the following code when printList is called with a linked list containing the values 1 -> 2 -> 3?
class Node:
�...
Predict the  program output
void main ()
{
 int x = 128;
 printf ("n%d", 1 + x++);
}