Teamwork Skills
7:15
3 жыл бұрын
Planning For Group Assessments
7:39
3 жыл бұрын
Getting the most out of lectures
7:27
Participating in Online Discussions
10:10
Taking Notes From Texts
7:00
3 жыл бұрын
Giving and Receiving Feedback
9:36
3 жыл бұрын
Digital Tools - Collaboration
2:43
3 жыл бұрын
Intercultural Communication
6:23
3 жыл бұрын
Participating in Tutorials
7:13
3 жыл бұрын
Ways to Improve Your English
5:07
3 жыл бұрын
Designing a poster - Headings
1:28
4 жыл бұрын
Designing a poster - Layout
0:52
4 жыл бұрын
How should students use feedback?
4:55
Presenting Effectively - Voice
1:52
4 жыл бұрын
Academic Style
7:53
4 жыл бұрын
Voice in Academic Writing
6:17
4 жыл бұрын
Connecting Ideas
10:45
4 жыл бұрын
Пікірлер
@oluwatomisinmogaji9802
@oluwatomisinmogaji9802 14 күн бұрын
I highly recommend this video as a must-watch especially for all level-7 students. It’s a masterpiece! 👏 Oluwaseun, University of Northampton
@Kentrolloncanas
@Kentrolloncanas Ай бұрын
import java.util.ArrayList; import java.util.List; import java.util.Scanner; // Student class to represent student data class Student { private int id; private String name; private String email; private int age; // Constructor public Student(int id, String name, String email, int age) { this.id = id; this.name = name; this.email = email; this.age = age; } // Getters and Setters public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } // toString method for easy printing @Override public String toString() { return "Student{" + "id=" + id + ", name='" + name + '\'' + ", email='" + email + '\'' + ", age=" + age + '}'; } } // StudentManager class to handle CRUD operations class StudentManager { private List<Student> students; private int nextId; public StudentManager() { students = new ArrayList<>(); nextId = 1; } // Create public void addStudent(String name, String email, int age) { Student newStudent = new Student(nextId++, name, email, age); students.add(newStudent); System.out.println("Student added successfully: " + newStudent); } // Read (All) public void displayAllStudents() { if (students.isEmpty()) { System.out.println("No students found."); return; } System.out.println("Student List:"); for (Student student : students) { System.out.println(student); } } // Read (By ID) public Student findStudentById(int id) { for (Student student : students) { if (student.getId() == id) { return student; } } return null; } // Update public void updateStudent(int id, String name, String email, int age) { Student student = findStudentById(id); if (student != null) { student.setName(name); student.setEmail(email); student.setAge(age); System.out.println("Student updated successfully: " + student); } else { System.out.println("Student not found with ID: " + id); } } // Delete public void deleteStudent(int id) { Student student = findStudentById(id); if (student != null) { students.remove(student); System.out.println("Student deleted successfully: " + student); } else { System.out.println("Student not found with ID: " + id); } } } // Main application class public class StudentCRUDApp { public static void main(String[] args) { StudentManager studentManager = new StudentManager(); Scanner scanner = new Scanner(System.in); while (true) { System.out.println(" --- Student CRUD Application ---"); System.out.println("1. Add Student"); System.out.println("2. Display All Students"); System.out.println("3. Find Student by ID"); System.out.println("4. Update Student"); System.out.println("5. Delete Student"); System.out.println("6. Exit"); System.out.print("Enter your choice: "); int choice = scanner.nextInt(); scanner.nextLine(); // Consume newline switch (choice) { case 1: System.out.print("Enter Name: "); String name = scanner.nextLine(); System.out.print("Enter Email: "); String email = scanner.nextLine(); System.out.print("Enter Age: "); int age = scanner.nextInt(); studentManager.addStudent(name, email, age); break; case 2: studentManager.displayAllStudents(); break; case 3: System.out.print("Enter Student ID: "); int findId = scanner.nextInt(); Student foundStudent = studentManager.findStudentById(findId); if (foundStudent != null) { System.out.println("Found Student: " + foundStudent); } else { System.out.println("Student not found."); } break; case 4: System.out.print("Enter Student ID to Update: "); int updateId = scanner.nextInt(); scanner.nextLine(); // Consume newline System.out.print("Enter New Name: "); String newName = scanner.nextLine(); System.out.print("Enter New Email: "); String newEmail = scanner.nextLine(); System.out.print("Enter New Age: "); int newAge = scanner.nextInt(); studentManager.updateStudent(updateId, newName, newEmail, newAge); break; case 5: System.out.print("Enter Student ID to Delete: "); int deleteId = scanner.nextInt(); studentManager.deleteStudent(deleteId); break; case 6: System.out.println("Exiting Application..."); scanner.close(); System.exit(0); default: System.out.println("Invalid choice. Please try again."); } } } }
@Kentrolloncanas
@Kentrolloncanas Ай бұрын
import java.util.ArrayList; import java.util.List; import java.util.Scanner; // Student class to represent student data class Student { private int id; private String name; private String email; private int age; // Constructor public Student(int id, String name, String email, int age) { this.id = id; this.name = name; this.email = email; this.age = age; } // Getters and Setters public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } // toString method for easy printing @Override public String toString() { return "Student{" + "id=" + id + ", name='" + name + '\'' + ", email='" + email + '\'' + ", age=" + age + '}'; } } // StudentManager class to handle CRUD operations class StudentManager { private List<Student> students; private int nextId; public StudentManager() { students = new ArrayList<>(); nextId = 1; } // Create public void addStudent(String name, String email, int age) { Student newStudent = new Student(nextId++, name, email, age); students.add(newStudent); System.out.println("Student added successfully: " + newStudent); } // Read (All) public void displayAllStudents() { if (students.isEmpty()) { System.out.println("No students found."); return; } System.out.println("Student List:"); for (Student student : students) { System.out.println(student); } } // Read (By ID) public Student findStudentById(int id) { for (Student student : students) { if (student.getId() == id) { return student; } } return null; } // Update public void updateStudent(int id, String name, String email, int age) { Student student = findStudentById(id); if (student != null) { student.setName(name); student.setEmail(email); student.setAge(age); System.out.println("Student updated successfully: " + student); } else { System.out.println("Student not found with ID: " + id); } } // Delete public void deleteStudent(int id) { Student student = findStudentById(id); if (student != null) { students.remove(student); System.out.println("Student deleted successfully: " + student); } else { System.out.println("Student not found with ID: " + id); } } } // Main application class public class StudentCRUDApp { public static void main(String[] args) { StudentManager studentManager = new StudentManager(); Scanner scanner = new Scanner(System.in); while (true) { System.out.println(" --- Student CRUD Application ---"); System.out.println("1. Add Student"); System.out.println("2. Display All Students"); System.out.println("3. Find Student by ID"); System.out.println("4. Update Student"); System.out.println("5. Delete Student"); System.out.println("6. Exit"); System.out.print("Enter your choice: "); int choice = scanner.nextInt(); scanner.nextLine(); // Consume newline switch (choice) { case 1: System.out.print("Enter Name: "); String name = scanner.nextLine(); System.out.print("Enter Email: "); String email = scanner.nextLine(); System.out.print("Enter Age: "); int age = scanner.nextInt(); studentManager.addStudent(name, email, age); break; case 2: studentManager.displayAllStudents(); break; case 3: System.out.print("Enter Student ID: "); int findId = scanner.nextInt(); Student foundStudent = studentManager.findStudentById(findId); if (foundStudent != null) { System.out.println("Found Student: " + foundStudent); } else { System.out.println("Student not found."); } break; case 4: System.out.print("Enter Student ID to Update: "); int updateId = scanner.nextInt(); scanner.nextLine(); // Consume newline System.out.print("Enter New Name: "); String newName = scanner.nextLine(); System.out.print("Enter New Email: "); String newEmail = scanner.nextLine(); System.out.print("Enter New Age: "); int newAge = scanner.nextInt(); studentManager.updateStudent(updateId, newName, newEmail, newAge); break; case 5: System.out.print("Enter Student ID to Delete: "); int deleteId = scanner.nextInt(); studentManager.deleteStudent(deleteId); break; case 6: System.out.println("Exiting Application..."); scanner.close(); System.exit(0); default: System.out.println("Invalid choice. Please try again."); } } } }
@ZainabSaad-rp7bp
@ZainabSaad-rp7bp Ай бұрын
Thank you so much sir! very helpful and I insightful, lifesaver!!
@Justwatermelon
@Justwatermelon Ай бұрын
Wow wow brilliant
@yashiko3K
@yashiko3K 2 ай бұрын
Very COOL 😎
@SuccessMindset2180
@SuccessMindset2180 2 ай бұрын
1. Context and Clarity: situation, transparent 2. Legal Constraints and Traditions: gag order, common law 3. Complex explanation is helps with understanding given information
@taniapadayachy5442
@taniapadayachy5442 2 ай бұрын
👌👌👌👌👌👌👌👌
@levcimac
@levcimac 2 ай бұрын
Exceptionally clear!! I'm a middle-aged student back at Uni after 20 years and really value content like this to help me get started with my first academic essay!! I feel more confident now. Thank you!!
@pacifictamilan
@pacifictamilan 2 ай бұрын
Zero comments here... How to develop listening skills?
@Lucida1818
@Lucida1818 3 ай бұрын
Thank you 🙏 I enjoyed the clear instruction and feel better about my academic writing.
@Lucida1818
@Lucida1818 3 ай бұрын
Thank you this lecture was very clear
@ricardohenry2160
@ricardohenry2160 3 ай бұрын
😊
@haddadiwanassa
@haddadiwanassa 4 ай бұрын
Thank you for your helpful content
@gibanmarketing
@gibanmarketing 5 ай бұрын
Do you need academic writing help including essays, assignments, research, thesis proposal, case study, article writing, etc.? Contact us today kzbin.info/www/bejne/l2bIlYOhjZxreZo
@Yaseen-o5m
@Yaseen-o5m 5 ай бұрын
nice
@intankinan6393
@intankinan6393 7 ай бұрын
so far this is one of the most challenging videos compared with the previous ones due to the sophisticated language choice. I need to watch this twice to be able to comprehend the information, but it is still a good lecture thanks!
@englishlinguistics11
@englishlinguistics11 8 ай бұрын
Wow ❤
@_SaadJamil
@_SaadJamil 8 ай бұрын
You guys deserve more subscribers. Appreciate what you are doing.
@YuriyGalin
@YuriyGalin 10 ай бұрын
💪
@astrayoz3024
@astrayoz3024 10 ай бұрын
Me watching this is 2024 😝
@BUY198
@BUY198 Жыл бұрын
Thanks for the lesson
@mavicityrelayson2924
@mavicityrelayson2924 Жыл бұрын
These breakdowns with actual samples is so helpful.
@ashleycomfort8857
@ashleycomfort8857 Жыл бұрын
This was very easy to understand... thank you
@pro369
@pro369 Жыл бұрын
Excellent
@constanzaandrearioszurita3771
@constanzaandrearioszurita3771 Жыл бұрын
Very useful, thanks.
@gautamgaba1034
@gautamgaba1034 Жыл бұрын
Explained it with ease. Thanks
@Kevin-vh6tg
@Kevin-vh6tg Жыл бұрын
I am a international student studying finance and accounting in usyd, your videos may be very useful for me to pass buss1000 Future of business. If I finish the videos and get distinction in the exam, I will be no more grateful for the videos maker and the university of melbourne!
@leonator9866
@leonator9866 2 жыл бұрын
great video :C
@dailymirror2192
@dailymirror2192 2 жыл бұрын
Thanks 👍
@gem270
@gem270 2 жыл бұрын
I was never taught this in middle school.
@ibrahimyunus8596
@ibrahimyunus8596 2 жыл бұрын
So glad to get this knowledge 👨‍🎓
@enisekucuk7137
@enisekucuk7137 2 жыл бұрын
I'm writing my master's thesis and these videos are helping me a lot, thank you! I wish I had seen them sooner. Giving examples of bad writing as well as good ones is very effective.
@farisroy_
@farisroy_ 2 жыл бұрын
Hello, thanks for making such an informative video.
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making this video. I got new knowledge in writing. Clear explanation.
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making this video. It is very helpful because previously I was confused how to connect ideas.
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making this video. Now, I realize that every author has his/her own voice in academic writing.
@RiaAldilaPutri
@RiaAldilaPutri 2 жыл бұрын
Hi, I'm Ria Aldila Putri from Unnes, and I agree that we need to read a lot before we create thoughts. I just discovered that taking notes on crucial concepts is essential since only then can we incorporate them into our own work. Thank you for the informative video!
@RiaAldilaPutri
@RiaAldilaPutri 2 жыл бұрын
Hello, my name is Ria Aldila Putri from Unnes. This video, I believe, has aided my comprehension of how to compose strong sentences so that the writing is clearer and more focused on the selected subject. That's helpful since the example texts assist me grasp the content offered.
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making this video. The explanation of writing in academic style very clear and help me in doing my final project.
@RiaAldilaPutri
@RiaAldilaPutri 2 жыл бұрын
This video has taught me the value of critique, interpretation, and cohesiveness in academic writing. As a result, this movie is quite beneficial to me. Thank you very much! (Ria Aldila Putri, Unnes)
@RiaAldilaPutri
@RiaAldilaPutri 2 жыл бұрын
Thank you very much for explaining. This movie provided me with fresh insights on how to relate thoughts in written form, as well as certain words and phrases that may be utilised to connect one sentence to the next, making the reading easier for readers to understand. I realised I needed that information to help me practise my writing skills. (Unnes, Ria Aldila Putri)
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making this video. I really need the explanation of an essay's structure for making my final project.
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making a helpful in writing's video.
@RiaAldilaPutri
@RiaAldilaPutri 2 жыл бұрын
Thank you very much! This video is quite beneficial to me. Your explanation solves my questions regarding writing academic papers. It also helps me learn new things. Particularly with the terms I should avoid using in academic writing and hedging. Thank you for making this video.
@ahmadludwigmalmsteen1502
@ahmadludwigmalmsteen1502 2 жыл бұрын
Hi, I am Ludwig from Semarang State University. Thankyou for the awesome explanation of reading into writing. Now I know the important of writing is reading for new ideas because if we reading a lot of something we can write something easy.
@RiaAldilaPutri
@RiaAldilaPutri 2 жыл бұрын
Thank you for your valuable insight. It seems evident to me that the writer's voice is the most important aspect of academic writing. However, it must be supported by the direct and indirect voice of a source and composed as a whole in order to promote ideas in works. (Ria Aldila Putri, Unnes)
@ihsanahsan7005
@ihsanahsan7005 2 жыл бұрын
Hi, my name is Mohamad Ahsanul Ihsan from UNNES. Thanks for making this video. We will all be confused if we read writing that is not clear on its purpose. Therefore, we must not make our readers feel that way.
@srirahayu2818
@srirahayu2818 2 жыл бұрын
this video is very good and helps me in writing a paragraph (srirahayu UNNES,UMK)