Re: struct classroom Programming Software Development by Schol-R-LEA …; using namespace std; struct classroom { int room_number, number_of_chairs, …classroom& cls); string get_teacher(classroom& cls); string get_lecture_name(classroom& cls); int get_chairs(classroom& cls); int get_windows(classroom& cls); int main() { classroom Re: struct classroom Programming Software Development by james.opdyckeii classroom& cls); string getProjector(classroom& cls); int getAvailable(classroom& cls); int getChairs(classroom& cls); int getWindows(classroom& cls); int main() { classroom…} return cls.window; } int getAvailable(classroom& cls) { string answer; cout… Re: struct classroom Programming Software Development by priya.chitroda ….h" using namespace std; int main() { struct classroom { int room_number, number_of_chairs, number_of_students; string Lecture_name; vector<… } my_classroom; cout << "What is your Classroom Number? "; cin >> my_classroom.room_number; cout &… How do I select the classroom from one table based on count of another tabl Programming Databases by nizam27391 … I asked is unclear. I have the table as below **Classroom** - id - capacity - code - ...... **Schedule** - id - group_id - classroom_id … The schedule will be filled with the group and classroom. My problem now is how can I retrieve the … is 8 times. And I want to select classroom from **Classroom** table that contains less than 8 occurence in … Re: How do I select the classroom from one table based on count of another tabl Programming Databases by nizam27391 …** table.. How can I return it from the **Classroom** table? For example : in Classroom, I have data = *{1,2,3,4,5…,5,1,5,7}* And I want to find the classroom that is not exist in **Schedule** or only exist less… struct classroom Programming Software Development by priya.chitroda … you to add data to the attributes of the classroom. Create functions that allow you to print out the… classroom information. Compare two classrooms based on the size (number …of chairs) and report which classroom is larger. Also compare two classrooms base on utilization. If… Re: struct classroom Programming Software Development by priya.chitroda …;stdafx.h" using namespace std; int main() { struct classroom { int room_number, number_of_chairs; int number_of_students; vector<string>…; } my_classroom; cout << "What is your Classroom Number? "; cin >> my_classroom.room_number; cout <… Re: How do I select the classroom from one table based on count of another tabl Programming Databases by pritaeas Use my query above to select all rooms in schedule where there are at least two, then use that result as a sub-query for Classroom using `WHERE id NOT IN ()` Re: struct classroom Programming Software Development by sfuo … it with arrays you would need to allocate memory. struct classroom { int room_number, number_of_chairs, number_of_students; string Lecture_name; vector<string>… Multicast video from VCR classroom Hardware and Software Networking by axiomx11 … client who wants to set up a corporate-learning style classroom full of computers. (If you can see the attached diagram… virtual classroom Programming Web Development by abhi1625 Hi.... I m making project on [B]virtual classroom and forum[/B] .... front end : [B]asp.net(c#)[/B] and back end : [B]sqlserver[/B] can any 1 help me to get the sample code or any kind of website, other than wiziq.com [B][I]plzz help .....me thnx in advance[/I][/B] final year project topic (virtual classroom)??? Programming Computer Science by zeeya … final year student in computer science and have chosen virtual classroom systems to be done as a project for my final… Is virtual classroom systems a good final year student project??? (urgent) Programming Web Development by zeeya i have chosen virtual classroom systems to be done as a project for my final … Re: How do I select the classroom from one table based on count of another tabl Programming Databases by pritaeas Something like: SELECT * FROM Schedule GROUP BY classroom_id HAVING COUNT(*) < 8 Am sure you can do the rest. Re: How do I select the classroom from one table based on count of another tabl Programming Databases by nizam27391 THANKS!! I THINK I CAN FIGURE IT OUt NOW.. TQ SO MUCH! Re: struct classroom Programming Software Development by sfuo Show us what you have done and we can help you if you state what problems you run into. We will not just do your homework for you. Re: struct classroom Programming Software Development by ravenous You've definitely created logic of sorts for doing the tasks in the question, but the logic isn't *encapsulated* in any functions. The question definitely says that you should write *functions* to add data to the class room's attributes, etc. Also, you should avoid the use of `goto` in your code---you certainly don't need it here. In general, you… Re: struct classroom Programming Software Development by priya.chitroda I do not know how to do that. Can you help Re: struct classroom Programming Software Development by priya.chitroda Hey I still have trouble understanding it alittle and I still have to put add projectors and student name how do I do that? Re: struct classroom Programming Software Development by priya.chitroda Does anyone know about Memory Maps? Re: struct classroom Programming Software Development by ravenous > Does anyone know about Memory Maps? This is a different question; make a new thread for it. You might also want to include a little more detail in the new thread! Re: struct classroom Programming Software Development by Schol-R-LEA > Hey I still have trouble understanding it a little and I still have to > put add projectors and student name how do I do that? What parts are you confused by? Can you try to work it out from what I've given you? I can explain more if you need me to, but I would like to know what you are having trouble with first. As for the projectors … Re: Multicast video from VCR classroom Hardware and Software Networking by jbennet uh at my college we have smartboard, projector and dvd player doing this, there plugged into some kind of dedicated box - has ethernet on one side and scart/vga on the other Re: virtual classroom Programming Web Development by Sodabread Have you tried Google? Re: virtual classroom Programming Web Development by abhi1625 Ya i tried google but i dont get excatly can you please help. thank you for rply Re: virtual classroom Programming Web Development by Sodabread You're going to need to try and develop something on your own and then ask us for help if/when you get stuck. There's so much information out there on using C# with SQL, so I don't think you've really looked hard enough, unless you're using Google to find a complete project that you can just turn in. A quick search on "C# SQL" yields many… Re: Is virtual classroom systems a good final year student project??? (urgent) Programming Web Development by chrishea You haven't provided a definition of the scope of the project or any limitations. Some of this could be done by implementing an existing open-source online training system but if the requirement is that you develop the solution yourself then you are potentially looking at a very significant project that could take many hundreds if not thousands of … Re: Is virtual classroom systems a good final year student project??? (urgent) Programming Web Development by zeeya thanks for the fast reply.. i think i will implement the existing open source system like moodle or wimba with system have video's uploading feature for teachers as well as homework uploading feature of student and also include chat feature or group discussion system in system. i havent think about the limitation but maybe the system wont … Re: Is virtual classroom systems a good final year student project??? (urgent) Programming Web Development by diafol Slow down. How much time have you got to make this? I use Moodle with our school, but it'll take some time to set up. Even more to make it work. For instance, will you be using LDAP to deal with login etc. It can get quite technical. You say 'urgent' in your title. Does urgent mean that you haven't started yet and are seriously running out of time… Re: Is virtual classroom systems a good final year student project??? (urgent) Programming Web Development by zeeya thanks for the details given to me.. i need to submit the fyp topic and others stuff like problem statement, objective, justification and etc by today. i'm still not sure if my supervisor will approve or reject my fyp topic. i think i will get 7 months to develop the system. is it possible? How to deliver the live lesson with allow the chat …