Now it is! This is how every word is "invented". Someone like you comes up with a new word to meet a new need, and eventually it finds its way to a dictionary. A dictionary is a follower, but you can be a leader. Good answer. Yes it is a word
How to get an output in inverted commas for example thank you in inverted commas in c progr amming?
To print "thank you" in inverted commas in C programming, you can use the following code:
#include <stdio.h>
int main() {
printf("\"thank you\"\n");
return 0;
}
This code will display the output as: "thank you"
How do you find what version of Microsoft Excel you have?
Go to the Help menu and look at the About option which will tell you. The version of Excel you have is linked to the version of Office you have. If you know what version of Office you have, then you know what version of Excel you have.
How do I calculate the position of 12 squares aligned around the edges of a do-decagon?
To calculate the position of the 12 squares aligned around the edges of a perfect dodecagon, you can use the following steps:
Calculate the radius of the dodecagon:
The edges of the dodecagon are 576 units long, and the dodecagon is a regular polygon, so the radius can be calculated as:
Radius = (Edge Length) / (2 × tan(π/12)) = 576 / (2 × tan(π/12)) ≈ 500.00 units
Calculate the position of the centers of the squares:
The squares are 576 × 576 units, so their centers will be 288 units away from the edge of the dodecagon.
The centers of the squares will be evenly spaced around the dodecagon, with an angular separation of 30 degrees (360 degrees / 12 squares).
The coordinates of the centers of the squares can be calculated using the following formulas:
x = (Radius + 288) × cos(θ)
y = (Radius + 288) × sin(θ)
Where θ is the angle of the square, starting from the positive x-axis and increasing counterclockwise.
Applying these formulas, the coordinates of the centers of the 12 squares are:
(681.40, 1801.21)
(1365.45, 1117.77)
(1365.45, -1117.77)
(681.40, -1801.21)
(-681.40, -1801.21)
(-1365.45, -1117.77)
(-1365.45, 1117.77)
(-681.40, 1801.21)
(0.00, 2000.00)
(1000.00, 1732.05)
(1000.00, -1732.05)
(0.00, -2000.00)
Okay, let's solve this step-by-step:
We have a regular dodecagon with edge length of 576 units.
The dodecagon is centered at (0, 0).
You want to place 12 squares of size 576 x 576 units around the edges of the dodecagon.
The squares should be rotated 30 degrees more than the previous one.
To calculate the position of the centers of the 12 squares:
The angle between each square is 360/12 = 30 degrees.
The radius of the dodecagon is 576 / (2 * tan(π/12)) = 500 units.
The center of the first square is at:
x = 500 * cos(0) = 500
y = 500 * sin(0) = 0
The center of the second square is at:
x = 500 * cos(30 * π/180) = 433.01
y = 500 * sin(30 * π/180) = 250.00
Continuing this pattern, the coordinates of the 12 square centers are:
| Square | X | Y |
| --- | --- | --- |
| 1 | 500.00 | 0.00 |
| 2 | 433.01 | 250.00 |
| 3 | 250.00 | 433.01 |
| 4 | 0.00 | 500.00 |
| 5 | -250.00 | 433.01 |
| 6 | -433.01 | 250.00 |
| 7 | -500.00 | 0.00 |
| 8 | -433.01 | -250.00 |
| 9 | -250.00 | -433.01 |
| 10 | 0.00 | -500.00 |
| 11 | 250.00 | -433.01 |
| 12 | 433.01 | -355.o1
The coordinates are rounded to two decimal places, as requested.
What are the advantages of second generation programming language?
Easier to learn: Second-generation programming languages are easier to learn than first-generation languages. They are closer to human language and are more intuitive
How do you post something on the internet?
The first thing you must do is find somewhere to post it. The next thing you need to do is copy and paste it. After that you must save it to documents and then when you go to the website you want to post it on just double click and then it will say paste and then if you click it, it will pop up on the website and ask you if you want to post this image and if the answer yesthen you will click sure if not please click no thanks.
Is there an Example DFA of an ATM?
An example of a DFA that resembles an ATM can be constructed with states representing different transaction phases (e.g., idle, card insertion, PIN entry, transaction processing) and transitions triggered by user inputs (e.g., card swipe, key press). This DFA would validate the sequence of inputs based on the current state to determine if a valid transaction has occurred.
What is Artificial Intelligence and what roles are there for such technologies in business?
Artificial Intelligence is self awareness, sentience in a programmed computer. Such is impossible with digital technology and the limits placed on digital platforms by the relatively miniscule memory capacities available. So, no roles for business.
Is statistics language feature?
Statistics is a branch of mathematics that involves collecting, analyzing, interpreting, and presenting data. It is not a language feature itself, but it is used in various programming languages to analyze and draw insights from data.学statistics is commonly used in fields such as data science, machine learning, and research to make informed decisions based on data patterns and trends.
What are two common features of high level languages?
High-level languages are typically easier to read and write compared to low-level languages. They also offer more abstraction from hardware, allowing programmers to focus on solving problems rather than managing memory or registers.
Is it possible to make a video game from your home computer?
yes
http://www.microsoft.com/express/product/default.aspx to download. The C++ comes with a downloadable dark basic API just for making games. However you will have to learn how to program in C++ to make a game. Also you would need to be able to designed graphics unless you just want a text game. You can find C++ game making tutorials but they usally come in the form of text based games. You could also look up rpg maker xp or just rpg maker. They have easy to use programs to make games.
Who is the inventor of Reverse Delete Algorithm for MST When was this first published?
The Reverse Delete Algorithm for finding the Minimum Spanning Tree was first introduced by Edsger Dijkstra in 1959. He presented this algorithm in his paper titled "A note on two problems in connexion with graphs" which was published in Numerische Mathematik.
Write a program in c which will read a string rewrite it in alphabetical order?
#include<stdio.h>
#include<string.h>
#include<conio.h>
void main()
{
char a[30],temp;
int n=0,j,i;
clrscr();
printf("Enter the string\n");
gets(a);
while(a[n]!='\0')
{
n++;
}
for(i=0;i<n;i++)
{
for(j=0;j<n-i-1;j++)
{
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
printf("The string in alphabetical order is\n");
for(i=0;i<n;i++)
{
printf("%c",a[i]);
}
getch();
}
Is using AssemblyLoad a static reference or dynamic reference?
Dynamic references are constructed on the fly as a result of calling various methods, such as System.Reflection.Assembly.Load. Source: .NET Framework Developer's Guide How the Runtime Locates Assemblies
What is triangle with at least two sides equal?
if two sides are of equal length, the a triangle is said to be isoceles.
Why sql is non procedural language?
non-procedural language in which you can communicate tasks to the compute using simple commands.
A procedural language is one in which you must give the computer step by step
instructions for accomplishing a task
What are the difference between opcode and operand?
An opcode is an instruction. An operand is information used by the opcode. Not all opcodes require operands.
In computer terminology the word legacy is usually used as a legacy system, which represents an old computer system or application, which is used by the users, only because they don't want to change or redesign it. Normally legacy systems are considered problematic by the software professionals since it may not match with the technologies of the new era.
A "legacy" system is one that is either outdated for most practical purposes, or one that includes older forms of technology. A "legacy-free" PC is one that does not include older ports that would be necessary to support much older equipment, such as parallel ports, ISA slots, serial ports, PS/2 ports, and sometimes even VGA. A legacy system is an old computer system that is no longer in use, but may still have important information. It could also be one that is completely redundant. New systems either have to replace it or even connect to it. A company might have an old payroll system that is replaced by a new one. The old one becomes a legacy system. Data structures that are out of date by modern standards, may still be in operation in some computer systems because the newer systems had to be based on an older system. Having a legacy system may make it difficult to implement a new system or delay it. Good system design can integrate the older system and later modify the new system so that it is fully up to date with modern standards, without having lost any data from the old system. The old system can be retained on backup so that if it is needed it is accessible. Ideally, the new system should be able to safely and completely replace it, so that the old system is never needed again for any reason.
Is there is a demand for MCA Graduate in India?
I think there is a good demand for MCA Graduate in India, but due to recession in IT Sector in 2005 there is a little bit fall in demand.
Why bcnf is stronger than 3nf?
A relation R is in 3NF if and only if every dependency A->B satisfied by R meets at least ONE of the following criteria: 1. A->B is trivial (i.e. B is a subset of A) 2. A is a superkey 3. B is a subset of a candidate key BCNF doesn't permit the third of these options. Therefore BCNF is said to be stronger than 3NF because 3NF permits some dependencies which BCNF does not.