Az important rule: any octet has to have eight parts, otherwise it is not an octet.
In an astrologers day story how do you draw a character sketch of astrologer?
The two main characters of the story are the astrologer, who is not given a name, and Guru Nayak, the client who turns out to be a former victim, now on a quest for revenge. The astrologer is not given a name partly because he is intended to be seen, for most of the story, as a typical figure, one of the many who conduct their business in makeshift locations in the city, and partly because the narrative mode does not require that he be given a name. It is only at the end of the story that the astrologer is given an individuality that makes him a distinctive figure. Also, in the story he...
The Astrologer used to predict from his knowledge of human nature and the general problems that people in General come across in everyday life for making a living as he could think of no other profession.
That was yet another sunset when he found that the man whom he thought had murdered came to him.
The fun starts here. How he innovates and tells him a terrible death had overtaken the very man he was seeking to avenge and tells him to return to his place saying traveling in this direction will put him into danger.
When he returns home that night he is in the seventh heaven. The two things that make him feel elated are:
1.He earned a very good fees from his est. while enemy.
2.The guilt of a murder that was sitting on his conscience was gone.
The unveiling of the episodic plot within the strict boundaries of an Astrologer's Day [In fact sunset]
brings out the character of a typical Indian Villager as of the client and the astrologer] and its Universal Nature
C can be used on which operating system?
C compilers are available on quite a lot of OS's, like Unices, Windows, DOS, BS2000...
PASCAL compiler is written in which language?
Which Pascal compiler do you mean? Pascal compiler can be written in Pascal, of course.
What are two reasons for the occurrence of a routing loop?
incorrectly configured static routes
slow convergence
How do I program a Westinghouse weekly indoor digital timer model 28442 item T00442?
I found this link:
http://www.thencc.com/LS/Instruction/28442_TimerManual.pdf
that helped me set my timer.
With the aid of a diagram illustrate how the c plus plus compiler works?
With the aid of a diagram,illustrate how the c plus plus compiler works?
What is the difference between inline and const?
Everything. "inline" refers to functions, "const" refers to variables.
Which of the two types of Data Independence Types is harder to achieve?
The ability to modify a scheme definition in one level without affecting a scheme definition in next higher level is called data independence
there are two types of data independence
physical data independence:- refers to the ability to modify the scheme followed at the physical level without affecting the scheme followed at logical level
logical data independence:- refers to the ability to modify the conceptual scheme without affecting the schemes followed at view level
logical independence is difficult to achieve
How do you convert 2.75 to binary?
It is 2+1/2+1/4... But you do not have to do this conversion manually, your computer is perfectly able to do it.
#include <stdio.h>
main()
{
int r,b,h;
printf("Enter the value of Base and Hight");
scanf("%d%d",&b,&h);
r = ((b*h)/2);
printf("Area of Triangle=%d",r);
}
Crash probability is at an elevated level
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations.
Define the role of C programming in the development of software?
All operating system are made using c-based language.
Three dimensional arrays are basically multiple two dimensional arrays layered on top of each other.Three dimensional arrays have many uses ex. mapping 3d graphics, calendars (where days are the columns, the weeks are the rows and the months are the layers), or paging methods for reports and recordsets.
Ah, arrays are like magical palettes where you can organize and store multiple items in one place. Imagine a lovely garden with 13 different flowers, each in its own spot but all part of the same beautiful landscape. In the world of programming, an array for 13 would be a collection that can hold 13 elements, making it easier to work with and manage those items together. Just like painting a happy little picture, arrays help keep things nice and tidy.
An array is simply a collection of more than one item of the same type. For instance, if you wanted an array of 10 ints, you would say...
int myInt[10];
... and you would refer to them as myInt[0], myInt[1], ..., myInt[9]. Note that the index starts at 0 and goes to one less than the declared size. It is an error to refer to an array element outside of the declared region.
Similarly, an array of arrays, could be declared as...
int myInt[10][20];
... and you would refer to them as myInt[0][0] through myInt[9][19]. Note that there is no comma, and that the brackets surround each index separately.
You can extend this arbitrarily, such as...
int myInt[5][6][7][8][9][10]
... just keep in mind that that represents 151,200 elements, potentially a lot of memory, though most modern platforms will not have a problem with that.
Nothing stops you from declaring arrays of anything, even of structures and classes (in C++).
The continue statement skips the remaining statements in the current iteration and execution proceeds with the iteration control statement for the next iteration.
DOES A c n a take of children and how?
The CNA (Certified Nursing Assistant) role does not typically involve taking children, as CNAs primarily work in healthcare settings such as hospitals, nursing homes, or long-term care facilities, focusing on adult patients. However, CNAs may care for pediatric patients in some specialized healthcare environments, such as children's hospitals or pediatric units. In such cases, they assist with basic care tasks, monitor vital signs, and support the healthcare team in providing care for children.
The duration for which a loop can be used depends on the context in which it is implemented. In programming, loops can run indefinitely until a specific condition is met or an external interruption occurs. In physical systems, such as mechanical loops, their longevity is determined by factors like material fatigue and operational wear. Ultimately, the lifespan of a loop is contingent upon its design, purpose, and environmental conditions.