Welcome to GLA Tutors, your go-to platform for GCSE English tutoring. At GLA Tutors, we understand the significance of excelling in GCSE English and strive to provide comprehensive and customised support to help students achieve outstanding results. Our team of experienced tutors is well-versed in the AQA examination board's specification for GCSE English. We have meticulously analysed the AQA specification to ensure that our tutoring services align with the curriculum requirements and cover all the essential elements and skills. The AQA GCSE English specification consists of two main components: 1. English Language: - Paper 1: Explorations in Creative Reading and Writing - Paper 2: Writers' Viewpoints and Perspectives - Spoken Language Endorsement 2. English Literature: - Paper 1: Shakespeare and the 19th-century novel - Paper 2: Modern Texts and Poetry Our tutors at GLA Tutors possess a deep understanding of each component and are equipped with the knowledge and resources to provide comprehensive support in all areas. Whether it's analysing texts, honing writing skills, or developing effective communication skills, our tutors are dedicated to helping students excel in their GCSE English exams. We believe in a personalised approach to tutoring. We understand that every student has unique learning needs and preferences. Our tutors tailor their teaching methods to accommodate individual learning styles, ensuring that each student receives the support and guidance they need to succeed. Our tutoring sessions are interactive and engaging. We foster a supportive learning environment where students are encouraged to ask questions, participate in discussions, and develop critical thinking skills. Our tutors employ a range of teaching techniques, including close textual analysis, essay writing practice, and creative writing exercises, to help students master the key skills required for GCSE English. With GLA Tutors, you can be confident that you will receive top-quality tutoring in GCSE English. Our tutors are committed to helping you unlock your full potential, providing guidance, and instilling confidence in your ability to excel in your exams. Join us and let us help you achieve outstanding success in GCSE English. We can provide assistance for everything you need to prepare students for exams, including: past papers, mark schemes and examiners’ reports specimen papers and mark schemes for new courses exemplar student answers with examiner commentaries guidance in planning and writing cohesively high quality revision guides
Unlocking English GCSE Success for Dyslexic and neurodivergent learners FREE Parents information Evening 2nd July at 7:30pm (UK time) | Hosted by Paloma Forde, Dyslexia & Neurodiversity Specialist Welcome to my Information Evening Being held July 2nd at 7.30pm! This event is specifically for parents with teens either Year 10 or 11 who are studying English Lit and Eng Lang GCSE who want to understand how my structured, targeted study skills can make all the difference and help their teen to unlock their full potential. In this free info session, I’ll be sharing exactly how I support dyslexic and neurodivergent teens through the challenges of GCSE English Language & Literature with a proven, structured Study Skills Programme. This event is for you if your teen: ✅ Is going into Year 10 or 11 ✅ Struggles to revise or stay organised ✅ Finds the GCSE English syllabus overwhelming ✅ Has tried traditional tutoring but still feels “behind” ✅ Needs strategies tailored to a neurodivergent brain In this free parents info session, I’ll be covering: Why traditional revision doesn’t work for many dyslexic learners Exactly what happens in our weekly study skills sessions How they’re specifically structured for dyslexic and neurodivergent learners How we use visualisation, structure and memory strategies to make content stick How I help students go from confused to confident An explanation of the 2 classroom levels which will be offered (Which you can access from as little as £20 per session) Plus you’ll get a sneak peek at all the resources included in my Google Classroom hub These sessions aren't English lessons. They're a game-changing support system for teens who learn differently - but deserve to thrive just the same. Click the BOOKING form to secure your place for the Parent Info Evening on 2nd July at 7.30pm. This is for parents of students going into Year 10 or 11, who are struggling with GCSE English - or who just need a better, more structured way to revise that actually works for them. I know you want the best for your child. You don’t have to watch them fall behind. There is another way - and I can’t wait to show it to you. Join me live on Wednesday 2nd July at 7:30pm Spots are limited so I can keep the session personal and interactive — don’t wait to sign up. Ps - By signing up your email will automatically be added to my mailing list. You can unsubscribe anytime. xx
REXX training course description A hands on training course covering the Restructured EXtended eXecutor (REXX) language. A large number of exercises are used to reinforce and emphasise lecture sessions. What will you learn Write REXX programs. Debug REXX programs. Examine existing code and determine its function. REXX training course details Who will benefit: Anyone wishing to learn REXX. Prerequisites: None although experience in another high level language would be useful. Duration 3 days REXX training course contents Introduction to REXX What is REXX? REXX environments, invoking a REXX exec, a sample REXX exec, REXX clause types. REXX variables and data Literal data, variable data, assignment, simple variables, compound variables, stem variables, constant data, numeric data, arithmetic operations, character manipulation, hexadecimal data. The parse instruction Parse format, Parse examples, Parse arg, Parse pull, Parse value, special templates, place holders, literal templates, numeric templates, variable templates. Control structures Relational conditions, logical operators, simple selection, looping: uncontrolled and controlled loops, infinite loops, conditional loops, controlling loops, leave, iterate, multiple selection, instructions for subroutines, exit. Sub routines and functions Internal and external subroutines, call, ARG(), ARG(n)return, exit, scope of variables, procedure, functions, built in functions, overriding built in functions. Performing I/O Command conventions, preparing to read a file, execio, limitations, execio for reading, DISKR, DISKRU, DISKW, return codes. External functions listdsi, msg, outtrap, prompt, sysdsn, sysvar, storage Tracing Immediate commands, the trace facility, signal and call statements. Built in functions Text handling functions, string handling, word handling, arithmetic, data conversion, bit manipulation, environment. The data stack Data stack structure, REXX instructions for the data stack, REXX functions for the data stack, TSO/E commands for the data stack. REXX in batch TSO/E foreground. TSO/E background.
How to Raise Bilingual Children
Complete C programming training course description A hands-on introduction to programming in the ANSI C programming language. The course initially moves at a fast pace in order to spend as much time as possible on the subject of pointers - the area which cause the most bugs in C programs. What will you learn Write ANSI C programs Use the C libraries Debug C programs Examine existing code and determine its function. Complete C programming training course details Who will benefit: Programmers wishing to learn C. Programmers wishing to learn C++ or Java. Prerequisites: None, although experience in another high level language would be useful. Duration 5 days Complete C programming training course contents Getting started The compilation process, comments, main(), statement blocks, printf(). C data types and operators char, int, float and double, qualifiers, arithmetic and assignment operators, precedence, Associativity. Basic I/O C libraries, stdin and stdout, getchar(), putchar(), printf() formatting. Flow control if else, dangling elses, else if, while and for loops. switch statements, the null statement, break, continue and gotos. Functions Function calls, arguments and return types, function declarations (prototypes), function definitions, scope of variables. The preprocessor Preprocessor actions, macros, #include. Libraries and their relationship with header files. Conditional compilation. More data types and operators Logical, bitwise and other operators, type conversion, casting, typedefs and access modifiers. Arrays Declaring and handling arrays, common gotchas, multidimensional arrays. Pointers What are pointers? Why they are so important, declaring and using pointers,The three uses of the *,pointer example - scanf, pointers as arguments. More pointers Golden rules of pointers and arrays, pointers to arrays, pointer arithmetic, arrays of pointers, multiple indirection. Character/string manipulation Arrays of characters, string definition, working with strings, String library. Program arguments argc and argv, example uses,char *argv[] versus char ** argv. Program structure and storage classes Globals (externals), multi source programs, the look of a C program. Structures Declaration, the . and - operators, unions and bitfields. Library functions File handling, fopen and fclose, reading from and writing to files, fseek().calloc() and malloc()
Complete VBA programming training course description This course helps you extend the capabilities of the entire Office suite using Visual Basic for Applications (VBA). Even if you have no programming experience, you'll be automating routine computing processes quickly using the simple, yet powerful VBA programming language. We start at the beginning to get you acquainted with VBA so you can start recording macros right away. You'll then build upon that foundation to utilize the full capabilities of the language in Word, Excel, Outlook, and PowerPoint. What will you learn Record, write and run macros. Work with VBA Editor. Use the huge library of built-in functions. Create simple dialog boxes and complex forms. Customize Word, Excel, PowerPoint, Outlook, and Access. Program the Office 2016 ribbon. Complete VBA programming training course details Who will benefit: Anyone looking to extend the capabilities of the entire Office suite using VBA. Prerequisites: None. Duration 5 days Complete VBA programming training course contents Macros and getting started in VBA VBA syntax, variables, constants, and enumerations, array variables, finding objects, methods, and properties. Working with VBA 1 VBA syntax, variables, constants, and enumerations, array variables, finding objects, methods, and properties. Decisions, loops and functions Built-in functions, creating your own functions, making decisions in your code, using loops to repeat actions. Using message boxes, input boxes, and dialog boxes Getting user input with message boxes and input boxes, creating simple custom dialog boxes, creating complex forms. Creating effective code Building modular code and using classes, debugging your code and handling errors, building well-behaved code, exploring VBA's security features. Programming the Office applications The Word object model and key objects, working with widely used objects in Word, the Excel object model and key objects, working with widely used objects in Excel, the PowerPoint object, model and key objects, working with shapes and running slide shows, the Outlook object model and key objects, working with events in Outlook, the Access object model and key objects, manipulating the data in an Access database via VBA, accessing one application from another application, programming the Office 2016 ribbon.
Following Jesus could leave even St Paul saying, ‘now we see dimly’. It is altogether too wonderful and beyond human understanding to be reduced to questions and answers. We find ourselves in the quirky, even contradictory world of parables, led down apparent side tracks, losing and finding, as we trace the gifts and movements of the Spirit. Each relationship of accompaniment must find its own way of making this journey as we seek the wisdom and guidance of Christ together. We will be exploring this together in the context of the New Testament and our work and experience as spiritual directors. David Runcorn calls himself a ‘free-range priest’. He is a theological teacher, speaker and spiritual director and trainer. He is the author of a number of books – including The Language of Tears and Playing in the Dust - a pilgrimage with the creation stories.