Aptitude Test Question of Assistant Programmer at ICT Ministry of Bangladesh 2018
exam-aptitude test assistant programmer(ICT ministry)
time-45mins
batch-3, date-21/7/2018
1.Count alphabets, digits and others from a given string?
sample input:
Welcome to bpsc2018.com
output:
Alphabets:16
digits:4
others:3
2.enter n number of elements and only print even numbers?
sample input:
6
52 51 4 95 6
output:
52 4 6
3. query
employee1(id,name,salary,join-date)
employee2(id,name,salary,join-date)
a.write a query which shows details of employee1 where name ends with m and
show in ascending order by name?
b.show id,name, salary,join-date of employee1 and employee2 where salary
is greater than 660000 and order by salary desc?