1.
Kur vyko naujametės BA dūzgės?
Correct Answer
B. Cash Lounge Bar
Explanation
The correct answer is Cash Lounge Bar. This is because the question is asking where the "naujametės BA dūzgės" took place, and out of the given options, Cash Lounge Bar is the only one that could potentially be a venue for such an event. The other options, Charlie pizza, Alaus Studija, and Disco 311 BAR, do not seem to be appropriate locations for a "naujametės BA dūzgės".
2.
BA veiklą pradėjo _______ metais.
Correct Answer
1988
Explanation
The correct answer is 1988 because it is the year when BA started its activities.
3.
Ką atspausdins duotas kodo fragmentas?integer i = 0 while(i < 5) { System.out.print(1); i++; }
Correct Answer
11111
Explanation
The given code fragment initializes an integer variable "i" with the value 0. Then, it enters a while loop that will continue executing as long as "i" is less than 5. Inside the loop, it prints the number 1 using the System.out.print() method and increments the value of "i" by 1. Since the loop will run 5 times (when "i" is 0, 1, 2, 3, and 4), the output will be 11111.
4.
Kiek kartų per parą laikrodžio rodyklės susikerta?
Correct Answer
22
Explanation
The question asks how many times the clock hands intersect in a day. In a 12-hour analog clock, the hour hand completes two full rotations in a day, while the minute hand completes 24 rotations. The hands intersect at 12:00, 1:05, 2:10, 3:16, 4:21, 5:27, 6:32, 7:38, 8:43, 9:49, and 10:54. Therefore, the clock hands intersect 11 times in a day. However, there is an additional intersection at 12:00 midnight. So, the correct answer is 22.
5.
Kiek kompatinių diskų (700 MB) reikia sudėti vienas ant kito, norint gauti terabaitą?
Correct Answer
C. 1.533.917
Explanation
To calculate the number of compatible disks needed to obtain a terabyte, we need to convert both the capacity of the disks and the desired capacity to the same unit. Since the disks have a capacity of 700 MB and we want to obtain a terabyte (1000 GB), we need to convert the capacity of the disks to gigabytes.
700 MB is equal to 0.7 GB.
To calculate the number of disks needed, we divide the desired capacity (1000 GB) by the capacity of each disk (0.7 GB).
1000 GB / 0.7 GB = 1428.571
Since we cannot have a fraction of a disk, we round up to the nearest whole number.
Therefore, the correct answer is 1.533.917 disks.
6.
1Kbit = ___B
Correct Answer
128
Explanation
The question is asking for the equivalent value of 1 kilobit (1Kbit) in bytes (B). The correct answer is 128 bytes. This is because 1 kilobit is equal to 1024 bits, and there are 8 bits in a byte. Therefore, to convert kilobits to bytes, we divide the number of kilobits by 8. In this case, 1024 bits divided by 8 equals 128 bytes.
7.
1KB = ___B
Correct Answer
1024
Explanation
The correct answer is 1024 because in computer science, 1 kilobyte (KB) is equal to 1024 bytes (B). This is because computers use a binary system, where each digit can have two possible values (0 or 1), and 2^10 (which is equal to 1024) is the closest power of 2 to 1000. Therefore, when referring to storage capacity or file size, it is common to use the base-2 definition of kilobyte.
8.
3MB = ___KB
Correct Answer
3072
Explanation
The question asks for the conversion of 3MB to KB. Since 1MB is equal to 1024KB, we can multiply 3 by 1024 to get the answer. Therefore, 3MB is equal to 3072KB.
9.
Kiek galonų telpa viename kvadratiniame decimetre?
Correct Answer
A. 0.264
Explanation
One gallon is equal to 3.785 liters. Since there are 100 square decimeters in a square meter, one square decimeter is equal to 0.01 square meters. Therefore, to find how many gallons can fit in one square decimeter, we need to convert the square decimeter to square meters and then multiply it by the conversion factor of liters to gallons. The answer of 0.264 suggests that approximately 0.264 gallons can fit in one square decimeter.
10.
Koks tekstas čia užkoduotas?
Correct Answer
Hello World
11.
Kiek vidutiniškai procentų darbuotojų pakeičia darbo poziciją per metus? #10FactsBA
Correct Answer
A. 17
Explanation
The correct answer is 17. This suggests that, on average, 17% of employees change their job positions within a year. This could be due to various reasons such as career advancement, seeking new challenges, or organizational restructuring. It indicates a relatively high level of job mobility within the company or industry.
12.
0 + 50 * 1 - 60 - 60 * 0 + 10 = ?
Correct Answer
0
Explanation
The given expression involves addition, subtraction, and multiplication operations. Multiplication has a higher precedence than addition and subtraction. Therefore, we first evaluate 50 * 1, which equals 50. Then, we evaluate 60 * 0, which equals 0. Next, we perform the addition and subtraction operations from left to right. Adding 0 to 50 gives us 50, subtracting 60 from 50 gives us -10, and subtracting 10 from -10 gives us -20. Finally, adding -20 to 0 gives us 0.
13.
Visų skaičių, nuo 1 iki 100, sumos rezultatas?
Correct Answer
5050
Explanation
The sum of all numbers from 1 to 100 is 5050. This can be calculated by using the formula for the sum of an arithmetic series, which is n(n+1)/2, where n represents the last number in the series. In this case, n is 100, so the sum is (100)(100+1)/2 = 5050.
14.
Kelintais metais Baltic Amadeus tapo autorizuotu kompanijos "IBM" verslo partneriu.
Correct Answer
A. 1993
Explanation
Baltic Amadeus became an authorized business partner of "IBM" in 1993.
15.
Dvejetainis skaicius 11001 = ___ desimtainėje sistemoje
Correct Answer
B. 25
Explanation
The given question asks for the decimal equivalent of the binary number 11001. To convert a binary number to decimal, we need to multiply each digit by the corresponding power of 2 and then sum up the results. In this case, the calculation would be: 1*2^4 + 1*2^3 + 0*2^2 + 0*2^1 + 1*2^0 = 16 + 8 + 0 + 0 + 1 = 25. Therefore, the correct answer is 25.
16.
Dešimtainis skaičius 42 = ___ dvejetainėje sistemoje
Correct Answer
A. 101010
Explanation
The decimal number 42 can be converted to binary by repeatedly dividing it by 2 and recording the remainders. Starting with 42, we divide by 2 to get 21 with a remainder of 0. We then divide 21 by 2 to get 10 with a remainder of 1. Continuing this process, we divide 10 by 2 to get 5 with a remainder of 0, then divide 5 by 2 to get 2 with a remainder of 1, and finally divide 2 by 2 to get 1 with a remainder of 0. Reading the remainders from bottom to top, we get the binary representation of 42 as 101010.
17.
Kuris is pateiktųjų nėra rūšiavimo algoritmas?
Correct Answer
B. Rekursijos (recursive)
Explanation
The question is asking for a sorting algorithm that is not mentioned among the given options. The options provided are "Krūvos" (heapsort), "Rekursijos" (recursive), "Burbulo" (bubble), and "Greitas" (quicksort). Among these options, "Rekursijos" (recursive) is the correct answer as it is not a known sorting algorithm. The other options, such as heapsort, bubble sort, and quicksort, are well-known sorting algorithms.
18.
Http://www.baltic-amadeus.lt/klientaiKuri adreso dalis nurodo duomenų perdavimo protokolą?
Correct Answer
A. Http
Explanation
The given question asks which part of the address indicates the data transfer protocol. In this case, the correct answer is "http." The "http" part of the address stands for Hypertext Transfer Protocol, which is a protocol used for transmitting and receiving information on the World Wide Web.
19.
Pirmojo lietuviško kompiuterio pavadinimas?
Correct Answer
D. Rūta
Explanation
The correct answer is "Rūta" because the question is asking for the name of the first Lithuanian computer, and "Rūta" is the only option that could potentially be a computer name. The other options are names of trees or plants, which do not fit the context of the question.
20.
Kiek darbuotojų turi BA?
Correct Answer
C. 108
Explanation
The correct answer is 108 because it is the number of employees that BA has.
21.
Kokių gėlių glėbius kovo 8-sios proga BA savo FB paskyroje dovanojo visoms moterims?
Correct Answer
B. Gerberas
22.
Koks žymus žmogus visai nesenai svečiavosi BA?
Correct Answer
B. Artūras Zuokas
Explanation
Artūras Zuokas is the correct answer because he is a well-known figure who recently visited BA.
23.
Kiek FB draugu turi BA?
Correct Answer
C. 936-1404
Explanation
The answer "936-1404" suggests that BA has between 936 and 1404 Facebook friends.
24.
Kas yra enjoyIT?
Correct Answer
B. Tai įmonės strategija ir požiūris
25.
Kokias dovanas pernai per Karjejos dienas dalijo BA?
Correct Answer
B. IPOD
Explanation
BA distributed iPODs as gifts during last year's Karjejos dienas.
26.
Ar žinai kur įsikūrusi įmonė?
Correct Answer
C. Mokslininkų g.
Explanation
The correct answer is Mokslininkų g. This answer is correct because it is the only option provided that specifies a location. The other options, Akademijos g., Jasinskio g., and Ukmergės pl., do not indicate a specific location or address. Therefore, Mokslininkų g. is the most appropriate choice for the question asking about the location of a company.
27.
BA pajamos 2014 m buvo?
Correct Answer
A. 2.888.956 Eur
28.
Kiek laiko vidutiniškai trunka vienas BA projektas?
Correct Answer
A. 9 mėn
Explanation
The correct answer is 9 mėn. This suggests that on average, a BA project takes around 9 months to complete.
29.
Kuris iš jų yra BA CEO?
Correct Answer
C. 3