String functions are predefined library functions used to manipulate and process strings.
strlen() returns the length of a string, excluding the null character.
strcat() concatenates or joins two strings into a single string.
strcmp() compares two strings and determines whether they are equal or which string is lexicographically greater.
strcpy() copies one string into another string.
strchr() searches for the first occurrence of a character in a string.
strrchr() searches for the last occurrence of a character in a string and returns a pointer to that position.
strstr() searches for the first occurrence of a substring within a string.
strtok() divides a string into smaller tokens using a specified delimiter.
An Applet is a small application designed to perform a specific task within a larger program or environment.A Java applet is a program written in the Java programming language and designed to run inside a web page.
Java is commonly used to create applets.
The int data type is used for storing integer values.Depending on programming language implementation and system architecture, the range may vary.
For a 16-bit integer:
−32767 to 32767
For a 32-bit integer:
−2147483647 to 2147483647
FTP (File Transfer Protocol) is a standard Internet protocol used for transferring files between computers over TCP/IP networks.FTP follows a client-server architecture.
FTP supports the transfer of both text files and binary files.FTP uses separate command and data connections to ensure reliable file transfer.
A Zip Drive is a data storage device introduced by Iomega in 1994.It provided greater storage capacity than traditional floppy disks and was widely used for backup and data transfer purposes.
Its popularity declined after the introduction of:
An email address consists of two main components separated by the @ symbol.
The local part uniquely identifies the user.
Example:In
abhishek@example.comabhishek is the local part.
The domain identifies the email service provider or host server.Example:In
abhishek@example.comexample.com is the domain.
Data structures are classified into Primitive and Non-Primitive data structures.
Primitive data structures are simple data types that cannot be further divided.Examples:
Non-primitive data structures are divided into:
Elements are arranged sequentially.Examples:
Elements are not arranged in sequence.Examples:
The return statement terminates a function and transfers control back to the calling function.It may also return a value to the calling function.
The goto statement transfers program control to a labeled statement.Although available, its use is generally discouraged because it can make programs difficult to understand and maintain.
The switch statement is used for multi-way decision making and selecting one among multiple code blocks.It does not transfer control back to the calling function.
The UPDATE statement is used to modify existing records in a database table.
UPDATE Students
SET FirstName='Ramu'
WHERE FirstName='Siva';A linked list supports several fundamental operations.
Traversal means visiting every node in the linked list one by one.
Insertion involves adding a new node at the beginning, middle, or end of the list.
Deletion removes a node from the linked list by modifying links between nodes.Traversal, insertion, and deletion are all standard linked list operations.
A Concept Keyboard is a programmable keyboard commonly used in retail stores, restaurants, and service environments.Keys can be customized to perform specific functions or commands.
Each key may represent:
An assembler converts assembly language instructions into machine code.Examples of mnemonic instructions:
The resulting machine code can be directly understood by the computer.
A compiler translates an entire high-level language program into object code before execution.
An interpreter translates and executes source code line by line.
A Local Area Network (LAN) connects computers within a limited geographical area.
LAN allows sharing of:
A Metropolitan Area Network (MAN) covers a larger area than a LAN.
A Wide Area Network (WAN) connects computers over very large geographical distances.
A gateway connects multiple networks and allows communication between different networks.It acts as the entry and exit point of a network.
A router directs traffic between networks.
A switch forwards data only to the intended destination device.
A hub connects multiple devices and broadcasts incoming data to all connected devices.
A bridge connects two subnetworks.
A repeater regenerates weak signals and extends transmission distance.
A modem performs:
It converts digital data into analog signals and vice versa.
A server on the Internet is also called a Host.A host provides services and resources to clients within a network.
The & operator is known as the Address Operator.It returns the memory address of a variable.Example:
int x = 10;&xreturns the memory location where x is stored.
Microsoft Access is a Database Management System (DBMS) used for:
It is part of the Microsoft Office suite.
The F4 key is used to toggle between different cell reference types while editing formulas.
The TEXT() function converts a numerical value into text according to a specified format.
Excel uses the asterisk symbol (*) for multiplication.Example:
=A2*B2Pressing F5 starts a slideshow from the beginning.
Themes are applied through the Design Tab to change the visual appearance of a presentation.
The F2 key is used to move selected text or graphics quickly from one location to another.
Collation determines the arrangement of multiple copies of a multi-page document.
Pages are printed in complete document sets.Example:
1-2-3-4-5
1-2-3-4-5
1-2-3-4-5Pages are grouped together.Example:
1-1-1
2-2-2
3-3-3
4-4-4
5-5-5Sleep mode places a computer in a low-power operating state.
fscanf() reads formatted input data from a file stream.It functions similarly to scanf(), but reads data from a file rather than standard input.
A member function is a function defined inside a class and operates on the objects of that class.
A labeled statement consists of:
identifier:It is commonly used with goto statements.
Cropping refers to the removal of unwanted outer portions of an image.
The ALU performs:
The Control Unit controls and coordinates the activities of:
Cache memory is a small, high-speed memory that improves CPU performance by providing faster access to frequently used data.
SRAM stores data using flip-flop circuits.
Linux is an open-source operating system developed through community participation and collaborative development.
When the Forward option is selected in an email application, a new email draft opens containing the original email content, allowing it to be sent to another recipient.