Engineering Professional Practice: Sample Case and a solution Case: A client came to a designer’s and asked to design a multistoried building. The soil type is found not suitable for that type of structure. The designer hesitated to design a building. The revealed his/her intention as that he/she actually is
Read more →Case studies based on Codes of Ethics, Tort, Liability and Negligence in Professional Engineering Er Satyaman Shrestha was working as a Project Engineer in a road construction project in Chitwan. Er Ramesh Thapa, close friend of Satyaman was also working as a site engineer in the same project for a
Read more →The oath of an engineer in his profession, this is a master piece of the work. I am an ENGINEER. In my profession I take deep pride, but without vainglory; to it owe solemn obligations that I am eager to fulfill. As an Engineer, I will participate in none but
Read more →This was a Computer Graphics Project named Bar Diagram required in the coursework. [A Project work in Computer Graphics] #include #include #include #include #include #include /*FUNCTION FOR READING DATA FROM USER*/ void input(float ,float,float,float,float,float); /*FUNCTION FOR DRAWING BAR DIAGRAM*/ void bar1 (float); void bar2 (float); void bar3 (float); void bar4
Read more →Write an assembly program to READ YOUR NAME AND DISPLAY IT IN NEWLINE title read and display name dosseg .model small .stack 100H .code main proc mov ax, @data ; initialize ds register mov ds, ax mov ah, 09h ; display message1 mov dx, offset msg1 int 21h mov ah,
Read more →Write an assembly program to REVERSE THE GIVEN DIGITS title to reverse the given digits dosseg .model small .stack 100H .code main proc mov ax, @data ; initialize ds register mov ds, ax mov ax, value1 ; move number to ax mov cx, 0000h ; remainder r = 0 mov
Read more →Write an assembly program to COPY A BLOCK OF DATA FROM ONE MEMORY TO ANOTHER title copy a block of data from one memory to another dosseg .model small .stack 100H .code main proc mov ax, @data ; initialize ds register mov ds, ax mov SI, offset array1 ; source
Read more →Mouse play a very important role in development of Computer Graphics and to implement graphics in the computer system. Mouse is a pointing input device that points out item(s) by cursor. The cursor can be move from one position to another, this movement of cursor is due to the movement
Read more →Write an assembly language program (Intel 8086) to READ A STRING, CONVERT IT INTO UPPER CASE AND FINALLY DISPLAY THE CONVERTED STRING title ALP to read a string, convert it into upper case and display the converted string dosseg .model small .stack 100H .code main proc far mov ax, @data
Read more →Evaluating ordinary differential equations by RK-4 or classical method both order first and second //To compute ordinary differential equations by RK-4 or classical method for order first #include #include #include void main() { cout<<”\t first order R-K 4th Classical Method\t”< double h,n,m1,i,m2,m3,m4,x[100],y[100]; cout<<”Number of intervals “; cin>>n; cout< cout<<”Enter the
Read more →
