Name the most fundamental tasks in a business process, which leaves the system and data in quiescent
Write a C++ program in which, read integers from file “data.txt” into an integer array. First element of integer arrayshows the number of records. After that number of recordthere is another integer which shows the other number of records.
Write a C++ program in which, read integers from file “data.txt” into an integer array. First element of integer array shows the number of records. After that number of record there is another integer which shows the other number of records.
Write C++ program, with multiple functions, that reads text, txt, from the file and accepts two patterns, pat and rpat, from the user. The program replace all occurrences of pat from the txt with rpat. The program output shall be as shown below in the example. without using string
Write a function that accepts three parameter perform sum, multiplication and aberage
Write a program to read the value of base and exponents increase the power of base to exponents using FUNCTION and End FUNCTION
Task:
Draw a structured flowchart or write pseudocode describing the logic of the following scenarios:
Move the robot to start from a sitting position in a corner, cross the room, and end up standing outside the room behind the door.
Allow the robot to start from a sitting position in one chair, stand up, cross the room, close the door and, return to the chair, and sit.
Student Record Management System
Write a C++ program which perform following operations:
Insert student record in a csv file comma separated value.
Insert at Start
Insert at End
Insert at Specific Position
Update student record (update name) in a csv file comma separated value.
Delete student record (delete by name) in a csv file comma separated value.
Student records consist of Name, age and contact number (comma separated data).
Each row of file contains a record of the student.
Example:
StudentInfo.txt
Ali ahmad,19,0333-1234567
Bilal malik,21,0321-1234567
Write a menu base program with the following menu:
Press 1 for insert student record in a csv file comma separated value
Press 2 for update student record in a csv file comma separated value
Press 3 for delete student record in a csv file comma separated value
Press 4 for display all student records of a csv file comma separated value
Press 5 for terminate the program
Student Record Management System
Write a C++ program which perform following operations:
Insert student record in a csv file comma separated value.
Insert at Start
Insert at End
Insert at Specific Position
Update student record (update name) in a csv file comma separated value.
Delete student record (delete by name) in a csv file comma separated value.
Help: Perform the above mentioned operations as we discuss in the class.
Student records consist of Name, age and contact number (comma separated data).
Each row of file contains a record of the student.
Example:
StudentInfo.txt
Ali ahmad,19,0333-1234567
Bilal malik,21,0321-1234567
M. Abid,20,0300-1234567
If user press 5 then perform the program termination
Create an abstract class 'Bank' with an abstract method 'getBalance'. Rs. 10000, Rs. 15000 and Rs.
20000 are deposited in banks A, B and C respectively. 'BankA', 'BankB' and 'BankC' are subclasses
of class 'Bank', each having a method named 'getBalance'. Call this method by creating an object of
each of the three classes.