0% found this document useful (0 votes)
44 views

What Is Loop in-WPS Office

Loops in C execute a sequence of statements repeatedly until a condition is false. An array contains a group of elements of the same type, used to organize related values. Getche reads a character from a file without buffering it, unlike getchar. The void main function is the entry point for a C program and does not return a value. Graphics programming in C involves drawing shapes, using math functions, and simple animations. Echo prints output in PHP without returning a value. Setcookie defines a cookie to send in HTTP headers before any output. It stores data for individual users against a session ID. Fopen opens a file for reading in PHP. A network topology maps the physical or logical connections between network elements. The

Uploaded by

Make Success
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
44 views

What Is Loop in-WPS Office

Loops in C execute a sequence of statements repeatedly until a condition is false. An array contains a group of elements of the same type, used to organize related values. Getche reads a character from a file without buffering it, unlike getchar. The void main function is the entry point for a C program and does not return a value. Graphics programming in C involves drawing shapes, using math functions, and simple animations. Echo prints output in PHP without returning a value. Setcookie defines a cookie to send in HTTP headers before any output. It stores data for individual users against a session ID. Fopen opens a file for reading in PHP. A network topology maps the physical or logical connections between network elements. The

Uploaded by

Make Success
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

What is Loop in C Language

 Looping Statements in C execute the sequence of statements many times until the stated condition
becomes false. A loop in C consists of two parts, a body of a loop and a control statement.

What Is An Array

An array is a data structure that contains a group of elements. Typically these elements are all of the
same data type, such as an integer or string. Arrays are commonly used in computer programs to
organize data so that a related set of values can be easily sorted or searched.

what is the purpose of getche()

Getche is one of The Character Input Functions. Getche Reads The Next Character From A File, It Takes A
File Pointer To The File. It Is The Simplest Function To Read A File. Like Getchar, Getche() May Be
Implemented Macro Instead Of Function..

what is void main(void)

Void main () is the entry point for execution in C program. The void is a keyword that represents
function will not return anything but a void value. Main is the name of the function and () represents
parameter list that can be passed to function in this case nothing is passed.

what is graphics in c language

Graphics programming in C used to drawing various geometrical shapes(rectangle, circle eclipse etc), use
of mathematical function in drawing curves, coloring an object with different colors and patterns and
simple animation programs like jumping ball and moving cars.

Why do we use Echo In Php

PHP echo statement can be used to print the string, multi-line strings, escaping characters, variable,
array, etc. ... echo is a statement, which is used to display the output. echo can be used with or without
parentheses: echo(), and echo. echo does not return any value.

What Is The Role Of Set Cookie() In Php


The setcookie() function defines a cookie to be sent along with the rest of the HTTP headers. ... A cookie
is a small file that the server embeds on the user's computer. Each time the same computer requests a
page with a browser, it will send the cookie too. With PHP, you can both create and retrieve cookie
values.

Explain Set Cookie() function In PHP

setcookie() defines a cookie to be sent along with the rest of the HTTP headers. Like other headers,
cookies must be sent before any output from your script (this is a protocol restriction). This requires that
you place calls to this function prior to any output, including <html> and <head> tags as well as any
whitespace.

What Is A Session

Sessions are a simple way to store data for individual users against a unique session ID. This can be used
to persist state information between page requests. ... The absence of an ID or session cookie lets PHP
know to create a new session, and generate a new session ID. Sessions follow a simple workflow.

How to read a file in PHP?

The PHP fopen() function is used to open a file. It requires two arguments stating first the file name and
then mode in which to operate.

Topology

Network topology is the interconnected pattern of network elements. A network topology may be
physical, mapping hardware configuration, or logical, mapping the path that the data must take in order
to travel around the network.

Difference Between Internet And Intranet

The Internet is a globally-connected network of computers that enables people to share information and
communicate with each other.

An intranet, on the other hand, is a local or restricted network that enables people to store, organize,
and share information within an organization.
Define Switch

A switch, in the context of networking, is a high-speed device that receives incoming data packets and
redirects them to their destination on a local area network (LAN).

You might also like