Download as xlsx, pdf, or txt
Download as xlsx, pdf, or txt
You are on page 1of 21

3/4+0.1 0.

85
2/3+0.25 0.91
1/3+0.4 0.73
2/5+0.35

25.00
16.00
9.00
4.00
1.00
1/27 55
1
105
1 n last 2
2 7 minutes
300
6ft 15.00 7.00
4 12.00 5.00
.25 8;02 13.00 3.00
10.00 3.00
m 5
m
true
38 4 minutes
3
2
17
m
m
dec
2 9

0.17
0.33 0.17
0.67 0.14
0.33 0.25
105
60
39
30

13

33 105 31.42857
57 154 37.01299
58 182 31.86813
36 113 31.85841

1 3 6 10 15 21
0.17
0.52
0.08
53 28
a 1 6
b 7
c 4 6
d 5
e 5
f
g
h 8
i
j
k
l
m
n 14
o
p
q
r
s
t
u
v
w
x
y
z
1.2 0.4 0.8 0.9 1 1800 4 7200 45
2 0.9 1.1 405 3 1215 59
53 25 28 28 2 56 17
53 25 28 28 2 56 31
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56
53 25 28 28 2 56 56

subract multiply * add


48 93 percent total Answer
15 74 40 80 32
14 31 25 80000 11
14 45 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50
53 109 5 1000 50

add 5 % to TOTAL value


1 3 0.333333 33 105 31.42857 280
1 6 0.166667 57 154 37.01299 1475
0.333333 0.166667 2 58 182 31.86813 1610
4 5 0.8 36 113 31.85841
3 #DIV/0! #DIV/0!
11 #DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
#DIV/0! #DIV/0!
find %

divide /
sum
Statistics and Probability questions
Machine Learning questions  
Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude du
The STATION table is described as follows:

q1

select distinct(city) from station where mod(id,2) =0;---- for odd <>0
m the answer.
Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in
The STATION table is described as follows:

Select count(CITY) - count(DISTINCT CITY)


from station
of distinct CITY entries in the table.
Query the two cities in STATION with the shortest and longest CITY names, as well as their respective len

select * from
(select city,length(city) from station order by length(city), city asc
)where rownum =1
union all
select * from
(select city,length(city) from station order by length(city) desc, city
)where rownum =1;

SELECT City, LENGTH(City)


FROM (SELECT City
FROM Station
ORDER BY LENGTH(City), City)
WHERE ROWNUM = 1;
SELECT City, LENGTH(City)
FROM (SELECT City
FROM Station
ORDER BY LENGTH(City) DESC, City)
WHERE ROWNUM = 1;
ell as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose
allest or largest city, choose the one that comes first when ordered alphabetically.
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates.
Input Format

select distinct(city) from station


where lower(substr(city,1,1)) in ('a','e','i','o','u');
not in for opposite
Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates.
Input Format
The STATION table is described as 
select distinct(city) from station where lower(substr(city,length(city),1)) in ('a','e','i','o','u');
not for oppposite
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. You

select distinct(city) from station where lower(substr(city,1,1)) in ('a','e','i','o','u') and lower(substr(city,length(city),1)) in ('a','e',

Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot

trick here is or because of EITHER

select distinct(city) from station where lower(substr(city,1,1)) not in ('a','e','i','o','u') or lower(substr(city,length(city),1)) not in (

You might also like