Vous êtes sur la page 1sur 10

JU CSE Exam Question Solution

Image 1

1. Evaluate the value of the following expressions:


a. Floor(-9.5)= -10
b. Ceil(-3.4)=-3
2. A)and
3. Which development has made programming easier?
a. Object oriented programming
b. Visual programming
c. Both of the above
4. Which of the following is not a valid variable name? float @sum
5. Which one is correct in Java?
b. int x=0;
6. Routers connect
a. Two networks
7. Which of the following computer language is used for artificial intelligence?
b. Prolog
Note: The most common seem to be Lisp, Prolog, C/C++, recently Java, and even
more recently, Python
8. where
9. Which of the following is a database language?
a. Data Manipulation Language
b. Data definition language
c. Query language
d. All of the above
10. Find the next three terms in the sequence 1,1,2,4,7,13,24?
Answer: 1,1,2,4,7,13,24,44,81,149
11. FTP is built on client server model architecture
12. RAM is used as a short memory because it is
a. volatile
13. UML stands for Unified Modeling Language
14. By which technology internet file can be sent secretly?
a. encryption
15. The speed of the supercomputer is generally measured in FLOPS (FLoating Point Operations Per
Second)
16. When a domain is submitted to DNS, it converts to:
c. IP
17. Which layer of OSI is responsible for ASCII code against character?
b. Presentation layer
18. 30/.5=60 and then 60+10=70
19. xy=e is the equation of a
b. Hyperbola
20. Which of the following TCP/IP protocol is used for transferring electronic mail message from one
machine to another?
c. SMTP
21. The output of the following program is:
#include <stdio.h>
Void fun(int num)
Int main()
{
Int a=6;
Fun(a);
Printf(“%d\n”,a);
Return 0;
}
Void fun (int x)
{
x=x+3;
Return;
}
22. Question Not clear
23. Which of the following tasks is a function of the operating system?
c. File management
24. Which of these numbers cannot be a probability?
a. -0.00001
25. If xy=2 and 𝑥𝑦 2 =8 what is the value of x?
a. 1⁄2
26. If a coin is tossed twice, find the probability of tossing a head and then a head again?
e. 1⁄2
27. Which one of the following is not a relational operator?
c. =
28. Which of the following statements concerning relational database is true?
c. All relations must be in at least third normal form.
29. Which of the following is not in connection with sql statement?
c. CONCATE
30. Find the variance of: 2, 2, 2, and 2.
b. 0
Explanation:
Variance (σ2) is the average of squared difference from mean.
Mean is M=2+4+6+8+105=305=6
Variance is σ2=(2−6)2+(4−6)2+(6−6)2+(8−6)2+(10−6)25
=16+4+0+16+45=405=8

Note: How to calculate variance

Variance (σ2) is the average of squared difference from mean.


Mean is M=(2+2+2+2)/4=8/4=2
vriance is σ2=(𝟐 − 𝟐)𝟐 + (𝟐 − 𝟐)𝟐 + (𝟐 − 𝟐)𝟐 + (𝟐 − 𝟐)𝟐 /4=0/4
So the variance is 0

Image 5

47. In general, a monitor with refresh rate of _______________ should not cause eyestrain.
b. 72 Hz or higher

Note: Screen flickering normally happens if the refresh rate is set below 60 Hz

48. CSA stands for_________


b. Cloud security alliance
49. Which device can forward data packet from one network to another network?
b. Router
50. Mouse is supported in all operating systems.
a. True
51. if A=1, B=0 and C=1, then =?
a. 1
52. Data in the form of continuous flow is known as ____________.
a. Analog data
53. Sending signals to the all ports means broadcast
54. What frequency range is the high frequency band?
Ans: 3 to 30 megahertz(MHz)

Image 6

51. What is the optimum value of refresh rate that should not cause eyestrain?(Confusion)
a. 100 Hz
b. 72 Hz
c. 32 Hz
d. 64 Hz
52. Which network protocol is used to send e-mail?
d. SMTP
53. Data Encryption Standard(DES) is a ______ bit block cipher.
c. 64
54. What does hotspot mean?
b. Location of WLAN
55. Foxconn company works with (Confusion)
a. Apple
56. Who is the president of Microsoft? (Confusion)
a. Satya nadella
b. Steve jobs
c. Steve ballmer
d. Bill gates

Note: Bradford L. Smith was promoted to president and chief legal officer of Microsoft in 2015
by CEO Satya Nadella, becoming the first President of Microsoft since Richard Belluzzo in 2002.

57. What is EGNYTE?


a. Cloud service

Note: Egnyte is a company that provides software for enterprise file synchronization and
sharing. The technology can store files in a company's existing data repository, as well as cloud
computing storage.

58. In a flash analog-to-digital converter, the output of each comparator is connected to an input of
a:
c. Priority encoder

Note: Also called the parallel A/D converter, this circuit is the simplest to understand. It is
formed of a series of comparators, each one comparing the input signal to a unique reference
voltage. The comparator outputs connect to the inputs of a priority encoder circuit, which then
produces a binary output.

59. Fill in the blank: Switch is a ____________ device


b. Layer-2

Note: The Application layer, layer 7, is the closest to the user. Hubs, switches, and routers
operate at the lowest three layers of the OSI network model: the physical layer, data link layer
and network layer.

**Hubs work at the first or Physical layer.

**Switches operate at the Data Link or second layer.

**Routers are on the third layer, the Network layer.

60. Which device support packet switching?


c. Router

Image 7

18. Autumn (fall) is to summer as Monday is to_____?


b. Sunday
19. A-Z-B-Y-C-X-D-W-E-?
d. V
20. If m x n =p and p does not = 0 where m, n and p are real numbers, which of the
following must be true?
c. m does not 0
21. M, N, O are consecutive integers. Which of the following is true?
c. M+2N+O is always even
22. These numbers follow a pattern. 2, 6,14,30,62. What comes next?
b. 126
23. Asif is 5 years older than Sazid. After 5 years, Sazid’s age will be 4/3 that of Asif’s.
what is Asif’s age?

a.10

Problem
Asif is 5 years older than Sazid. After 5 years Asif will be twice
as old as Sazid.
Find their present ages.

Solution

Let x be Sazid's present age.


Then Asif's present age is x+7.

In three years Sazid's age will be x+3, while Asif's age in three
years will be x+7+3=x+10.
Since in two years Asif will be twice as old as Sazid, you can write
the equation
X+10=2.(x+3).

Solve this equation by simplifying it step by step:


x+10=2x+6 (after brackets opening at the right side)
(after moving variable terms to the right and constant
terms to the left)
(after combining like terms)

Thus you got that Asif's present age is years.


Hence, Sazid's present age is years.

In three years, Asif will be years old, while Sazid will be


years old.

Answer. At present, Asif is 4 years old, and Sazid is 11 years


old.

24. The product of the digits of a three digit number is also a three digit number. What
would be the minimum value of that number?
c. 269
25. If x is an odd number and y is an even number, which of the following is not divisible
by 2?
b. xy+x
26. a mobile phone can be purchased for 5000/- cash or on credit with a 2000/- down
payment plus payment 700/- per month for 5 months. How much would be saved by
paying cash?
a. 500/-
b. 150/-
c. 200/-
d. 2000/-
27. When you multiply a number by 4 and then subtract 7, the result is the same as if
you first subtracted the same number and then multiplied by 11. What is the
number?
a. 10
28. A coin is tossed three times. Find the probability of getting at least two heads.
a. ½

Image 9

1. When I am not in hurry, I work extremely slowly. The underlined word is___
d. Adverb
2. Antonym of CAPRICIOUS is
discretionary
3. The master of the house set the dog _ the thieves
b. behind

4. There is paper_the floor . please put something _ the wastebasket.


d. On/in

5. I did not bring enough money - ?


d. Did I?

6. Do not make so much noise , rasel _ to study for exam.


b. Is trying

7. Complete shutdown –observed today against new law.


a. Is being

8. What is the adjective form of the noun “act”


a. active

9. You can keep my ipod if you like i – it any more .


b. Don’t use

10. Synonym of august is


c. dignified

11. What is the value of u in the sequence 2,7, 14 ,23,34,u?


d. 47

12. The difference between the squares of the two consecutive numbers is 37. Find out the
numbers.
d. 18 and 19

14. B.1/3 V
Image 10

29. A hokey team won 6 game and lost 8 game . what is percentage of win?
b. 3/7

Note: winning percentage = wins / games

For example, let's assume that your favorite basketball team has played 82
games and won 48 of them. Their winning percentage is

48 / 82 = 58.54%

30. Y=(x + 3) then ( - 2x -6) must be equal which of followings?

31. The value of 2^0 *3^o*4^0 is.

a. 1
32. Find out the ones digit in 3 ^99 is
c. 7
33. Find the next three terms in the sequence 1,1,2,4,7,13,24,
b)44,81,149
34. The following figure is quadrilateral with one right angle . the other angles are
lebeled. What is value of x ?
35. In these series you will be looking at both the pattern and the number pattern. Fill
the blank in the middle of series or the end of series.
36. What the name for a triangle whose one angle is 9o degree ?
37. At the end of a gathering 8 people shake hands with each other. How many hand
shakes
Will there be?
38. 2’complement of 1000 is

Image -11

39. If x =10^-1 then(x + 1/x) (1/x) =?


40. Find the equation of vertical line that passes through the point (-2, -5) .
41. Find the equation of the line that passes through the points (-5,6) and (-7,4) and
write the slope.
42. A _ connection provides dedicated link between two device .-->point to point
43. Html documents are saved in ASCII forrmat
44. _ the protocol suite for the current internet.
Image-12

15. The average of a set number s reduces from 14 to11 .when the number 35 is remained . how
many numbers were in original set.

16 . sachin borrows tk 15000 for two years at 4% simple interest .he immediately lends money
to rahul at 25/4% for two year . find the gain of one year by sachin.

17.432 apples divided among a b and c such that 12 times a’share is equal to 8 times b’share
which is equal to 16 times c’share . how much did a get?

18.the line x +4y=7 and 4x –y =3are perpendicular

19.an observer 1.6 m tall is away from tower the angle of elevation from hiseye to the op of
tower is 30. The heights of tower is

20. a certain store , the profit is 320% of the cost if the cost increases by 25%but the selling price
remains constant approximately what percent of selling price the profit ?

21.the roots of equation ax^2+bx+c =o will be reciprocal if

22. if x/y= 10and x-y =18then y =?

23.2’s complement of 10000 is

24.a two digit number is such that the products of digits is 8.when 18is added the numberthen
digits are reversed. The number is

25 .a club cricket team has won 10 game and lost 5. What is the percentage of win ?(rounded to

the next integer)

26.A trader mixes 26 kg of rice at 20 tk per kg.with 30kg of rice of other variety tk 36 kg . and sells
the mixture at 30 kg.his profit is

27.tagor took a loan of 1200tkwith simple interest for as many years as the rate of interest if she
paid tk 432 as interest at the end of loan period. What was the rate of interest.

28. a boy was asked to multiply a certain number by 25 .he multiplied it by 52 got his answer more
than the correct one by 324. The number to be multiplied was_

What is the equivalent code of the following statement in WHILE LOOP


format?
for (a=1; a&lt;=100; a++)

printf (&quot;%d\n&quot;, a * a);


int a = 1;

while (a <= 100)

printf("%d\n",a*a);

a++;

Vous aimerez peut-être aussi