Instruction
quiz
Question - 85
schedule
Time - 1.5 hr/90 min
quiz
Explanation - Yes
scoreboard
Score - No
YS Parmar Nauni JOA-IT Post Code- 206 - 2

1. The command in LINUX OS to check the Bad Sectors in your pen drive is :

Correct : A
Explanation: The “File System Consistency Check” is the full form for “fsck”, It is a utility that examines the file system for errors an it tries to fix it if possible.

2. Combination of multimedia and hyperlinks is called as

Correct : A
Explanation: Hypertext is the ability to open new web pages by clicking on text links in a web browser. Hypermedia is an extension of hypertext that allows users to click on images, movies, graphics, and other media in addition to text.

3. The standard protocol of the internet is

Correct : C
Explanation: The standard network protocol for the internet is TCP/IP, which stands for Transmission Control Protocol/Internet Protocol. TCP/IP is a set of communication protocols that allow computers to communicate on a network.

4. Which escape character can be used to begin a new line in C ?

Correct : D
Explanation: The newline character, represented by the escape sequence "\n" in C, is used to move the cursor to the next line on the output screen. It is commonly used to print text in separate lines and improve the readability of output.

5. The operator && is a ....... operator :

Correct :C
Explanation: The double ampersand operator (&&) is a logical AND operator in the C language. It combines and checks two or more conditions or logic to determine if they are true.

6. The text color in a presentation should contrast with the colour of :

Correct : A
Explanation: The text color in a presentation should contrast with the background color. This makes the text or graphic appear to float above the background instead of blending into it. The best combination of colors for presentation slides should have high contrast that makes them easily seen by the viewers.

7. Select the option which does not represent example of multicast :

Correct : D
Explanation: Television transmission is an example of simplex communication, which is a communication channel that sends information in one direction.

8. Select the correct option for the given IP address 300.1.2.3 :

Correct : A
Explanation: An Internet Protocol (IP) address is a unique numerical identifier for every device or network that connects to the internet. IP addresses are typically assigned by an internet service provider (ISP). IP addresses are 32-bit numbers, usually expressed in dotted-decimal format, with four numbers separated by periods.he range of IP addresses is 0.0.0.0 to 255.255.255.255. For example, 192.168.123.132.

9. The following statement is false with respect to Hamming code :

Correct : C
Explanation: Hamming code is a technique for detecting and correcting errors that may occur during data storage and transmission. It's commonly used in error correction code (ECC) RAM.

10. Given a message 1010000 with a generator polynomial x3+1, then what should be the transmitted message using this genrator polynomial :

Correct : B
Explanation:

11. If the bandwidth of the line is 1.5Mbps, RTT is 45 msec and packet size is 1KB, then find the link utilization in stop and wait flow control protocol :

Correct : A
Explanation : You can E-mail us on askit2dev@gmail.com, if you known proper expalanation.

12. The maximum window size for data transmission using the selective repeat protocol with n bit fram sequence number is :

Correct : B
Explanation: In the Selective Repeat protocol, the maximum window size is determined by the number of bits used for the frame sequence numbers. The window size is given by 2(n-1), where n is the number of bits in the frame sequence number.

13. Select the correct option :

Correct : D
Explanation: An Algorithm is a sequence of instructions that can be used to solve a problem or perform a computation. Algorithms are used to perform calculations and data processing.
A static routing algorithm is a routing method that uses manual configuration routing entries instead of dynamic entries. The Non-Adaptive Routing algorithm is used by static routing.

14. Let an array A is defined as int A[3][5]={1..5,6..10,11..15}, where an integer takes 4 bytes of memory. If the base address of A is 1000 then the memory location of A[1][4] will be:

Correct : A
Explanation: In a 2D array like A[3][5], the memory is allocated in a contiguous manner. The elements are stored row-wise. The formula to calculate the address of an element in a 2D array is given by:
Address of A[i][j]=Base Address+(i x Number of Columns+j) x Size of Data Type
Given that the base address of A is 1000 and each integer takes 4 bytes, and you want to find the address of A[1][4]:
Address of A[1][4]=1000+(1 x 5+4) x 4= 1036.

15. What is the value of the postfix expression 6 3 2 4 +-*:

Correct : D
Explanation: Postfix Expression is (6*(3-(2+4))). Here it solve 2+4=6, 6-3=-3 and at last 6*-3= which results -18 as output.

16. A graphics card has pn board memory of 1MB. Which of the following modes the card not support.

Correct : B
Explanation: The amount of on-board memory (1MB in this case) on a graphics card is an important factor in determining the graphics capabilities and the display modes it can support. The available memory is used to store graphics data, textures, frame buffers, and other graphical information.

17. The short cut to Add multiple rows/columns above below of a row in a Microsoft Word Document is :

Correct : A
Explanation: To insert more than one row (or column) at the same time, select as many rows or columns as you want to add before you click the insert control. For example, to insert two rows above a row, first select two rows in your table and then click Insert Above.

18. The 'Mail Merge' Option in Microsoft Word Document is found under which option ?

Correct : D
Explanation: In Microsoft Word, the Mail Merge option is located in the Mailings tab.
Mail merge is a feature in most data processing applications that allows users to send a similar letter or document to multiple recipients. It combines a form letter with a data source that contains information about the recipient's name, address, and other predefined and supported data.

19. The correct option for Primary Key and Unique Key is :

Correct : C
Explanation:A primary key is a column or set of columns in a relational database table that uniquely identifies each record. A relational database can only have one primary key. A table can only have one primary key.
A unique key is a set of one or more columns in a table that identifies a record in a database table. Unique keys are similar to primary keys, but they can only accept one null value for a table column.

20. Find the decimal equivalent of binary number :
(1101.0111)2=(?)10

Correct : B
Explanation: To convert the binary number1101.0111 2< to decimal, we can separate the whole number part from the fractional part and convert each part individually. Whole number : 1101 2 =1x2 3 +1x2 2 +0x2 1 +1x2 0 =8+4+1=13
fractional part : 0.0111 2 =0x2 - 1 +1x2 - 2 +1x2 - 3 +1x2 - 4 =0.25+0.125+0.0625 = 0.4375
1101.0111 2 =13+0.4375=13.4375

21. In ASP.net the 'web.cofig' file is used for which of the following ?

Correct : A
Explanation: The web.config file in ASP.NET is a configuration file that stores and retrieves website information in a human-readable format. It's an XML file that describes the properties and behaviors of ASP.NET applications.

22. The default web server used in LINUX OS based machine is :

Correct : B
Explanation: the default web server for many hosting companies. Apache is an open source software that can be installed on almost all operating systems, including Linux, Unix, Windows, FreeBSD, and Mac OS X. About 60% of the web server machines run the Apache Web Server.

23. A 1 Ghz CPU (Central Processing Unit) can carry how much maximum instructions per second:

Correct : A
Explanation: A 1 GHz (gigahertz) CPU can perform 1 billion calculations or operations in one second. This means that a 1 GHz computer can process a billion processor instruction sub-steps per second.

24. The function sprintf() works like printf() but operates on :

Correct : D
Explanation: The sprintf() function in C programming works similarly to printf(), but instead of sending the formatted output to the console, it stores the output as a string in a buffer.

25. Which of the following command is used to delete a table from the database ?

Correct : B
Explanation: DROP is a Data Definition Language(DDL) Command which is used to delete tables, views, triggers, etc from a database. A DROP statement in SQL removes a component from a relational database management system (RDBMS).

26. The core of LINUX Operating System is called as :

Correct : A
Explanation: The core of the Linux operating system is the kernel. The kernel is the lowest level of the operating system (OS) and manages the CPU, memory, and peripheral devices. The kernel is the software that interfaces directly with the computer hardware.

27. Which one of the following is not a part of network topologies ?

Correct : B
Explanation: Network topology is the structure of a network and how its components are interconnected. Types of network topology Bus topology, Ring topology, Star topology, Tree topology, Mesh topology, Hybrid topology.

28. Maintaining and assuring the accuracy and consistency of data is called as :

Correct : C
Explanation: Data integrity is the process of maintaining and ensuring the accuracy and consistency of data throughout its lifecycle. It's a critical aspect of any system that stores, processes, or retrieves data.

29. What is the full form of AVI ?

Correct : D
Explanation: AVI stands for Audio Video Interleave. It's a multimedia container format that stores video and audio information in a single file. AVI files are native to all Microsoft Windows operating systems and can be opened using Windows Media Player.

30. Which of the following shortcut key is used to set 1.5-line spacing in MS Word ?

Correct : C
Explanation: To set 1.5-line spacing in Microsoft Word, you can press Ctrl+5.
Next 1 2

JOA-IT PREVIOUS PAPERS

HPSSC

HPPSC JOA-IT Post Code- 556
Held on : April-2017
HPPSC JOA-IT Post Code- 626
Held on : 2018
HPPSC JOA-IT Post Code- 817
Held on : 2021

Dr. Y.S. Paramar University - JOA-IT

Y S PARMAR JOA-IT Post Code- 206
Held on : Oct-2021

H.P. High Court - JOA-IT

H.P. High Court - JOA-IT
Held on : April-2023
Copyright © 2023! All right are reserved