What are the features of research design?
it is an activity and time based plan.and also it is a plan which is always based on the research question.
What is the definition of autocad?
The term "autocad" is frequently used to refer to any type of computer aided drafting (CAD), however AutoCAD is actually the trademarked name of the CAD software produced by a company called Autodesk.
CAD is a software design tool used in construction and manufacturing to produce detailed drawings.
Multiply the two numerators and their product will be the new numerator., and multiply the two denominators and their product will be the new denominator, then reduce the terms if possible. Example: 3/4 x 4/5 = 12/20 = 3/5
What are the advantages and disadvantages of sorting algothms?
The main advantage is that they allow us a way to put information into a meaningful order.
The main disadvantage is that even our best sorting algorithms have a O(n log n) performance, which means that it takes a very long time to sort large sets of data.
What are the advantages frequency modulation amplitude modulation?
Frequency modulation have some advantages over amplitude modulation, FM is not sensitive to the amplitude noise, and have high efficient use of transmitted power
Importance of science in day to day life?
Modern science and technology have changed our lives in many dramatic ways. Airplanes, automobiles, communications satellites, computers, plastics, and television are only a few of the scientific and technological inventions that have transformed human life. Research by nuclear physicists has led to the development of nuclear energy as a source of power. Agricultural scientists have developed better varieties of plants and highly effective fertilizers. The development of antibiotics and other new drugs has helped to control many infectious diseases. Studies in anatomy and physiology have led to amazing new surgical operations and to the invention of lifesaving machines that can do the work of such organs as the lungs, kidneys, and heart.
What are the advantages of database system?
these are some of the advantages of database management systems
1.allows remote login.
2.eases the problem for mobility because of number1(remote login)
3.allows sharing of research and other works.eg like we are doing now(sharing)
3.makes it for the database administrator to monitor user activities.
4.provides necessary security to protect the data stored.eg data encryption.
5. e.t.c
ATM is a device used by bank customers to process account transactions. ATM has brought innovations in the banking sector all over the world. ATM is also known as 'Automated banking Machine', 'Cash Machine', 'Cash Dispenser', 'Automatic teller', 'Money Machine'
It can also be an CNC machine, which is more related to CAD.
Shortly and essentially, Computer Graphic Design is all visual arts and designs made with computers. Well, first of all Design has a lot of branches. Computer Graphic Design might be considered 3D modeling, graphic design applied to digital application, but the latter would be more like Digital Design. If you take the answer literally, so you have graphic design made purely by computers or to be applied on computer interfaces, no matter if it is 3D modeling, 3D animation, 2D drawing and animation, layout, visual effects, video editing, and the like.
What is the full form of EDP Dept?
It is the department that looks after the electronic data processing needs of an organization. Today it would be better known as the IT of Information Technology dept. or Information Systems dept. Hope that is clear.
--------------------
EDP stands for Electronic Data Processing. There is a department that takes this name with an objective to control the inventory and stock, mainly, the movement of the goods between different locations, warehouse, and suppliers. This department undertakes the responsibility of managing continuous stocktaking and digital data integrity in the information system as well.
EDP department is independent from IT department, but uses the information systems and other services managed and supported by this department. Sometimes an IT qualified personnel works under the EDP department to speed up support process and coordinate with IT department.
Hope this information answers your question!
How many volts does a computer monitor use?
from the wall it could be 115v ac, or in non American countries that use it 230v ac.
internal voltages range from 12v dc, 5v dc, 3.3v dc.
What is computer aided design?
Computer Aided Design (CAD) encompasses using computer software to design 3D models of objects on the computer, usually with the intention of using a 3D printer to create the object in real life and display it to others.
Uses of autocad in the field of engineering?
AutoCAD (Computer-Aided Design) is a widely used software tool in the field of engineering for creating, modifying, and documenting detailed design drawings and models. Its versatile capabilities make it an essential tool across various engineering disciplines. Here are some common uses of AutoCAD in engineering:
**Architectural Design:** AutoCAD is frequently used by architects to create precise and detailed floor plans, elevations, sections, and 3D models of buildings and structures.
**Civil Engineering:** Civil engineers use AutoCAD to design infrastructure projects such as roads, bridges, highways, dams, and drainage systems. AutoCAD's tools help in creating accurate plans, profiles, and cross-sections.
**Mechanical Engineering:** AutoCAD is extensively used by mechanical engineers for designing parts, components, and assemblies. It aids in creating 2D drawings and 3D models of machines, equipment, and mechanical systems.
**Electrical Engineering:** AutoCAD is used by electrical engineers to design electrical systems, wiring diagrams, circuit layouts, and panel layouts. It helps in creating detailed schematics for various applications.
**Structural Engineering:** AutoCAD is used to design and detail structural components of buildings and structures. Engineers use it for creating accurate drawings of beams, columns, foundations, and other elements.
**Industrial Design:** AutoCAD is employed in industrial design for creating product concepts, prototypes, and detailed manufacturing drawings. It aids in visualizing and refining designs.
**Aerospace Engineering:** AutoCAD assists aerospace engineers in designing aircraft components, interiors, and systems. It aids in creating detailed plans for various aircraft parts.
**Environmental Engineering:** AutoCAD is used by environmental engineers to design and plan environmental systems, including water treatment plants, waste management facilities, and pollution control systems.
**Surveying:** AutoCAD is used in land surveying to create accurate survey plans, contour maps, and site layouts.
**Urban Planning:** Urban planners use AutoCAD to design urban layouts, land-use plans, and zoning maps.
**Geographic Information Systems (GIS):** AutoCAD can be integrated with GIS data to create and edit spatially accurate maps and geographic information systems.
**Construction and Project Management:** AutoCAD drawings serve as the basis for construction projects, facilitating communication among stakeholders and guiding construction activities.
**Prototyping and 3D Printing:** AutoCAD's 3D modeling capabilities are used for creating prototypes and models that can be 3D printed.
**Documentation:** AutoCAD is instrumental in creating detailed documentation, including technical drawings, plans, sections, and specifications.
AutoCAD's flexibility, precision, and efficiency make it an indispensable tool in the engineering industry. It enhances design accuracy, reduces errors, and facilitates collaboration among multidisciplinary teams working on complex projects.
How to merge two single linked list using c?
Here is the java version, C should be similar
// merges two Singly linked lists A and B, both sorted in increasing order of integers .
// Return a Singly linked list sorted in increasing order
// for ex if A = 1->2->3->6 and B = 2->4->7, returns 1->2->2->3->4->6->7
public LinkedList merge(LinkedList A, LinkedList B) {
Node 1A = A.head;
Node 1B = B.head;
Node P1A = NULL;
Node 2A = NULL;
Node 2B = NULL;
while ( 1A != NULL && 1B !=NULL){
2A = 1A.next;
2B = 1B.next;
if (1A.item >= 1B.item) {
if (P1A != NULL) {
P1A.next = 1B;
}
else if ( P1A == NULL){
P1A = 1B;
}
1B.next = 1A;
P1A = 1B;
1B = 2B;
}
else if ( 1A.item < 1B.item){
if ( 2A != NULL) {
P1A = 1A;
1A = 1A.next;
}
else{
1A.next = 1B;
break;
}
}
}
return A;
}
Identify and explain the three types of bandwidth?
T1 connection - Transmit data up to 1.544 Megabits per second. Upload bandwidth is the same as the download bandwidth. Used by medium sized businesses. European standard is called E1 and transmits data up to 2.048 Megabits per second.
T3 connection - Transmit data up to 45 Megabits per second. More expensive than T1 connection's. Used by larger businesses. European standard is called E3 and transmits data at 34.368 Megabits per second.
Metro Ethernet - Used by large companies such as banks. Connects main office with other branches using switched technology allowing for large amounts of data to be transferred fast and less expensively.
How you write software requirement specification for school management system?
Gatik-SMS is a product from Gatik Business Solutions - a privately held business group headquartered in the silicon valley of India, Bangalore. From a two-member founding team a decade ago, Gatik has grown into a multi-million dollar enterprise, with interests in diverse industries like home automation, software, broadband and other services. By virtue of our broadband and other technology businesses, Gatik has acquired immense knowledge in technology solutions built on cloud and managed remotely. This expertise has helped in developing the next generation tool like Gatik-SMS for education domain. Click Here
What is the best software for design of conveyor belt?
Autodesk makes many software that can do that.